From 6fbabfc3b9b68ccc53e8e566688803335f0a8c82 Mon Sep 17 00:00:00 2001 From: Kate Golovanova Date: Mon, 16 Oct 2023 08:30:17 -0700 Subject: [PATCH] Add Maldives holidays (#1508) --- README.rst | 7 +- holidays/calendars/islamic.py | 322 +++++ holidays/countries/__init__.py | 1 + holidays/countries/maldives.py | 87 ++ holidays/groups/islamic.py | 20 + holidays/registry.py | 1 + scripts/calendar/islamic_generator.py | 3 + snapshots/countries/MV.json | 1845 +++++++++++++++++++++++++ tests/countries/test_maldives.py | 83 ++ 9 files changed, 2368 insertions(+), 1 deletion(-) create mode 100644 holidays/countries/maldives.py create mode 100644 snapshots/countries/MV.json create mode 100644 tests/countries/test_maldives.py diff --git a/README.rst b/README.rst index d89bf33d1..8639e84a7 100644 --- a/README.rst +++ b/README.rst @@ -117,7 +117,7 @@ Available Countries .. _ISO 639-1 code: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes .. _ISO 639-2 code: https://en.wikipedia.org/wiki/List_of_ISO_639-2_codes -We currently support 136 country codes. The standard way to refer to a country +We currently support 137 country codes. The standard way to refer to a country is by using its `ISO 3166-1 alpha-2 code`_, the same used for domain names, and for a subdivision its `ISO 3166-2 code`_. Some of the countries support more than one language for holiday names output. @@ -547,6 +547,11 @@ The list of supported countries, their subdivisions, supported languages and cat - States: JHR, KDH, KTN, KUL, LBN, MLK, NSN, PHG, PJY, PLS, PNG, PRK, SBH, SGR, SWK, TRG - - + * - Maldives + - MV + - + - + - * - Malta - MT - diff --git a/holidays/calendars/islamic.py b/holidays/calendars/islamic.py index 4910a5f61..deee88259 100644 --- a/holidays/calendars/islamic.py +++ b/holidays/calendars/islamic.py @@ -30,9 +30,11 @@ HIJRI_NEW_YEAR = "HIJRI_NEW_YEAR" IMAM_MAHDI_BIRTHDAY = "IMAM_MAHDI_BIRTHDAY" ISRA_AND_MIRAJ = "ISRA_AND_MIRAJ" +MALDIVES_EMBRACED_ISLAM_DAY = "MALDIVES_EMBRACED_ISLAM_DAY" MAWLID = "MAWLID" NUZUL_AL_QURAN = "NUZUL_AL_QURAN" PROPHET_DEATH = "PROPHET_DEATH" +QUAMEE_DHUVAS = "QUAMEE_DHUVAS" RAMADAN_BEGINNING = "RAMADAN_BEGINNING" SADIQ_BIRTHDAY = "SADIQ_BIRTHDAY" SADIQ_DEATH = "SADIQ_DEATH" @@ -2229,6 +2231,163 @@ class _IslamicLunar: 2077: (JUN, 18), } + MALDIVES_EMBRACED_ISLAM_DAY_DATES = { + 1924: (OCT, 29), + 1925: (OCT, 19), + 1926: (OCT, 8), + 1927: (SEP, 27), + 1928: (SEP, 15), + 1929: (SEP, 5), + 1930: (AUG, 25), + 1931: (AUG, 15), + 1932: (AUG, 4), + 1933: (JUL, 24), + 1934: (JUL, 13), + 1935: (JUL, 2), + 1936: (JUN, 21), + 1937: (JUN, 10), + 1938: (MAY, 30), + 1939: (MAY, 20), + 1940: (MAY, 9), + 1941: (APR, 27), + 1942: (APR, 17), + 1943: (APR, 6), + 1944: (MAR, 25), + 1945: (MAR, 15), + 1946: (MAR, 4), + 1947: (FEB, 22), + 1948: (FEB, 11), + 1949: (JAN, 30), + 1950: (JAN, 20), + 1951: ((JAN, 10), (DEC, 30)), + 1952: (DEC, 18), + 1953: (DEC, 7), + 1954: (NOV, 27), + 1955: (NOV, 17), + 1956: (NOV, 4), + 1957: (OCT, 24), + 1958: (OCT, 15), + 1959: (OCT, 3), + 1960: (SEP, 22), + 1961: (SEP, 11), + 1962: (AUG, 31), + 1963: (AUG, 20), + 1964: (AUG, 9), + 1965: (JUL, 29), + 1966: (JUL, 19), + 1967: (JUL, 8), + 1968: (JUN, 27), + 1969: (JUN, 16), + 1970: (JUN, 6), + 1971: (MAY, 26), + 1972: (MAY, 14), + 1973: (MAY, 4), + 1974: (APR, 23), + 1975: (APR, 12), + 1976: (MAR, 31), + 1977: (MAR, 20), + 1978: (MAR, 10), + 1979: (FEB, 27), + 1980: (FEB, 17), + 1981: (FEB, 5), + 1982: (JAN, 26), + 1983: (JAN, 15), + 1984: ((JAN, 4), (DEC, 23)), + 1985: (DEC, 13), + 1986: (DEC, 2), + 1987: (NOV, 22), + 1988: (NOV, 10), + 1989: (OCT, 30), + 1990: (OCT, 19), + 1991: (OCT, 8), + 1992: (SEP, 27), + 1993: (SEP, 17), + 1994: (SEP, 6), + 1995: (AUG, 27), + 1996: (AUG, 15), + 1997: (AUG, 4), + 1998: (JUL, 24), + 1999: (JUL, 14), + 2000: (JUL, 3), + 2001: (JUN, 22), + 2002: (JUN, 12), + 2003: (JUN, 1), + 2004: (MAY, 20), + 2005: (MAY, 9), + 2006: (APR, 29), + 2007: (APR, 18), + 2008: (APR, 7), + 2009: (MAR, 28), + 2010: (MAR, 17), + 2011: (MAR, 6), + 2012: (FEB, 23), + 2013: (FEB, 11), + 2014: (FEB, 1), + 2015: (JAN, 21), + 2016: ((JAN, 11), (DEC, 30)), + 2017: (DEC, 19), + 2018: (DEC, 8), + 2019: (NOV, 28), + 2020: (NOV, 16), + 2021: (NOV, 6), + 2022: (OCT, 26), + 2023: (OCT, 16), + 2024: (OCT, 4), + 2025: (SEP, 23), + 2026: (SEP, 12), + 2027: (SEP, 2), + 2028: (AUG, 22), + 2029: (AUG, 11), + 2030: (AUG, 1), + 2031: (JUL, 21), + 2032: (JUL, 9), + 2033: (JUN, 28), + 2034: (JUN, 17), + 2035: (JUN, 7), + 2036: (MAY, 27), + 2037: (MAY, 16), + 2038: (MAY, 5), + 2039: (APR, 24), + 2040: (APR, 13), + 2041: (APR, 2), + 2042: (MAR, 23), + 2043: (MAR, 12), + 2044: (MAR, 1), + 2045: (FEB, 18), + 2046: (FEB, 7), + 2047: (JAN, 27), + 2048: (JAN, 16), + 2049: ((JAN, 5), (DEC, 26)), + 2050: (DEC, 15), + 2051: (DEC, 4), + 2052: (NOV, 22), + 2053: (NOV, 11), + 2054: (NOV, 1), + 2055: (OCT, 21), + 2056: (OCT, 10), + 2057: (SEP, 30), + 2058: (SEP, 19), + 2059: (SEP, 8), + 2060: (AUG, 27), + 2061: (AUG, 16), + 2062: (AUG, 6), + 2063: (JUL, 27), + 2064: (JUL, 15), + 2065: (JUL, 5), + 2066: (JUN, 24), + 2067: (JUN, 13), + 2068: (JUN, 1), + 2069: (MAY, 22), + 2070: (MAY, 11), + 2071: (MAY, 1), + 2072: (APR, 19), + 2073: (APR, 9), + 2074: (MAR, 29), + 2075: (MAR, 18), + 2076: (MAR, 6), + 2077: (FEB, 24), + } + MAWLID_DATES = { 1924: (OCT, 10), 1925: (SEP, 30), @@ -2699,6 +2858,163 @@ class _IslamicLunar: 2077: (JAN, 23), } + QUAMEE_DHUVAS_DATES = { + 1924: (SEP, 29), + 1925: (SEP, 19), + 1926: (SEP, 8), + 1927: (AUG, 28), + 1928: (AUG, 16), + 1929: (AUG, 6), + 1930: (JUL, 26), + 1931: (JUL, 17), + 1932: (JUL, 5), + 1933: (JUN, 24), + 1934: (JUN, 13), + 1935: (JUN, 3), + 1936: (MAY, 22), + 1937: (MAY, 11), + 1938: (APR, 30), + 1939: (APR, 21), + 1940: (APR, 9), + 1941: (MAR, 28), + 1942: (MAR, 18), + 1943: (MAR, 7), + 1944: (FEB, 24), + 1945: (FEB, 13), + 1946: (FEB, 2), + 1947: (JAN, 23), + 1948: ((JAN, 12), (DEC, 31)), + 1949: (DEC, 21), + 1950: (DEC, 11), + 1951: (NOV, 30), + 1952: (NOV, 19), + 1953: (NOV, 8), + 1954: (OCT, 28), + 1955: (OCT, 18), + 1956: (OCT, 6), + 1957: (SEP, 25), + 1958: (SEP, 15), + 1959: (SEP, 4), + 1960: (AUG, 23), + 1961: (AUG, 12), + 1962: (AUG, 1), + 1963: (JUL, 22), + 1964: (JUL, 10), + 1965: (JUN, 29), + 1966: (JUN, 20), + 1967: (JUN, 8), + 1968: (MAY, 28), + 1969: (MAY, 17), + 1970: (MAY, 7), + 1971: (APR, 26), + 1972: (APR, 14), + 1973: (APR, 4), + 1974: (MAR, 24), + 1975: (MAR, 13), + 1976: (MAR, 1), + 1977: (FEB, 19), + 1978: (FEB, 8), + 1979: (JAN, 29), + 1980: (JAN, 19), + 1981: ((JAN, 7), (DEC, 27)), + 1982: (DEC, 16), + 1983: (DEC, 5), + 1984: (NOV, 23), + 1985: (NOV, 13), + 1986: (NOV, 3), + 1987: (OCT, 23), + 1988: (OCT, 11), + 1989: (SEP, 30), + 1990: (SEP, 20), + 1991: (SEP, 9), + 1992: (AUG, 29), + 1993: (AUG, 18), + 1994: (AUG, 8), + 1995: (JUL, 28), + 1996: (JUL, 16), + 1997: (JUL, 5), + 1998: (JUN, 25), + 1999: (JUN, 15), + 2000: (JUN, 3), + 2001: (MAY, 24), + 2002: (MAY, 13), + 2003: (MAY, 2), + 2004: (APR, 20), + 2005: (APR, 10), + 2006: (MAR, 30), + 2007: (MAR, 20), + 2008: (MAR, 9), + 2009: (FEB, 26), + 2010: (FEB, 15), + 2011: (FEB, 4), + 2012: (JAN, 24), + 2013: (JAN, 13), + 2014: ((JAN, 2), (DEC, 23)), + 2015: (DEC, 12), + 2016: (NOV, 30), + 2017: (NOV, 19), + 2018: (NOV, 9), + 2019: (OCT, 29), + 2020: (OCT, 18), + 2021: (OCT, 7), + 2022: (SEP, 27), + 2023: (SEP, 16), + 2024: (SEP, 4), + 2025: (AUG, 24), + 2026: (AUG, 14), + 2027: (AUG, 3), + 2028: (JUL, 23), + 2029: (JUL, 13), + 2030: (JUL, 2), + 2031: (JUN, 21), + 2032: (JUN, 9), + 2033: (MAY, 29), + 2034: (MAY, 19), + 2035: (MAY, 9), + 2036: (APR, 27), + 2037: (APR, 17), + 2038: (APR, 6), + 2039: (MAR, 26), + 2040: (MAR, 14), + 2041: (MAR, 4), + 2042: (FEB, 21), + 2043: (FEB, 11), + 2044: (JAN, 31), + 2045: (JAN, 19), + 2046: ((JAN, 8), (DEC, 28)), + 2047: (DEC, 18), + 2048: (DEC, 7), + 2049: (NOV, 26), + 2050: (NOV, 15), + 2051: (NOV, 5), + 2052: (OCT, 24), + 2053: (OCT, 13), + 2054: (OCT, 2), + 2055: (SEP, 22), + 2056: (SEP, 11), + 2057: (AUG, 31), + 2058: (AUG, 20), + 2059: (AUG, 9), + 2060: (JUL, 28), + 2061: (JUL, 18), + 2062: (JUL, 8), + 2063: (JUN, 27), + 2064: (JUN, 16), + 2065: (JUN, 5), + 2066: (MAY, 25), + 2067: (MAY, 14), + 2068: (MAY, 3), + 2069: (APR, 22), + 2070: (APR, 12), + 2071: (APR, 2), + 2072: (MAR, 21), + 2073: (MAR, 10), + 2074: (FEB, 27), + 2075: (FEB, 16), + 2076: (FEB, 6), + 2077: (JAN, 26), + } + RAMADAN_BEGINNING_DATES = { 1925: (MAR, 27), 1926: (MAR, 15), @@ -3373,6 +3689,9 @@ def imam_mahdi_birthday_dates(self, year: int) -> Iterable[Tuple[date, bool]]: def isra_and_miraj_dates(self, year: int) -> Iterable[Tuple[date, bool]]: return self._get_holiday(ISRA_AND_MIRAJ, year) + def maldives_embraced_islam_day_dates(self, year: int) -> Iterable[Tuple[date, bool]]: + return self._get_holiday(MALDIVES_EMBRACED_ISLAM_DAY, year) + def mawlid_dates(self, year: int) -> Iterable[Tuple[date, bool]]: return self._get_holiday(MAWLID, year) @@ -3382,6 +3701,9 @@ def nuzul_al_quran_dates(self, year: int) -> Iterable[Tuple[date, bool]]: def prophet_death_dates(self, year: int) -> Iterable[Tuple[date, bool]]: return self._get_holiday(PROPHET_DEATH, year) + def quamee_dhuvas_dates(self, year: int) -> Iterable[Tuple[date, bool]]: + return self._get_holiday(QUAMEE_DHUVAS, year) + def ramadan_beginning_dates(self, year: int) -> Iterable[Tuple[date, bool]]: return self._get_holiday(RAMADAN_BEGINNING, year) diff --git a/holidays/countries/__init__.py b/holidays/countries/__init__.py index 83716c9df..c8333eab5 100644 --- a/holidays/countries/__init__.py +++ b/holidays/countries/__init__.py @@ -91,6 +91,7 @@ from .madagascar import Madagascar, MG, MDG from .malawi import Malawi, MW, MWI from .malaysia import Malaysia, MY, MYS +from .maldives import Maldives, MV, MDV from .malta import Malta, MT, MLT from .marshall_islands import MarshallIslands, MH, MHL, HolidaysMH from .mexico import Mexico, MX, MEX diff --git a/holidays/countries/maldives.py b/holidays/countries/maldives.py new file mode 100644 index 000000000..24342e307 --- /dev/null +++ b/holidays/countries/maldives.py @@ -0,0 +1,87 @@ +# python-holidays +# --------------- +# A fast, efficient Python library for generating country, province and state +# specific sets of holidays on the fly. It aims to make determining whether a +# specific date is a holiday as fast and flexible as possible. +# +# Authors: dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/dr-prodigy/python-holidays +# License: MIT (see LICENSE file) + +from holidays.calendars.gregorian import FRI, SAT +from holidays.groups import InternationalHolidays, IslamicHolidays +from holidays.holiday_base import HolidayBase + + +class Maldives(HolidayBase, InternationalHolidays, IslamicHolidays): + """ + References: + - https://en.wikipedia.org/wiki/Public_holidays_in_the_Maldives + - https://www.timeanddate.com/holidays/maldives/ + - http://www.mma.gov.mv/#/about/bankholidays + """ + + country = "MV" + weekend = {FRI, SAT} + + def __init__(self, *args, **kwargs): + InternationalHolidays.__init__(self) + IslamicHolidays.__init__(self) + super().__init__(*args, **kwargs) + + def _populate(self, year): + super()._populate(year) + + # New Year's Day. + self._add_new_years_day("New Year's Day") + + # Labor Day. + self._add_labor_day("Labor Day") + + # Independence Day. + self._add_holiday_jul_26("Independence Day") + + # Victory Day. + self._add_holiday_nov_3("Victory Day") + + # Republic Day. + self._add_holiday_nov_11("Republic Day") + + # Islamic holidays. + # Start of Ramadan. + self._add_ramadan_beginning_day("Beginning of Ramadan") + + # Eid al-Fitr. + self._add_eid_al_fitr_day("Eid al-Fitr") + self._add_eid_al_fitr_day_two("Eid al-Fitr") + self._add_eid_al_fitr_day_three("Eid al-Fitr") + + # Hajj Day. + self._add_arafah_day("Hajj Day") + + # Eid al-Adha. + self._add_eid_al_adha_day("Eid al-Adha") + self._add_eid_al_adha_day_two("Eid al-Adha") + self._add_eid_al_adha_day_three("Eid al-Adha") + self._add_eid_al_adha_day_four("Eid al-Adha") + + # Muharram/Islamic New Year. + self._add_islamic_new_year_day("Islamic New Year") + + # National Day. + self._add_quamee_dhuvas_day("National Day") + + # Prophet Muhammad's Birthday. + self._add_mawlid_day("Mawlid al-Nabi") + + # The Day Maldives Embraced Islam. + self._add_maldives_embraced_islam_day("The Day Maldives Embraced Islam") + + +class MV(Maldives): + pass + + +class MDV(Maldives): + pass diff --git a/holidays/groups/islamic.py b/holidays/groups/islamic.py index 37fbebef1..c3e444d3b 100644 --- a/holidays/groups/islamic.py +++ b/holidays/groups/islamic.py @@ -287,6 +287,16 @@ def _add_isra_and_miraj_day(self, name): name, self._islamic_calendar.isra_and_miraj_dates(self._year) ) + def _add_maldives_embraced_islam_day(self, name) -> Set[date]: + """ + Add Maldives Embraced Islam Day (1st day of 4th month). + + https://en.wikipedia.org/wiki/Islam_in_Maldives + """ + return self._add_islamic_calendar_holiday( + name, self._islamic_calendar.maldives_embraced_islam_day_dates(self._year) + ) + def _add_mawlid_day(self, name) -> Set[date]: """ Add Mawlid Day (12th day of 3rd month). @@ -334,6 +344,16 @@ def _add_prophet_death_day(self, name) -> Set[date]: name, self._islamic_calendar.prophet_death_dates(self._year) ) + def _add_quamee_dhuvas_day(self, name) -> Set[date]: + """ + Add Quamee Dhuvas (1st day of 3rd month). + + https://en.wikipedia.org/wiki/Qaumee_Dhuvas_(Maldives_National_Day) + """ + return self._add_islamic_calendar_holiday( + name, self._islamic_calendar.quamee_dhuvas_dates(self._year) + ) + def _add_ramadan_beginning_day(self, name) -> Set[date]: """ Add First Day of Ramadan (1st day of 9th month). diff --git a/holidays/registry.py b/holidays/registry.py index 362390cd1..4d77b02c1 100644 --- a/holidays/registry.py +++ b/holidays/registry.py @@ -97,6 +97,7 @@ "madagascar": ("Madagascar", "MG", "MDG"), "malawi": ("Malawi", "MW", "MWI"), "malaysia": ("Malaysia", "MY", "MYS"), + "maldives": ("Maldives", "MV", "MDV"), "malta": ("Malta", "MT", "MLT"), "marshall_islands": ("MarshallIslands", "MH", "MHL", "HolidaysMH"), "mexico": ("Mexico", "MX", "MEX"), diff --git a/scripts/calendar/islamic_generator.py b/scripts/calendar/islamic_generator.py index 4b00c1b2b..e5cb57bc4 100644 --- a/scripts/calendar/islamic_generator.py +++ b/scripts/calendar/islamic_generator.py @@ -63,6 +63,9 @@ (9, 21, "ALI_DEATH"), # Martyrdom of Imam Ali (10, 25, "SADIQ_DEATH"), # Martyrdom of Imam Sadeq (12, 18, "EID_AL_GHADIR"), # Eid al-Ghadir + # MV holidays: + (3, 1, "QUAMEE_DHUVAS"), # National Day in Maldives + (4, 1, "MALDIVES_EMBRACED_ISLAM"), # The Day Maldives Embraced Islam ) diff --git a/snapshots/countries/MV.json b/snapshots/countries/MV.json new file mode 100644 index 000000000..f87d821d8 --- /dev/null +++ b/snapshots/countries/MV.json @@ -0,0 +1,1845 @@ +{ + "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-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-11-03": "Victory Day", + "1950-11-11": "Republic Day", + "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-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-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-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)", + "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-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-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)", + "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-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-11-03": "Victory Day", + "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)", + "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-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-11-03": "Victory Day", + "1954-11-08": "Mawlid al-Nabi* (*estimated)", + "1954-11-11": "Republic Day", + "1954-11-27": "The Day Maldives Embraced Islam* (*estimated)", + "1955-01-01": "New Year's Day", + "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-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-11-03": "Victory Day", + "1955-11-11": "Republic Day", + "1955-11-17": "The Day Maldives Embraced Islam* (*estimated)", + "1956-01-01": "New Year's Day", + "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-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-11-03": "Victory Day", + "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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-07-26": "Independence Day", + "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-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-07-26": "Independence Day", + "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-07-26": "Independence Day", + "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)", + "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-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-07-26": "Independence Day", + "1966-11-03": "Victory Day", + "1966-11-11": "Republic Day", + "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-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-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)", + "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-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)", + "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-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-07-26": "Independence Day", + "1969-11-03": "Victory Day", + "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)", + "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-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-07-26": "Independence Day", + "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)", + "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-05-01": "Labor Day", + "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-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)", + "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-05-01": "Labor Day", + "1972-05-14": "The Day Maldives Embraced Islam* (*estimated)", + "1972-07-26": "Independence Day", + "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-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-05-01": "Labor Day", + "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-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-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-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)", + "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-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-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)", + "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-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-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)", + "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-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-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)", + "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-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-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)", + "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-05-01": "Labor Day", + "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-11-11": "Republic Day", + "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-05-01": "Labor Day", + "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-11-03": "Victory Day", + "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-05-01": "Labor Day", + "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-11-03": "Victory Day", + "1981-11-11": "Republic Day", + "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-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-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-11-03": "Victory Day", + "1982-11-11": "Republic Day", + "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-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-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-11-03": "Victory Day", + "1983-11-11": "Republic Day", + "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-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-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-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)", + "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-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-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)", + "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-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-11-11": "Republic Day", + "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-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-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-11-11": "Republic Day", + "1987-11-22": "The Day Maldives Embraced Islam* (*estimated)", + "1988-01-01": "New Year's Day", + "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-11-03": "Victory Day", + "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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-05-01": "Labor Day", + "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-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-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-07-26": "Independence Day", + "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)", + "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-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-07-26": "Independence Day", + "1998-11-03": "Victory Day", + "1998-11-11": "Republic Day", + "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-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-07-26": "Independence Day", + "1999-11-03": "Victory Day", + "1999-11-11": "Republic Day", + "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-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-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)", + "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-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-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)", + "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-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-07-26": "Independence Day", + "2002-11-03": "Victory Day", + "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)", + "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-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-07-26": "Independence Day", + "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)", + "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-07-26": "Independence Day", + "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)", + "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-05-01": "Labor Day", + "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-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-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-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)", + "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-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)", + "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-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-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)", + "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-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-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)", + "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-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-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)", + "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-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-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-11": "Republic Day", + "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-05-01": "Labor Day", + "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-11-03": "Victory Day", + "2012-11-11": "Republic Day", + "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-05-01": "Labor Day", + "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-11-03": "Victory Day", + "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-05-01": "Labor Day", + "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-11-03": "Victory Day", + "2014-11-11": "Republic Day", + "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-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-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-11-03": "Victory Day", + "2015-11-11": "Republic Day", + "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-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-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-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)", + "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-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-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)", + "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-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-11-03": "Victory Day", + "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)", + "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-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-11-03": "Victory Day", + "2019-11-09": "Mawlid al-Nabi* (*estimated)", + "2019-11-11": "Republic Day", + "2019-11-28": "The Day Maldives Embraced Islam* (*estimated)", + "2020-01-01": "New Year's Day", + "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-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-11-03": "Victory Day", + "2020-11-11": "Republic Day", + "2020-11-16": "The Day Maldives Embraced Islam* (*estimated)", + "2021-01-01": "New Year's Day", + "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-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-11-03": "Victory Day", + "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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-07-26": "Independence Day", + "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-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-07-26": "Independence Day", + "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-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-07-26": "Independence Day", + "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)", + "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-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-07-26": "Independence Day", + "2031-11-03": "Victory Day", + "2031-11-11": "Republic Day", + "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-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-07-26": "Independence Day", + "2032-11-03": "Victory Day", + "2032-11-11": "Republic Day", + "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-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-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)", + "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-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-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)", + "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-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-07-26": "Independence Day", + "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)", + "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-05-01": "Labor Day", + "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-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)", + "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-05-01": "Labor Day", + "2037-05-16": "The Day Maldives Embraced Islam* (*estimated)", + "2037-07-26": "Independence Day", + "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-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-05-01": "Labor Day", + "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-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-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-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)", + "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-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-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)", + "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-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-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)", + "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-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-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)", + "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-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-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)", + "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-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-11-11": "Republic Day", + "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-05-01": "Labor Day", + "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-11-03": "Victory Day", + "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-05-01": "Labor Day", + "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-11-03": "Victory Day", + "2046-11-11": "Republic Day", + "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-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-11-03": "Victory Day", + "2047-11-11": "Republic Day", + "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-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-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-11-03": "Victory Day", + "2048-11-11": "Republic Day", + "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-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-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-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)", + "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-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-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)" +} diff --git a/tests/countries/test_maldives.py b/tests/countries/test_maldives.py new file mode 100644 index 000000000..d1edf2dca --- /dev/null +++ b/tests/countries/test_maldives.py @@ -0,0 +1,83 @@ +# python-holidays +# --------------- +# A fast, efficient Python library for generating country, province and state +# specific sets of holidays on the fly. It aims to make determining whether a +# specific date is a holiday as fast and flexible as possible. +# +# Authors: dr-prodigy (c) 2017-2023 +# ryanss (c) 2014-2017 +# Website: https://github.com/dr-prodigy/python-holidays +# License: MIT (see LICENSE file) + +from holidays.countries.maldives import Maldives, MDV, MV +from tests.common import TestCase + + +class TestMaldives(TestCase): + @classmethod + def setUpClass(cls): + super().setUpClass(Maldives, years=range(1950, 2050)) + + def test_country_aliases(self): + self.assertCountryAliases(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))) + + def test_labor_day(self): + self.assertHolidayName("Labor Day", (f"{year}-05-01" for year in range(1950, 2050))) + + def test_independence_day(self): + self.assertHolidayName("Independence Day", (f"{year}-07-26" for year in range(1950, 2050))) + + def test_victory_day(self): + self.assertHolidayName("Victory Day", (f"{year}-11-03" for year in range(1950, 2050))) + + def test_republic_day(self): + self.assertHolidayName("Republic Day", (f"{year}-11-11" for year in range(1950, 2050))) + + def test_2018(self): + self.assertHolidays( + 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-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-11-03", "Victory Day"), + ("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)"), + ) + + def test_2020(self): + self.assertHolidays( + Maldives(years=2020), + ("2020-01-01", "New Year's Day"), + ("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-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-11-03", "Victory Day"), + ("2020-11-11", "Republic Day"), + ("2020-11-16", "The Day Maldives Embraced Islam* (*estimated)"), + )