├── .github └── workflows │ ├── build.yml │ └── pr_build.yml ├── .gitignore ├── .gitmodules ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── copyright │ ├── Skyline_MPL_2_0.xml │ ├── Strato_License.xml │ └── profiles_settings.xml ├── encodings.xml ├── fileTemplates │ ├── includes │ │ └── Copyright Notice Header.h │ └── internal │ │ ├── C Header File.h │ │ ├── C Source File.c │ │ ├── C++ Class Header.h │ │ └── C++ Class.cc ├── inspectionProfiles │ └── Project_Default.xml ├── jsonSchemas.xml ├── kotlinc.xml ├── runConfigurations │ ├── Controller_Configuration.xml │ ├── Main.xml │ └── Settings.xml └── scopes │ ├── Kotlin.xml │ ├── Native.xml │ ├── ShaderCompiler.xml │ └── XmlResources.xml ├── BUILDING.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── app ├── .gitignore ├── CMakeLists.txt ├── build.gradle ├── libraries │ ├── renderdoc │ │ └── renderdoc_app.h │ ├── vklayers │ │ ├── LICENSE.libVkLayer_khronos_validation.txt │ │ └── arm64-v8a │ │ │ └── libVkLayer_khronos_validation.so │ └── vkma.cpp ├── proguard-rules.pro └── src │ ├── dev │ └── res │ │ └── values │ │ └── strings.xml │ └── main │ ├── AndroidManifest.xml │ ├── assets │ ├── fonts │ │ ├── FontChineseSimplified.ttf │ │ ├── FontChineseTraditional.ttf │ │ ├── FontExtendedChineseSimplified.ttf │ │ ├── FontKorean.ttf │ │ ├── FontNintendoExtended.ttf │ │ ├── FontStandard.ttf │ │ └── README.md │ ├── profile_picture.jpeg │ ├── romfs │ │ ├── 0100000000000806 │ │ └── 0100000000000823 │ └── tzdata │ │ ├── README.md │ │ ├── binaryList.txt │ │ ├── version.txt │ │ └── zoneinfo │ │ ├── Africa │ │ ├── Abidjan │ │ ├── Accra │ │ ├── Addis_Ababa │ │ ├── Algiers │ │ ├── Asmara │ │ ├── Asmera │ │ ├── Bamako │ │ ├── Bangui │ │ ├── Banjul │ │ ├── Bissau │ │ ├── Blantyre │ │ ├── Brazzaville │ │ ├── Bujumbura │ │ ├── Cairo │ │ ├── Casablanca │ │ ├── Ceuta │ │ ├── Conakry │ │ ├── Dakar │ │ ├── Dar_es_Salaam │ │ ├── Djibouti │ │ ├── Douala │ │ ├── El_Aaiun │ │ ├── Freetown │ │ ├── Gaborone │ │ ├── Harare │ │ ├── Johannesburg │ │ ├── Juba │ │ ├── Kampala │ │ ├── Khartoum │ │ ├── Kigali │ │ ├── Kinshasa │ │ ├── Lagos │ │ ├── Libreville │ │ ├── Lome │ │ ├── Luanda │ │ ├── Lubumbashi │ │ ├── Lusaka │ │ ├── Malabo │ │ ├── Maputo │ │ ├── Maseru │ │ ├── Mbabane │ │ ├── Mogadishu │ │ ├── Monrovia │ │ ├── Nairobi │ │ ├── Ndjamena │ │ ├── Niamey │ │ ├── Nouakchott │ │ ├── Ouagadougou │ │ ├── Porto-Novo │ │ ├── Sao_Tome │ │ ├── Timbuktu │ │ ├── Tripoli │ │ ├── Tunis │ │ └── Windhoek │ │ ├── America │ │ ├── Adak │ │ ├── Anchorage │ │ ├── Anguilla │ │ ├── Antigua │ │ ├── Araguaina │ │ ├── Argentina │ │ │ ├── Buenos_Aires │ │ │ ├── Catamarca │ │ │ ├── ComodRivadavia │ │ │ ├── Cordoba │ │ │ ├── Jujuy │ │ │ ├── La_Rioja │ │ │ ├── Mendoza │ │ │ ├── Rio_Gallegos │ │ │ ├── Salta │ │ │ ├── San_Juan │ │ │ ├── San_Luis │ │ │ ├── Tucuman │ │ │ └── Ushuaia │ │ ├── Aruba │ │ ├── Asuncion │ │ ├── Atikokan │ │ ├── Atka │ │ ├── Bahia │ │ ├── Bahia_Banderas │ │ ├── Barbados │ │ ├── Belem │ │ ├── Belize │ │ ├── Blanc-Sablon │ │ ├── Boa_Vista │ │ ├── Bogota │ │ ├── Boise │ │ ├── Buenos_Aires │ │ ├── Cambridge_Bay │ │ ├── Campo_Grande │ │ ├── Cancun │ │ ├── Caracas │ │ ├── Catamarca │ │ ├── Cayenne │ │ ├── Cayman │ │ ├── Chicago │ │ ├── Chihuahua │ │ ├── Coral_Harbour │ │ ├── Cordoba │ │ ├── Costa_Rica │ │ ├── Creston │ │ ├── Cuiaba │ │ ├── Curacao │ │ ├── Danmarkshavn │ │ ├── Dawson │ │ ├── Dawson_Creek │ │ ├── Denver │ │ ├── Detroit │ │ ├── Dominica │ │ ├── Edmonton │ │ ├── Eirunepe │ │ ├── El_Salvador │ │ ├── Ensenada │ │ ├── Fort_Nelson │ │ ├── Fort_Wayne │ │ ├── Fortaleza │ │ ├── Glace_Bay │ │ ├── Godthab │ │ ├── Goose_Bay │ │ ├── Grand_Turk │ │ ├── Grenada │ │ ├── Guadeloupe │ │ ├── Guatemala │ │ ├── Guayaquil │ │ ├── Guyana │ │ ├── Halifax │ │ ├── Havana │ │ ├── Hermosillo │ │ ├── Indiana │ │ │ ├── Indianapolis │ │ │ ├── Knox │ │ │ ├── Marengo │ │ │ ├── Petersburg │ │ │ ├── Tell_City │ │ │ ├── Vevay │ │ │ ├── Vincennes │ │ │ └── Winamac │ │ ├── Indianapolis │ │ ├── Inuvik │ │ ├── Iqaluit │ │ ├── Jamaica │ │ ├── Jujuy │ │ ├── Juneau │ │ ├── Kentucky │ │ │ ├── Louisville │ │ │ └── Monticello │ │ ├── Knox_IN │ │ ├── Kralendijk │ │ ├── La_Paz │ │ ├── Lima │ │ ├── Los_Angeles │ │ ├── Louisville │ │ ├── Lower_Princes │ │ ├── Maceio │ │ ├── Managua │ │ ├── Manaus │ │ ├── Marigot │ │ ├── Martinique │ │ ├── Matamoros │ │ ├── Mazatlan │ │ ├── Mendoza │ │ ├── Menominee │ │ ├── Merida │ │ ├── Metlakatla │ │ ├── Mexico_City │ │ ├── Miquelon │ │ ├── Moncton │ │ ├── Monterrey │ │ ├── Montevideo │ │ ├── Montreal │ │ ├── Montserrat │ │ ├── Nassau │ │ ├── New_York │ │ ├── Nipigon │ │ ├── Nome │ │ ├── Noronha │ │ ├── North_Dakota │ │ │ ├── Beulah │ │ │ ├── Center │ │ │ └── New_Salem │ │ ├── Nuuk │ │ ├── Ojinaga │ │ ├── Panama │ │ ├── Pangnirtung │ │ ├── Paramaribo │ │ ├── Phoenix │ │ ├── Port-au-Prince │ │ ├── Port_of_Spain │ │ ├── Porto_Acre │ │ ├── Porto_Velho │ │ ├── Puerto_Rico │ │ ├── Punta_Arenas │ │ ├── Rainy_River │ │ ├── Rankin_Inlet │ │ ├── Recife │ │ ├── Regina │ │ ├── Resolute │ │ ├── Rio_Branco │ │ ├── Rosario │ │ ├── Santa_Isabel │ │ ├── Santarem │ │ ├── Santiago │ │ ├── Santo_Domingo │ │ ├── Sao_Paulo │ │ ├── Scoresbysund │ │ ├── Shiprock │ │ ├── Sitka │ │ ├── St_Barthelemy │ │ ├── St_Johns │ │ ├── St_Kitts │ │ ├── St_Lucia │ │ ├── St_Thomas │ │ ├── St_Vincent │ │ ├── Swift_Current │ │ ├── Tegucigalpa │ │ ├── Thule │ │ ├── Thunder_Bay │ │ ├── Tijuana │ │ ├── Toronto │ │ ├── Tortola │ │ ├── Vancouver │ │ ├── Virgin │ │ ├── Whitehorse │ │ ├── Winnipeg │ │ ├── Yakutat │ │ └── Yellowknife │ │ ├── Antarctica │ │ ├── Casey │ │ ├── Davis │ │ ├── DumontDUrville │ │ ├── Macquarie │ │ ├── Mawson │ │ ├── McMurdo │ │ ├── Palmer │ │ ├── Rothera │ │ ├── South_Pole │ │ ├── Syowa │ │ ├── Troll │ │ └── Vostok │ │ ├── Arctic │ │ └── Longyearbyen │ │ ├── Asia │ │ ├── Aden │ │ ├── Almaty │ │ ├── Amman │ │ ├── Anadyr │ │ ├── Aqtau │ │ ├── Aqtobe │ │ ├── Ashgabat │ │ ├── Ashkhabad │ │ ├── Atyrau │ │ ├── Baghdad │ │ ├── Bahrain │ │ ├── Baku │ │ ├── Bangkok │ │ ├── Barnaul │ │ ├── Beirut │ │ ├── Bishkek │ │ ├── Brunei │ │ ├── Calcutta │ │ ├── Chita │ │ ├── Choibalsan │ │ ├── Chongqing │ │ ├── Chungking │ │ ├── Colombo │ │ ├── Dacca │ │ ├── Damascus │ │ ├── Dhaka │ │ ├── Dili │ │ ├── Dubai │ │ ├── Dushanbe │ │ ├── Famagusta │ │ ├── Gaza │ │ ├── Harbin │ │ ├── Hebron │ │ ├── Ho_Chi_Minh │ │ ├── Hong_Kong │ │ ├── Hovd │ │ ├── Irkutsk │ │ ├── Istanbul │ │ ├── Jakarta │ │ ├── Jayapura │ │ ├── Jerusalem │ │ ├── Kabul │ │ ├── Kamchatka │ │ ├── Karachi │ │ ├── Kashgar │ │ ├── Kathmandu │ │ ├── Katmandu │ │ ├── Khandyga │ │ ├── Kolkata │ │ ├── Krasnoyarsk │ │ ├── Kuala_Lumpur │ │ ├── Kuching │ │ ├── Kuwait │ │ ├── Macao │ │ ├── Macau │ │ ├── Magadan │ │ ├── Makassar │ │ ├── Manila │ │ ├── Muscat │ │ ├── Nicosia │ │ ├── Novokuznetsk │ │ ├── Novosibirsk │ │ ├── Omsk │ │ ├── Oral │ │ ├── Phnom_Penh │ │ ├── Pontianak │ │ ├── Pyongyang │ │ ├── Qatar │ │ ├── Qostanay │ │ ├── Qyzylorda │ │ ├── Rangoon │ │ ├── Riyadh │ │ ├── Saigon │ │ ├── Sakhalin │ │ ├── Samarkand │ │ ├── Seoul │ │ ├── Shanghai │ │ ├── Singapore │ │ ├── Srednekolymsk │ │ ├── Taipei │ │ ├── Tashkent │ │ ├── Tbilisi │ │ ├── Tehran │ │ ├── Tel_Aviv │ │ ├── Thimbu │ │ ├── Thimphu │ │ ├── Tokyo │ │ ├── Tomsk │ │ ├── Ujung_Pandang │ │ ├── Ulaanbaatar │ │ ├── Ulan_Bator │ │ ├── Urumqi │ │ ├── Ust-Nera │ │ ├── Vientiane │ │ ├── Vladivostok │ │ ├── Yakutsk │ │ ├── Yangon │ │ ├── Yekaterinburg │ │ └── Yerevan │ │ ├── Atlantic │ │ ├── Azores │ │ ├── Bermuda │ │ ├── Canary │ │ ├── Cape_Verde │ │ ├── Faeroe │ │ ├── Faroe │ │ ├── Jan_Mayen │ │ ├── Madeira │ │ ├── Reykjavik │ │ ├── South_Georgia │ │ ├── St_Helena │ │ └── Stanley │ │ ├── Australia │ │ ├── ACT │ │ ├── Adelaide │ │ ├── Brisbane │ │ ├── Broken_Hill │ │ ├── Canberra │ │ ├── Currie │ │ ├── Darwin │ │ ├── Eucla │ │ ├── Hobart │ │ ├── LHI │ │ ├── Lindeman │ │ ├── Lord_Howe │ │ ├── Melbourne │ │ ├── NSW │ │ ├── North │ │ ├── Perth │ │ ├── Queensland │ │ ├── South │ │ ├── Sydney │ │ ├── Tasmania │ │ ├── Victoria │ │ ├── West │ │ └── Yancowinna │ │ ├── Brazil │ │ ├── Acre │ │ ├── DeNoronha │ │ ├── East │ │ └── West │ │ ├── CET │ │ ├── CST6CDT │ │ ├── Canada │ │ ├── Atlantic │ │ ├── Central │ │ ├── Eastern │ │ ├── Mountain │ │ ├── Newfoundland │ │ ├── Pacific │ │ ├── Saskatchewan │ │ └── Yukon │ │ ├── Chile │ │ ├── Continental │ │ └── EasterIsland │ │ ├── Cuba │ │ ├── EET │ │ ├── EST │ │ ├── EST5EDT │ │ ├── Egypt │ │ ├── Eire │ │ ├── Etc │ │ ├── GMT │ │ ├── GMT+0 │ │ ├── GMT+1 │ │ ├── GMT+10 │ │ ├── GMT+11 │ │ ├── GMT+12 │ │ ├── GMT+2 │ │ ├── GMT+3 │ │ ├── GMT+4 │ │ ├── GMT+5 │ │ ├── GMT+6 │ │ ├── GMT+7 │ │ ├── GMT+8 │ │ ├── GMT+9 │ │ ├── GMT-0 │ │ ├── GMT-1 │ │ ├── GMT-10 │ │ ├── GMT-11 │ │ ├── GMT-12 │ │ ├── GMT-13 │ │ ├── GMT-14 │ │ ├── GMT-2 │ │ ├── GMT-3 │ │ ├── GMT-4 │ │ ├── GMT-5 │ │ ├── GMT-6 │ │ ├── GMT-7 │ │ ├── GMT-8 │ │ ├── GMT-9 │ │ ├── GMT0 │ │ ├── Greenwich │ │ ├── UCT │ │ ├── UTC │ │ ├── Universal │ │ └── Zulu │ │ ├── Europe │ │ ├── Amsterdam │ │ ├── Andorra │ │ ├── Astrakhan │ │ ├── Athens │ │ ├── Belfast │ │ ├── Belgrade │ │ ├── Berlin │ │ ├── Bratislava │ │ ├── Brussels │ │ ├── Bucharest │ │ ├── Budapest │ │ ├── Busingen │ │ ├── Chisinau │ │ ├── Copenhagen │ │ ├── Dublin │ │ ├── Gibraltar │ │ ├── Guernsey │ │ ├── Helsinki │ │ ├── Isle_of_Man │ │ ├── Istanbul │ │ ├── Jersey │ │ ├── Kaliningrad │ │ ├── Kiev │ │ ├── Kirov │ │ ├── Lisbon │ │ ├── Ljubljana │ │ ├── London │ │ ├── Luxembourg │ │ ├── Madrid │ │ ├── Malta │ │ ├── Mariehamn │ │ ├── Minsk │ │ ├── Monaco │ │ ├── Moscow │ │ ├── Nicosia │ │ ├── Oslo │ │ ├── Paris │ │ ├── Podgorica │ │ ├── Prague │ │ ├── Riga │ │ ├── Rome │ │ ├── Samara │ │ ├── San_Marino │ │ ├── Sarajevo │ │ ├── Saratov │ │ ├── Simferopol │ │ ├── Skopje │ │ ├── Sofia │ │ ├── Stockholm │ │ ├── Tallinn │ │ ├── Tirane │ │ ├── Tiraspol │ │ ├── Ulyanovsk │ │ ├── Uzhgorod │ │ ├── Vaduz │ │ ├── Vatican │ │ ├── Vienna │ │ ├── Vilnius │ │ ├── Volgograd │ │ ├── Warsaw │ │ ├── Zagreb │ │ ├── Zaporozhye │ │ └── Zurich │ │ ├── Factory │ │ ├── GB │ │ ├── GB-Eire │ │ ├── GMT │ │ ├── GMT+0 │ │ ├── GMT-0 │ │ ├── GMT0 │ │ ├── Greenwich │ │ ├── HST │ │ ├── Hongkong │ │ ├── Iceland │ │ ├── Indian │ │ ├── Antananarivo │ │ ├── Chagos │ │ ├── Christmas │ │ ├── Cocos │ │ ├── Comoro │ │ ├── Kerguelen │ │ ├── Mahe │ │ ├── Maldives │ │ ├── Mauritius │ │ ├── Mayotte │ │ └── Reunion │ │ ├── Iran │ │ ├── Israel │ │ ├── Jamaica │ │ ├── Japan │ │ ├── Kwajalein │ │ ├── Libya │ │ ├── MET │ │ ├── MST │ │ ├── MST7MDT │ │ ├── Mexico │ │ ├── BajaNorte │ │ ├── BajaSur │ │ └── General │ │ ├── NZ │ │ ├── NZ-CHAT │ │ ├── Navajo │ │ ├── PRC │ │ ├── PST8PDT │ │ ├── Pacific │ │ ├── Apia │ │ ├── Auckland │ │ ├── Bougainville │ │ ├── Chatham │ │ ├── Chuuk │ │ ├── Easter │ │ ├── Efate │ │ ├── Enderbury │ │ ├── Fakaofo │ │ ├── Fiji │ │ ├── Funafuti │ │ ├── Galapagos │ │ ├── Gambier │ │ ├── Guadalcanal │ │ ├── Guam │ │ ├── Honolulu │ │ ├── Johnston │ │ ├── Kiritimati │ │ ├── Kosrae │ │ ├── Kwajalein │ │ ├── Majuro │ │ ├── Marquesas │ │ ├── Midway │ │ ├── Nauru │ │ ├── Niue │ │ ├── Norfolk │ │ ├── Noumea │ │ ├── Pago_Pago │ │ ├── Palau │ │ ├── Pitcairn │ │ ├── Pohnpei │ │ ├── Ponape │ │ ├── Port_Moresby │ │ ├── Rarotonga │ │ ├── Saipan │ │ ├── Samoa │ │ ├── Tahiti │ │ ├── Tarawa │ │ ├── Tongatapu │ │ ├── Truk │ │ ├── Wake │ │ ├── Wallis │ │ └── Yap │ │ ├── Poland │ │ ├── Portugal │ │ ├── ROC │ │ ├── ROK │ │ ├── Singapore │ │ ├── Turkey │ │ ├── UCT │ │ ├── US │ │ ├── Alaska │ │ ├── Aleutian │ │ ├── Arizona │ │ ├── Central │ │ ├── East-Indiana │ │ ├── Eastern │ │ ├── Hawaii │ │ ├── Indiana-Starke │ │ ├── Michigan │ │ ├── Mountain │ │ ├── Pacific │ │ └── Samoa │ │ ├── UTC │ │ ├── Universal │ │ ├── W-SU │ │ ├── WET │ │ └── Zulu │ ├── cpp │ ├── driver_jni.cpp │ ├── emu_jni.cpp │ ├── loader_jni.cpp │ └── skyline │ │ ├── applet │ │ ├── applet_creator.cpp │ │ ├── applet_creator.h │ │ ├── controller_applet.cpp │ │ ├── controller_applet.h │ │ ├── error_applet.cpp │ │ ├── error_applet.h │ │ ├── player_select_applet.cpp │ │ ├── player_select_applet.h │ │ ├── swkbd │ │ │ ├── software_keyboard_applet.cpp │ │ │ ├── software_keyboard_applet.h │ │ │ ├── software_keyboard_config.cpp │ │ │ └── software_keyboard_config.h │ │ ├── web_applet.cpp │ │ └── web_applet.h │ │ ├── audio.cpp │ │ ├── audio.h │ │ ├── common.cpp │ │ ├── common.h │ │ ├── common │ │ ├── address_space.h │ │ ├── address_space.inc │ │ ├── android_settings.h │ │ ├── atomic_forward_list.h │ │ ├── base.h │ │ ├── circular_buffer.h │ │ ├── circular_queue.h │ │ ├── dirty_tracking.h │ │ ├── exception.cpp │ │ ├── exception.h │ │ ├── file_descriptor.h │ │ ├── format.h │ │ ├── interval_list.h │ │ ├── interval_map.h │ │ ├── language.h │ │ ├── linear_allocator.h │ │ ├── lockable_shared_ptr.h │ │ ├── macros.h │ │ ├── result.h │ │ ├── segment_table.h │ │ ├── settings.h │ │ ├── signal.cpp │ │ ├── signal.h │ │ ├── span.h │ │ ├── spin_lock.cpp │ │ ├── spin_lock.h │ │ ├── thread_local.h │ │ ├── trace.cpp │ │ ├── trace.h │ │ ├── trap_manager.cpp │ │ ├── trap_manager.h │ │ ├── utils.h │ │ ├── uuid.cpp │ │ ├── uuid.h │ │ └── wregister.h │ │ ├── crypto │ │ ├── aes_cipher.cpp │ │ ├── aes_cipher.h │ │ ├── key_store.cpp │ │ └── key_store.h │ │ ├── gpu.cpp │ │ ├── gpu.h │ │ ├── gpu │ │ ├── buffer.cpp │ │ ├── buffer.h │ │ ├── buffer_manager.cpp │ │ ├── buffer_manager.h │ │ ├── cache │ │ │ ├── framebuffer_cache.cpp │ │ │ ├── framebuffer_cache.h │ │ │ ├── renderpass_cache.cpp │ │ │ └── renderpass_cache.h │ │ ├── command_scheduler.cpp │ │ ├── command_scheduler.h │ │ ├── descriptor_allocator.cpp │ │ ├── descriptor_allocator.h │ │ ├── fence_cycle.h │ │ ├── graphics_pipeline_assembler.cpp │ │ ├── graphics_pipeline_assembler.h │ │ ├── interconnect │ │ │ ├── command_executor.cpp │ │ │ ├── command_executor.h │ │ │ ├── command_nodes.cpp │ │ │ ├── command_nodes.h │ │ │ ├── common │ │ │ │ ├── common.cpp │ │ │ │ ├── common.h │ │ │ │ ├── file_pipeline_state_accessor.cpp │ │ │ │ ├── file_pipeline_state_accessor.h │ │ │ │ ├── pipeline.inc │ │ │ │ ├── pipeline_state_accessor.h │ │ │ │ ├── pipeline_state_bundle.cpp │ │ │ │ ├── pipeline_state_bundle.h │ │ │ │ ├── samplers.cpp │ │ │ │ ├── samplers.h │ │ │ │ ├── shader_cache.cpp │ │ │ │ ├── shader_cache.h │ │ │ │ ├── state_updater.h │ │ │ │ ├── textures.cpp │ │ │ │ ├── textures.h │ │ │ │ ├── tic.h │ │ │ │ └── tsc.h │ │ │ ├── conversion │ │ │ │ ├── quads.cpp │ │ │ │ └── quads.h │ │ │ ├── fermi_2d.cpp │ │ │ ├── fermi_2d.h │ │ │ ├── inline2memory.cpp │ │ │ ├── inline2memory.h │ │ │ ├── kepler_compute │ │ │ │ ├── common.h │ │ │ │ ├── constant_buffers.cpp │ │ │ │ ├── constant_buffers.h │ │ │ │ ├── kepler_compute.cpp │ │ │ │ ├── kepler_compute.h │ │ │ │ ├── packed_pipeline_state.h │ │ │ │ ├── pipeline_manager.cpp │ │ │ │ ├── pipeline_manager.h │ │ │ │ ├── pipeline_state.cpp │ │ │ │ └── pipeline_state.h │ │ │ ├── maxwell_3d │ │ │ │ ├── active_state.cpp │ │ │ │ ├── active_state.h │ │ │ │ ├── common.h │ │ │ │ ├── constant_buffers.cpp │ │ │ │ ├── constant_buffers.h │ │ │ │ ├── graphics_pipeline_state_accessor.cpp │ │ │ │ ├── graphics_pipeline_state_accessor.h │ │ │ │ ├── maxwell_3d.cpp │ │ │ │ ├── maxwell_3d.h │ │ │ │ ├── packed_pipeline_state.cpp │ │ │ │ ├── packed_pipeline_state.h │ │ │ │ ├── pipeline_manager.cpp │ │ │ │ ├── pipeline_manager.h │ │ │ │ ├── pipeline_state.cpp │ │ │ │ ├── pipeline_state.h │ │ │ │ ├── queries.cpp │ │ │ │ └── queries.h │ │ │ ├── maxwell_dma.cpp │ │ │ └── maxwell_dma.h │ │ ├── megabuffer.cpp │ │ ├── megabuffer.h │ │ ├── memory_manager.cpp │ │ ├── memory_manager.h │ │ ├── native_window.h │ │ ├── pipeline_cache_manager.cpp │ │ ├── pipeline_cache_manager.h │ │ ├── presentation_engine.cpp │ │ ├── presentation_engine.h │ │ ├── shader_manager.cpp │ │ ├── shader_manager.h │ │ ├── shaders │ │ │ ├── helper_shaders.cpp │ │ │ └── helper_shaders.h │ │ ├── tag_allocator.h │ │ ├── texture │ │ │ ├── adreno_aliasing.h │ │ │ ├── bc_decoder.cpp │ │ │ ├── bc_decoder.h │ │ │ ├── format.h │ │ │ ├── layout.cpp │ │ │ ├── layout.h │ │ │ ├── texture.cpp │ │ │ └── texture.h │ │ ├── texture_manager.cpp │ │ ├── texture_manager.h │ │ ├── trait_manager.cpp │ │ ├── trait_manager.h │ │ └── usage_tracker.h │ │ ├── hle │ │ ├── symbol_hook_table.h │ │ ├── symbol_hooks.cpp │ │ └── symbol_hooks.h │ │ ├── input.cpp │ │ ├── input.h │ │ ├── input │ │ ├── npad.cpp │ │ ├── npad.h │ │ ├── npad_device.cpp │ │ ├── npad_device.h │ │ ├── sections │ │ │ ├── BasicXpad.h │ │ │ ├── Button.h │ │ │ ├── ConsoleSixAxisSensor.h │ │ │ ├── DebugPad.h │ │ │ ├── Gesture.h │ │ │ ├── InputDetector.h │ │ │ ├── Keyboard.h │ │ │ ├── Mouse.h │ │ │ ├── Npad.h │ │ │ ├── TouchScreen.h │ │ │ └── common.h │ │ ├── shared_mem.h │ │ ├── touch.cpp │ │ └── touch.h │ │ ├── jvm.cpp │ │ ├── jvm.h │ │ ├── kernel │ │ ├── ipc.cpp │ │ ├── ipc.h │ │ ├── memory.cpp │ │ ├── memory.h │ │ ├── results.h │ │ ├── scheduler.cpp │ │ ├── scheduler.h │ │ ├── svc.cpp │ │ ├── svc.h │ │ ├── svc_context.h │ │ └── types │ │ │ ├── KEvent.h │ │ │ ├── KMemory.cpp │ │ │ ├── KMemory.h │ │ │ ├── KObject.h │ │ │ ├── KProcess.cpp │ │ │ ├── KProcess.h │ │ │ ├── KSession.h │ │ │ ├── KSharedMemory.cpp │ │ │ ├── KSharedMemory.h │ │ │ ├── KSyncObject.cpp │ │ │ ├── KSyncObject.h │ │ │ ├── KThread.cpp │ │ │ ├── KThread.h │ │ │ ├── KTransferMemory.cpp │ │ │ └── KTransferMemory.h │ │ ├── loader │ │ ├── executable.h │ │ ├── loader.cpp │ │ ├── loader.h │ │ ├── nca.cpp │ │ ├── nca.h │ │ ├── nro.cpp │ │ ├── nro.h │ │ ├── nso.cpp │ │ ├── nso.h │ │ ├── nsp.cpp │ │ ├── nsp.h │ │ ├── xci.cpp │ │ └── xci.h │ │ ├── logger │ │ ├── logger.cpp │ │ └── logger.h │ │ ├── nce.cpp │ │ ├── nce.h │ │ ├── nce │ │ ├── guest.S │ │ ├── guest.h │ │ └── instructions.h │ │ ├── os.cpp │ │ ├── os.h │ │ ├── services │ │ ├── account │ │ │ ├── IAccountServiceForApplication.cpp │ │ │ ├── IAccountServiceForApplication.h │ │ │ ├── IAsyncContext.cpp │ │ │ ├── IAsyncContext.h │ │ │ ├── IAuthorizationRequest.cpp │ │ │ ├── IAuthorizationRequest.h │ │ │ ├── IManagerForApplication.cpp │ │ │ ├── IManagerForApplication.h │ │ │ ├── IProfile.cpp │ │ │ └── IProfile.h │ │ ├── am │ │ │ ├── IAllSystemAppletProxiesService.cpp │ │ │ ├── IAllSystemAppletProxiesService.h │ │ │ ├── IApplicationProxyService.cpp │ │ │ ├── IApplicationProxyService.h │ │ │ ├── applet │ │ │ │ ├── IApplet.cpp │ │ │ │ ├── IApplet.h │ │ │ │ ├── ILibraryAppletAccessor.cpp │ │ │ │ └── ILibraryAppletAccessor.h │ │ │ ├── controller │ │ │ │ ├── IAppletCommonFunctions.cpp │ │ │ │ ├── IAppletCommonFunctions.h │ │ │ │ ├── IApplicationFunctions.cpp │ │ │ │ ├── IApplicationFunctions.h │ │ │ │ ├── IAudioController.cpp │ │ │ │ ├── IAudioController.h │ │ │ │ ├── ICommonStateGetter.cpp │ │ │ │ ├── ICommonStateGetter.h │ │ │ │ ├── IDebugFunctions.cpp │ │ │ │ ├── IDebugFunctions.h │ │ │ │ ├── IDisplayController.cpp │ │ │ │ ├── IDisplayController.h │ │ │ │ ├── ILibraryAppletCreator.cpp │ │ │ │ ├── ILibraryAppletCreator.h │ │ │ │ ├── ISelfController.cpp │ │ │ │ ├── ISelfController.h │ │ │ │ ├── IWindowController.cpp │ │ │ │ └── IWindowController.h │ │ │ ├── proxy │ │ │ │ ├── IApplicationProxy.cpp │ │ │ │ ├── IApplicationProxy.h │ │ │ │ ├── ILibraryAppletProxy.cpp │ │ │ │ ├── ILibraryAppletProxy.h │ │ │ │ ├── IOverlayAppletProxy.cpp │ │ │ │ ├── IOverlayAppletProxy.h │ │ │ │ ├── ISystemAppletProxy.cpp │ │ │ │ ├── ISystemAppletProxy.h │ │ │ │ ├── base_proxy.cpp │ │ │ │ └── base_proxy.h │ │ │ └── storage │ │ │ │ ├── IStorage.cpp │ │ │ │ ├── IStorage.h │ │ │ │ ├── IStorageAccessor.cpp │ │ │ │ ├── IStorageAccessor.h │ │ │ │ ├── ObjIStorage.h │ │ │ │ ├── TransferMemoryIStorage.cpp │ │ │ │ ├── TransferMemoryIStorage.h │ │ │ │ ├── VectorIStorage.cpp │ │ │ │ └── VectorIStorage.h │ │ ├── aocsrv │ │ │ ├── IAddOnContentManager.cpp │ │ │ ├── IAddOnContentManager.h │ │ │ ├── IPurchaseEventManager.cpp │ │ │ └── IPurchaseEventManager.h │ │ ├── apm │ │ │ ├── IManager.cpp │ │ │ ├── IManager.h │ │ │ ├── ISession.cpp │ │ │ └── ISession.h │ │ ├── applet │ │ │ └── common_arguments.h │ │ ├── audio │ │ │ ├── IAudioDevice.cpp │ │ │ ├── IAudioDevice.h │ │ │ ├── IAudioInManager.cpp │ │ │ ├── IAudioInManager.h │ │ │ ├── IAudioOut.cpp │ │ │ ├── IAudioOut.h │ │ │ ├── IAudioOutManager.cpp │ │ │ ├── IAudioOutManager.h │ │ │ ├── IAudioRenderer.cpp │ │ │ ├── IAudioRenderer.h │ │ │ ├── IAudioRendererManager.cpp │ │ │ └── IAudioRendererManager.h │ │ ├── base_service.cpp │ │ ├── base_service.h │ │ ├── bcat │ │ │ ├── IBcatService.cpp │ │ │ ├── IBcatService.h │ │ │ ├── IDeliveryCacheDirectoryService.cpp │ │ │ ├── IDeliveryCacheDirectoryService.h │ │ │ ├── IDeliveryCacheFileService.cpp │ │ │ ├── IDeliveryCacheFileService.h │ │ │ ├── IDeliveryCacheProgressService.cpp │ │ │ ├── IDeliveryCacheProgressService.h │ │ │ ├── IDeliveryCacheStorageService.cpp │ │ │ ├── IDeliveryCacheStorageService.h │ │ │ ├── IServiceCreator.cpp │ │ │ └── IServiceCreator.h │ │ ├── bt │ │ │ ├── IBluetoothUser.cpp │ │ │ └── IBluetoothUser.h │ │ ├── btm │ │ │ ├── IBtmUser.cpp │ │ │ ├── IBtmUser.h │ │ │ ├── IBtmUserCore.cpp │ │ │ └── IBtmUserCore.h │ │ ├── capsrv │ │ │ ├── IAlbumAccessorService.cpp │ │ │ ├── IAlbumAccessorService.h │ │ │ ├── IAlbumApplicationService.cpp │ │ │ ├── IAlbumApplicationService.h │ │ │ ├── ICaptureControllerService.cpp │ │ │ ├── ICaptureControllerService.h │ │ │ ├── IScreenShotApplicationService.cpp │ │ │ └── IScreenShotApplicationService.h │ │ ├── clkrst │ │ │ ├── IClkrstManager.cpp │ │ │ ├── IClkrstManager.h │ │ │ ├── IClkrstSession.cpp │ │ │ └── IClkrstSession.h │ │ ├── codec │ │ │ ├── IHardwareOpusDecoder.cpp │ │ │ ├── IHardwareOpusDecoder.h │ │ │ ├── IHardwareOpusDecoderManager.cpp │ │ │ └── IHardwareOpusDecoderManager.h │ │ ├── common │ │ │ ├── fence.h │ │ │ └── result.h │ │ ├── fatalsrv │ │ │ ├── IService.cpp │ │ │ └── IService.h │ │ ├── friends │ │ │ ├── IFriendService.cpp │ │ │ ├── IFriendService.h │ │ │ ├── INotificationService.cpp │ │ │ ├── INotificationService.h │ │ │ ├── IServiceCreator.cpp │ │ │ └── IServiceCreator.h │ │ ├── fssrv │ │ │ ├── IDirectory.cpp │ │ │ ├── IDirectory.h │ │ │ ├── IFile.cpp │ │ │ ├── IFile.h │ │ │ ├── IFileSystem.cpp │ │ │ ├── IFileSystem.h │ │ │ ├── IFileSystemProxy.cpp │ │ │ ├── IFileSystemProxy.h │ │ │ ├── IMultiCommitManager.cpp │ │ │ ├── IMultiCommitManager.h │ │ │ ├── ISaveDataInfoReader.cpp │ │ │ ├── ISaveDataInfoReader.h │ │ │ ├── IStorage.cpp │ │ │ ├── IStorage.h │ │ │ └── results.h │ │ ├── glue │ │ │ ├── IContextRegistrar.h │ │ │ ├── INotificationServicesForApplication.cpp │ │ │ ├── INotificationServicesForApplication.h │ │ │ ├── IStaticService.cpp │ │ │ ├── IStaticService.h │ │ │ ├── ITimeZoneService.cpp │ │ │ ├── ITimeZoneService.h │ │ │ ├── IWriterForSystem.cpp │ │ │ └── IWriterForSystem.h │ │ ├── hid │ │ │ ├── IActiveVibrationDeviceList.cpp │ │ │ ├── IActiveVibrationDeviceList.h │ │ │ ├── IAppletResource.cpp │ │ │ ├── IAppletResource.h │ │ │ ├── IHidServer.cpp │ │ │ └── IHidServer.h │ │ ├── hosbinder │ │ │ ├── GraphicBufferProducer.cpp │ │ │ ├── GraphicBufferProducer.h │ │ │ ├── IHOSBinderDriver.cpp │ │ │ ├── IHOSBinderDriver.h │ │ │ ├── android_types.h │ │ │ ├── native_window.h │ │ │ ├── parcel.cpp │ │ │ └── parcel.h │ │ ├── irs │ │ │ ├── IIrSensorServer.cpp │ │ │ ├── IIrSensorServer.h │ │ │ └── iirsensor_core.h │ │ ├── lbl │ │ │ ├── ILblController.cpp │ │ │ └── ILblController.h │ │ ├── ldn │ │ │ ├── IUserLocalCommunicationService.cpp │ │ │ ├── IUserLocalCommunicationService.h │ │ │ ├── IUserServiceCreator.cpp │ │ │ └── IUserServiceCreator.h │ │ ├── lm │ │ │ ├── ILogService.cpp │ │ │ ├── ILogService.h │ │ │ ├── ILogger.cpp │ │ │ └── ILogger.h │ │ ├── mii │ │ │ ├── IDatabaseService.cpp │ │ │ ├── IDatabaseService.h │ │ │ ├── IStaticService.cpp │ │ │ └── IStaticService.h │ │ ├── mmnv │ │ │ ├── IRequest.cpp │ │ │ └── IRequest.h │ │ ├── nfp │ │ │ ├── IUser.cpp │ │ │ ├── IUser.h │ │ │ ├── IUserManager.cpp │ │ │ └── IUserManager.h │ │ ├── nifm │ │ │ ├── IGeneralService.cpp │ │ │ ├── IGeneralService.h │ │ │ ├── IRequest.cpp │ │ │ ├── IRequest.h │ │ │ ├── IScanRequest.cpp │ │ │ ├── IScanRequest.h │ │ │ ├── IStaticService.cpp │ │ │ └── IStaticService.h │ │ ├── nim │ │ │ ├── IShopServiceAccessServer.cpp │ │ │ ├── IShopServiceAccessServer.h │ │ │ ├── IShopServiceAccessServerInterface.cpp │ │ │ ├── IShopServiceAccessServerInterface.h │ │ │ ├── IShopServiceAccessor.cpp │ │ │ ├── IShopServiceAccessor.h │ │ │ ├── IShopServiceAsync.cpp │ │ │ └── IShopServiceAsync.h │ │ ├── ntc │ │ │ ├── IEnsureNetworkClockAvailabilityService.cpp │ │ │ └── IEnsureNetworkClockAvailabilityService.h │ │ ├── nvdrv │ │ │ ├── INvDrvServices.cpp │ │ │ ├── INvDrvServices.h │ │ │ ├── core │ │ │ │ ├── core.h │ │ │ │ ├── nvmap.cpp │ │ │ │ ├── nvmap.h │ │ │ │ ├── syncpoint_manager.cpp │ │ │ │ └── syncpoint_manager.h │ │ │ ├── devices │ │ │ │ ├── deserialisation │ │ │ │ │ ├── deserialisation.h │ │ │ │ │ ├── macro_def.inc │ │ │ │ │ ├── macro_undef.inc │ │ │ │ │ └── types.h │ │ │ │ ├── nvdevice.cpp │ │ │ │ ├── nvdevice.h │ │ │ │ ├── nvhost │ │ │ │ │ ├── as_gpu.cpp │ │ │ │ │ ├── as_gpu.h │ │ │ │ │ ├── ctrl.cpp │ │ │ │ │ ├── ctrl.h │ │ │ │ │ ├── ctrl_gpu.cpp │ │ │ │ │ ├── ctrl_gpu.h │ │ │ │ │ ├── gpu_channel.cpp │ │ │ │ │ ├── gpu_channel.h │ │ │ │ │ ├── host1x_channel.cpp │ │ │ │ │ └── host1x_channel.h │ │ │ │ ├── nvmap.cpp │ │ │ │ └── nvmap.h │ │ │ ├── driver.cpp │ │ │ ├── driver.h │ │ │ └── types.h │ │ ├── olsc │ │ │ ├── IOlscServiceForApplication.cpp │ │ │ └── IOlscServiceForApplication.h │ │ ├── pctl │ │ │ ├── IParentalControlService.cpp │ │ │ ├── IParentalControlService.h │ │ │ ├── IParentalControlServiceFactory.cpp │ │ │ └── IParentalControlServiceFactory.h │ │ ├── pl │ │ │ ├── IPlatformServiceManager.cpp │ │ │ ├── IPlatformServiceManager.h │ │ │ └── shared_font_core.h │ │ ├── prepo │ │ │ ├── IPrepoService.cpp │ │ │ └── IPrepoService.h │ │ ├── psm │ │ │ ├── IPsmServer.cpp │ │ │ ├── IPsmServer.h │ │ │ ├── IPsmSession.cpp │ │ │ └── IPsmSession.h │ │ ├── ro │ │ │ ├── IRoInterface.cpp │ │ │ └── IRoInterface.h │ │ ├── serviceman.cpp │ │ ├── serviceman.h │ │ ├── settings │ │ │ ├── ISettingsServer.cpp │ │ │ ├── ISettingsServer.h │ │ │ ├── ISystemSettingsServer.cpp │ │ │ └── ISystemSettingsServer.h │ │ ├── sm │ │ │ ├── IUserInterface.cpp │ │ │ └── IUserInterface.h │ │ ├── socket │ │ │ ├── bsd │ │ │ │ ├── IClient.cpp │ │ │ │ └── IClient.h │ │ │ ├── nsd │ │ │ │ ├── IManager.cpp │ │ │ │ └── IManager.h │ │ │ └── sfdnsres │ │ │ │ ├── IResolver.cpp │ │ │ │ └── IResolver.h │ │ ├── spl │ │ │ ├── IRandomInterface.cpp │ │ │ └── IRandomInterface.h │ │ ├── ssl │ │ │ ├── ISslContext.cpp │ │ │ ├── ISslContext.h │ │ │ ├── ISslService.cpp │ │ │ └── ISslService.h │ │ ├── timesrv │ │ │ ├── IStaticService.cpp │ │ │ ├── IStaticService.h │ │ │ ├── ISteadyClock.cpp │ │ │ ├── ISteadyClock.h │ │ │ ├── ISystemClock.cpp │ │ │ ├── ISystemClock.h │ │ │ ├── ITimeZoneService.cpp │ │ │ ├── ITimeZoneService.h │ │ │ ├── common.cpp │ │ │ ├── common.h │ │ │ ├── core.cpp │ │ │ ├── core.h │ │ │ ├── results.h │ │ │ ├── time_manager_server.cpp │ │ │ ├── time_manager_server.h │ │ │ ├── time_shared_memory.cpp │ │ │ ├── time_shared_memory.h │ │ │ ├── timezone_manager.cpp │ │ │ └── timezone_manager.h │ │ ├── ts │ │ │ ├── IMeasurementServer.cpp │ │ │ ├── IMeasurementServer.h │ │ │ ├── ISession.cpp │ │ │ └── ISession.h │ │ └── visrv │ │ │ ├── IApplicationDisplayService.cpp │ │ │ ├── IApplicationDisplayService.h │ │ │ ├── IApplicationRootService.h │ │ │ ├── IDisplayService.cpp │ │ │ ├── IDisplayService.h │ │ │ ├── IManagerDisplayService.cpp │ │ │ ├── IManagerDisplayService.h │ │ │ ├── IManagerRootService.h │ │ │ ├── IRootService.cpp │ │ │ ├── IRootService.h │ │ │ ├── ISystemDisplayService.cpp │ │ │ ├── ISystemDisplayService.h │ │ │ ├── ISystemRootService.h │ │ │ └── results.h │ │ ├── soc.h │ │ ├── soc │ │ ├── gm20b │ │ │ ├── channel.cpp │ │ │ ├── channel.h │ │ │ ├── engines │ │ │ │ ├── engine.cpp │ │ │ │ ├── engine.h │ │ │ │ ├── fermi │ │ │ │ │ └── types.h │ │ │ │ ├── fermi_2d.cpp │ │ │ │ ├── fermi_2d.h │ │ │ │ ├── gpfifo.cpp │ │ │ │ ├── gpfifo.h │ │ │ │ ├── inline2memory.cpp │ │ │ │ ├── inline2memory.h │ │ │ │ ├── kepler_compute.cpp │ │ │ │ ├── kepler_compute.h │ │ │ │ ├── kepler_compute │ │ │ │ │ └── qmd.h │ │ │ │ ├── maxwell │ │ │ │ │ ├── initialization.cpp │ │ │ │ │ └── types.h │ │ │ │ ├── maxwell_3d.cpp │ │ │ │ ├── maxwell_3d.h │ │ │ │ ├── maxwell_dma.cpp │ │ │ │ └── maxwell_dma.h │ │ │ ├── gmmu.cpp │ │ │ ├── gmmu.h │ │ │ ├── gpfifo.cpp │ │ │ ├── gpfifo.h │ │ │ └── macro │ │ │ │ ├── macro_interpreter.cpp │ │ │ │ ├── macro_interpreter.h │ │ │ │ ├── macro_state.cpp │ │ │ │ └── macro_state.h │ │ ├── host1x.h │ │ ├── host1x │ │ │ ├── classes │ │ │ │ ├── class.h │ │ │ │ ├── host1x.cpp │ │ │ │ ├── host1x.h │ │ │ │ ├── nvdec.cpp │ │ │ │ ├── nvdec.h │ │ │ │ ├── vic.cpp │ │ │ │ └── vic.h │ │ │ ├── command_fifo.cpp │ │ │ ├── command_fifo.h │ │ │ ├── syncpoint.cpp │ │ │ ├── syncpoint.h │ │ │ └── tegra_host_interface.h │ │ ├── smmu.cpp │ │ └── smmu.h │ │ └── vfs │ │ ├── android_asset_backing.cpp │ │ ├── android_asset_backing.h │ │ ├── android_asset_filesystem.cpp │ │ ├── android_asset_filesystem.h │ │ ├── backing.h │ │ ├── ctr_encrypted_backing.cpp │ │ ├── ctr_encrypted_backing.h │ │ ├── directory.h │ │ ├── filesystem.h │ │ ├── nacp.cpp │ │ ├── nacp.h │ │ ├── nca.cpp │ │ ├── nca.h │ │ ├── npdm.cpp │ │ ├── npdm.h │ │ ├── os_backing.cpp │ │ ├── os_backing.h │ │ ├── os_filesystem.cpp │ │ ├── os_filesystem.h │ │ ├── partition_filesystem.cpp │ │ ├── partition_filesystem.h │ │ ├── region_backing.h │ │ ├── rom_filesystem.cpp │ │ ├── rom_filesystem.h │ │ ├── ticket.cpp │ │ └── ticket.h │ ├── java │ └── org │ │ └── stratoemu │ │ └── strato │ │ ├── AppDialog.kt │ │ ├── EmulationActivity.kt │ │ ├── KeyReader.kt │ │ ├── MainActivity.kt │ │ ├── MainViewModel.kt │ │ ├── RomProvider.kt │ │ ├── StratoApplication.kt │ │ ├── adapter │ │ ├── AppViewItem.kt │ │ ├── GenericAdapter.kt │ │ ├── GenericListItem.kt │ │ ├── GpuDriverViewItem.kt │ │ ├── ItemDecorations.kt │ │ └── controller │ │ │ ├── ControllerButtonViewItem.kt │ │ │ ├── ControllerCheckBoxViewItem.kt │ │ │ ├── ControllerGeneralViewItem.kt │ │ │ ├── ControllerHeaderItem.kt │ │ │ ├── ControllerStickViewItem.kt │ │ │ ├── ControllerTypeViewItem.kt │ │ │ └── ControllerViewItem.kt │ │ ├── applet │ │ └── swkbd │ │ │ ├── SoftwareKeyboardConfig.kt │ │ │ ├── SoftwareKeyboardDialog.kt │ │ │ └── SoftwareKeyboardFilter.kt │ │ ├── data │ │ ├── AppItem.kt │ │ └── DriverPackageMetadata.kt │ │ ├── di │ │ └── EntryPoints.kt │ │ ├── emulation │ │ └── PipelineLoadingFragment.kt │ │ ├── fragments │ │ └── IndeterminateProgressDialogFragment.kt │ │ ├── input │ │ ├── Controller.kt │ │ ├── ControllerActivity.kt │ │ ├── GuestEvent.kt │ │ ├── HostEvent.kt │ │ ├── InputHandler.kt │ │ ├── InputManager.kt │ │ ├── dialog │ │ │ ├── ButtonDialog.kt │ │ │ ├── RumbleDialog.kt │ │ │ └── StickDialog.kt │ │ └── onscreen │ │ │ ├── ConfigurableButton.kt │ │ │ ├── OnScreenButton.kt │ │ │ ├── OnScreenConfiguration.kt │ │ │ ├── OnScreenControllerView.kt │ │ │ ├── OnScreenEditActivity.kt │ │ │ ├── OnScreenEditInfo.kt │ │ │ └── OnScreenItemDefinitions.kt │ │ ├── loader │ │ └── RomFile.kt │ │ ├── model │ │ └── TaskViewModel.kt │ │ ├── preference │ │ ├── ControllerPreference.kt │ │ ├── CopyGlobalSettingsPreference.kt │ │ ├── CustomEditTextPreference.kt │ │ ├── DocumentsProviderPreference.kt │ │ ├── ExportCustomSettingsPreference.kt │ │ ├── FirmwareImportPreference.kt │ │ ├── FolderPickerPreference.kt │ │ ├── GpuDriverActivity.kt │ │ ├── GpuDriverPreference.kt │ │ ├── ImportExportSavesPreference.kt │ │ ├── IntegerListPreference.kt │ │ ├── KeyPickerPreference.kt │ │ ├── LanguagePreference.kt │ │ ├── LicenseDialog.kt │ │ ├── LicensePreference.kt │ │ ├── ProfilePicturePreference.kt │ │ ├── RefreshCheckBoxPreference.kt │ │ ├── RefreshSwitchPreferenceCompat.kt │ │ ├── ResetSettingsPreference.kt │ │ ├── ThemePreference.kt │ │ └── dialog │ │ │ ├── EditTextPreferenceMaterialDialogFragmentCompat.kt │ │ │ ├── IntegerListPreferenceMaterialDialogFragmentCompat.kt │ │ │ └── ListPreferenceMaterialDialogFragmentCompat.kt │ │ ├── provider │ │ └── DocumentsProvider.kt │ │ ├── settings │ │ ├── AppSettings.kt │ │ ├── EmulationSettings.kt │ │ ├── GameSettingsFragment.kt │ │ ├── GlobalSettingsFragment.kt │ │ ├── NativeSettings.kt │ │ └── SettingsActivity.kt │ │ ├── utils │ │ ├── ByteBufferSerializable.kt │ │ ├── Colors.kt │ │ ├── GpuDriverHelper.kt │ │ ├── ParcelableHelper.kt │ │ ├── PointExtensions.kt │ │ ├── SaveManagementUtils.kt │ │ ├── SerializationHelper.kt │ │ ├── SharedPreferencesDelegate.kt │ │ ├── WindowInsetsHelper.kt │ │ └── ZipUtils.kt │ │ └── views │ │ ├── AlignmentGridView.kt │ │ ├── DragHandleView.kt │ │ ├── FixedRatioSurfaceView.kt │ │ └── SearchBarView.kt │ ├── res │ ├── README.md │ ├── drawable-night │ │ └── ic_controller.xml │ ├── drawable │ │ ├── background_gradient.xml │ │ ├── default_icon.jpg │ │ ├── ic_add.xml │ │ ├── ic_add_home.xml │ │ ├── ic_arrow_drop_down.xml │ │ ├── ic_button.xml │ │ ├── ic_clear.xml │ │ ├── ic_close.xml │ │ ├── ic_controller.xml │ │ ├── ic_delete.xml │ │ ├── ic_edit.xml │ │ ├── ic_grid_off.xml │ │ ├── ic_grid_on.xml │ │ ├── ic_keyboard_arrow_down.xml │ │ ├── ic_keyboard_arrow_left.xml │ │ ├── ic_keyboard_arrow_right.xml │ │ ├── ic_keyboard_arrow_up.xml │ │ ├── ic_log.xml │ │ ├── ic_move.xml │ │ ├── ic_opacity_minus.xml │ │ ├── ic_opacity_plus.xml │ │ ├── ic_open.xml │ │ ├── ic_palette.xml │ │ ├── ic_pause.xml │ │ ├── ic_play.xml │ │ ├── ic_rectangular_button.xml │ │ ├── ic_refresh.xml │ │ ├── ic_resize.xml │ │ ├── ic_restore.xml │ │ ├── ic_search.xml │ │ ├── ic_settings.xml │ │ ├── ic_share.xml │ │ ├── ic_show.xml │ │ ├── ic_stick.xml │ │ ├── ic_trigger_button_left.xml │ │ ├── ic_trigger_button_right.xml │ │ ├── ic_volume_mute.xml │ │ ├── ic_zoom_in.xml │ │ ├── ic_zoom_out.xml │ │ ├── logo_skyline.xml │ │ ├── logo_skyline_monochrome.xml │ │ ├── preference_list_divider_m3.xml │ │ ├── rounded_background.xml │ │ ├── rounded_selectable_item_background.xml │ │ └── skyline_text.xml │ ├── layout │ │ ├── app_dialog.xml │ │ ├── app_item_grid.xml │ │ ├── app_item_grid_compact.xml │ │ ├── app_item_linear.xml │ │ ├── button_dialog.xml │ │ ├── controller_activity.xml │ │ ├── controller_checkbox_item.xml │ │ ├── controller_header.xml │ │ ├── controller_item.xml │ │ ├── emu_activity.xml │ │ ├── gpu_driver_activity.xml │ │ ├── gpu_driver_item.xml │ │ ├── keyboard_dialog.xml │ │ ├── license_dialog.xml │ │ ├── loader_error_dialog.xml │ │ ├── loader_error_item.xml │ │ ├── main_activity.xml │ │ ├── on_screen_edit_activity.xml │ │ ├── on_screen_edit_mini_fab.xml │ │ ├── osc_slider.xml │ │ ├── pipeline_loading.xml │ │ ├── preference_profile_picture.xml │ │ ├── preference_widget_material_switch.xml │ │ ├── progress_dialog.xml │ │ ├── rumble_dialog.xml │ │ ├── settings_activity.xml │ │ ├── stick_dialog.xml │ │ ├── titlebar.xml │ │ └── view_search_bar.xml │ ├── menu │ │ └── settings_menu.xml │ ├── mipmap-hdpi │ │ └── logo_skyline_foreground.png │ ├── mipmap-mdpi │ │ └── logo_skyline_foreground.png │ ├── mipmap-xhdpi │ │ └── logo_skyline_foreground.png │ ├── mipmap-xxhdpi │ │ └── logo_skyline_foreground.png │ ├── mipmap-xxxhdpi │ │ └── logo_skyline_foreground.png │ ├── values-night │ │ └── themes.xml │ ├── values-sw360dp-v13 │ │ └── values-preference.xml │ ├── values │ │ ├── array.xml │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── licenses.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── themes.xml │ ├── xml-v33 │ │ └── game_mode_config.xml │ └── xml │ │ ├── app_preferences.xml │ │ ├── backup_descriptor.xml │ │ ├── credits_preferences.xml │ │ ├── custom_game_preferences.xml │ │ ├── emulation_preferences.xml │ │ ├── input_preferences.xml │ │ └── locales_config.xml │ └── shaders │ ├── blit.frag │ ├── blit.vert │ ├── clear.frag │ └── clear.vert ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── transifex.yml /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /.idea/copyright/Skyline_MPL_2_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /.idea/copyright/Strato_License.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/fileTemplates/includes/Copyright Notice Header.h: -------------------------------------------------------------------------------- 1 | #if ($HEADER_COMMENTS) 2 | // SPDX-License-Identifier: GPL-3.0-or-later 3 | // Copyright © ${YEAR} Strato Team and Contributors (https://github.com/strato-emu/) 4 | #end 5 | 6 | -------------------------------------------------------------------------------- /.idea/fileTemplates/internal/C Header File.h: -------------------------------------------------------------------------------- 1 | #parse("Copyright Notice Header.h") 2 | #pragma once 3 | 4 | namespace skyline { 5 | 6 | } -------------------------------------------------------------------------------- /.idea/fileTemplates/internal/C Source File.c: -------------------------------------------------------------------------------- 1 | #parse("Copyright Notice Header.h") 2 | #if (${HEADER_FILENAME}) 3 | #[[#include]]# "${HEADER_FILENAME}" 4 | #end 5 | 6 | namespace skyline { 7 | 8 | } -------------------------------------------------------------------------------- /.idea/fileTemplates/internal/C++ Class Header.h: -------------------------------------------------------------------------------- 1 | #parse("Copyright Notice Header.h") 2 | #pragma once 3 | 4 | #if (${NAMESPACES_OPEN} == "") 5 | namespace skyline { 6 | #else 7 | ${NAMESPACES_OPEN} 8 | #end 9 | class ${NAME} { 10 | }; 11 | #if (${NAMESPACES_OPEN} == "") 12 | } 13 | #else 14 | ${NAMESPACES_CLOSE} 15 | #end -------------------------------------------------------------------------------- /.idea/fileTemplates/internal/C++ Class.cc: -------------------------------------------------------------------------------- 1 | #parse("Copyright Notice Header.h") 2 | #[[#include]]# "${HEADER_FILENAME}" 3 | 4 | namespace skyline { 5 | 6 | } -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | -------------------------------------------------------------------------------- /.idea/scopes/Kotlin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/scopes/Native.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/scopes/ShaderCompiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/scopes/XmlResources.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /release 3 | -------------------------------------------------------------------------------- /app/libraries/vklayers/arm64-v8a/libVkLayer_khronos_validation.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/libraries/vklayers/arm64-v8a/libVkLayer_khronos_validation.so -------------------------------------------------------------------------------- /app/libraries/vkma.cpp: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MPL-2.0 2 | // Copyright © 2021 Skyline Team and Contributors (https://github.com/skyline-emu/) 3 | 4 | #define VMA_IMPLEMENTATION 5 | #define VMA_STATIC_VULKAN_FUNCTIONS 0 6 | #define VMA_DYNAMIC_VULKAN_FUNCTIONS 0 7 | #include 8 | -------------------------------------------------------------------------------- /app/src/dev/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Skyline Dev 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/assets/fonts/FontChineseSimplified.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/fonts/FontChineseSimplified.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/FontChineseTraditional.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/fonts/FontChineseTraditional.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/FontExtendedChineseSimplified.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/fonts/FontExtendedChineseSimplified.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/FontKorean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/fonts/FontKorean.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/FontNintendoExtended.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/fonts/FontNintendoExtended.ttf -------------------------------------------------------------------------------- /app/src/main/assets/fonts/FontStandard.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/fonts/FontStandard.ttf -------------------------------------------------------------------------------- /app/src/main/assets/profile_picture.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/profile_picture.jpeg -------------------------------------------------------------------------------- /app/src/main/assets/romfs/0100000000000806: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/romfs/0100000000000806 -------------------------------------------------------------------------------- /app/src/main/assets/romfs/0100000000000823: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/romfs/0100000000000823 -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/README.md: -------------------------------------------------------------------------------- 1 | ## TzData prebuilts in HOS format 2 | 3 | Based off tzdb 2021a 4 | 5 | Generate as normal then 6 | ``` 7 | rm *.tab 8 | rm leapseconds 9 | 10 | find -type f | sed 's/\.\///g' | grep -v '\.' | sort > ../binaryList.txt 11 | ``` 12 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/version.txt: -------------------------------------------------------------------------------- 1 | 210124 -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Abidjan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Abidjan -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Accra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Accra -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Addis_Ababa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Addis_Ababa -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Algiers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Algiers -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Asmara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Asmara -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Asmera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Asmera -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Bamako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Bamako -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Bangui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Bangui -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Banjul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Banjul -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Bissau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Bissau -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Blantyre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Blantyre -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Brazzaville: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Brazzaville -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Bujumbura: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Bujumbura -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Cairo -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Casablanca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Casablanca -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Ceuta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Ceuta -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Conakry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Conakry -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Dakar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Dakar -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Dar_es_Salaam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Dar_es_Salaam -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Djibouti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Djibouti -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Douala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Douala -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/El_Aaiun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/El_Aaiun -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Freetown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Freetown -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Gaborone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Gaborone -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Harare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Harare -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Johannesburg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Johannesburg -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Juba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Juba -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Kampala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Kampala -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Khartoum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Khartoum -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Kigali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Kigali -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Kinshasa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Kinshasa -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Lagos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Lagos -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Libreville: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Libreville -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Lome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Lome -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Luanda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Luanda -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Lubumbashi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Lubumbashi -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Lusaka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Lusaka -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Malabo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Malabo -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Maputo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Maputo -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Maseru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Maseru -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Mbabane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Mbabane -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Mogadishu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Mogadishu -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Monrovia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Monrovia -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Nairobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Nairobi -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Ndjamena: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Ndjamena -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Niamey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Niamey -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Nouakchott: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Nouakchott -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Ouagadougou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Ouagadougou -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Porto-Novo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Porto-Novo -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Sao_Tome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Sao_Tome -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Timbuktu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Timbuktu -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Tripoli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Tripoli -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Tunis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Tunis -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Africa/Windhoek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Africa/Windhoek -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Adak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Adak -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Anchorage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Anchorage -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Anguilla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Anguilla -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Antigua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Antigua -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Araguaina: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Araguaina -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Argentina/Buenos_Aires: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Argentina/Buenos_Aires -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Argentina/Catamarca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Argentina/Catamarca -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Argentina/ComodRivadavia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Argentina/ComodRivadavia -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Argentina/Cordoba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Argentina/Cordoba -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Argentina/Jujuy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Argentina/Jujuy -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Argentina/La_Rioja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Argentina/La_Rioja -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Argentina/Mendoza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Argentina/Mendoza -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Argentina/Rio_Gallegos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Argentina/Rio_Gallegos -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Argentina/Salta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Argentina/Salta -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Argentina/San_Juan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Argentina/San_Juan -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Argentina/San_Luis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Argentina/San_Luis -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Argentina/Tucuman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Argentina/Tucuman -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Argentina/Ushuaia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Argentina/Ushuaia -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Aruba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Aruba -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Asuncion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Asuncion -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Atikokan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Atikokan -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Atka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Atka -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Bahia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Bahia -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Bahia_Banderas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Bahia_Banderas -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Barbados: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Barbados -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Belem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Belem -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Belize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Belize -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Blanc-Sablon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Blanc-Sablon -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Boa_Vista: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Boa_Vista -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Bogota: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Bogota -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Boise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Boise -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Buenos_Aires: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Buenos_Aires -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Cambridge_Bay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Cambridge_Bay -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Campo_Grande: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Campo_Grande -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Cancun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Cancun -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Caracas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Caracas -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Catamarca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Catamarca -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Cayenne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Cayenne -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Cayman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Cayman -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Chicago: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Chicago -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Chihuahua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Chihuahua -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Coral_Harbour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Coral_Harbour -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Cordoba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Cordoba -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Costa_Rica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Costa_Rica -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Creston: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Creston -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Cuiaba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Cuiaba -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Curacao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Curacao -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Danmarkshavn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Danmarkshavn -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Dawson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Dawson -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Dawson_Creek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Dawson_Creek -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Denver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Denver -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Detroit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Detroit -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Dominica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Dominica -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Edmonton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Edmonton -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Eirunepe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Eirunepe -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/El_Salvador: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/El_Salvador -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Ensenada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Ensenada -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Fort_Nelson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Fort_Nelson -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Fort_Wayne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Fort_Wayne -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Fortaleza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Fortaleza -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Glace_Bay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Glace_Bay -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Godthab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Godthab -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Goose_Bay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Goose_Bay -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Grand_Turk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Grand_Turk -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Grenada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Grenada -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Guadeloupe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Guadeloupe -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Guatemala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Guatemala -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Guayaquil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Guayaquil -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Guyana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Guyana -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Halifax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Halifax -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Havana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Havana -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Hermosillo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Hermosillo -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Indiana/Indianapolis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Indiana/Indianapolis -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Indiana/Knox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Indiana/Knox -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Indiana/Marengo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Indiana/Marengo -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Indiana/Petersburg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Indiana/Petersburg -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Indiana/Tell_City: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Indiana/Tell_City -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Indiana/Vevay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Indiana/Vevay -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Indiana/Vincennes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Indiana/Vincennes -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Indiana/Winamac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Indiana/Winamac -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Indianapolis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Indianapolis -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Inuvik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Inuvik -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Iqaluit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Iqaluit -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Jamaica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Jamaica -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Jujuy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Jujuy -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Juneau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Juneau -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Kentucky/Louisville: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Kentucky/Louisville -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Kentucky/Monticello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Kentucky/Monticello -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Knox_IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Knox_IN -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Kralendijk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Kralendijk -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/La_Paz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/La_Paz -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Lima: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Lima -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Los_Angeles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Los_Angeles -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Louisville: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Louisville -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Lower_Princes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Lower_Princes -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Maceio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Maceio -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Managua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Managua -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Manaus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Manaus -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Marigot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Marigot -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Martinique: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Martinique -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Matamoros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Matamoros -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Mazatlan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Mazatlan -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Mendoza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Mendoza -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Menominee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Menominee -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Merida: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Merida -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Metlakatla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Metlakatla -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Mexico_City: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Mexico_City -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Miquelon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Miquelon -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Moncton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Moncton -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Monterrey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Monterrey -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Montevideo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Montevideo -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Montreal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Montreal -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Montserrat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Montserrat -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Nassau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Nassau -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/New_York: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/New_York -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Nipigon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Nipigon -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Nome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Nome -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Noronha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Noronha -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/North_Dakota/Beulah: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/North_Dakota/Beulah -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/North_Dakota/Center: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/North_Dakota/Center -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/North_Dakota/New_Salem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/North_Dakota/New_Salem -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Nuuk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Nuuk -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Ojinaga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Ojinaga -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Panama: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Panama -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Pangnirtung: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Pangnirtung -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Paramaribo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Paramaribo -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Phoenix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Phoenix -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Port-au-Prince: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Port-au-Prince -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Port_of_Spain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Port_of_Spain -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Porto_Acre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Porto_Acre -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Porto_Velho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Porto_Velho -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Puerto_Rico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Puerto_Rico -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Punta_Arenas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Punta_Arenas -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Rainy_River: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Rainy_River -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Rankin_Inlet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Rankin_Inlet -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Recife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Recife -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Regina: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Regina -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Resolute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Resolute -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Rio_Branco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Rio_Branco -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Rosario: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Rosario -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Santa_Isabel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Santa_Isabel -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Santarem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Santarem -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Santiago: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Santiago -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Santo_Domingo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Santo_Domingo -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Sao_Paulo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Sao_Paulo -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Scoresbysund: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Scoresbysund -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Shiprock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Shiprock -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Sitka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Sitka -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/St_Barthelemy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/St_Barthelemy -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/St_Johns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/St_Johns -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/St_Kitts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/St_Kitts -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/St_Lucia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/St_Lucia -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/St_Thomas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/St_Thomas -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/St_Vincent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/St_Vincent -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Swift_Current: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Swift_Current -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Tegucigalpa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Tegucigalpa -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Thule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Thule -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Thunder_Bay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Thunder_Bay -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Tijuana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Tijuana -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Toronto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Toronto -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Tortola: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Tortola -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Vancouver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Vancouver -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Virgin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Virgin -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Whitehorse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Whitehorse -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Winnipeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Winnipeg -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Yakutat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Yakutat -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/America/Yellowknife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/America/Yellowknife -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Antarctica/Casey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Antarctica/Casey -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Antarctica/Davis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Antarctica/Davis -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Antarctica/DumontDUrville: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Antarctica/DumontDUrville -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Antarctica/Macquarie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Antarctica/Macquarie -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Antarctica/Mawson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Antarctica/Mawson -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Antarctica/McMurdo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Antarctica/McMurdo -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Antarctica/Palmer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Antarctica/Palmer -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Antarctica/Rothera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Antarctica/Rothera -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Antarctica/South_Pole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Antarctica/South_Pole -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Antarctica/Syowa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Antarctica/Syowa -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Antarctica/Troll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Antarctica/Troll -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Antarctica/Vostok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Antarctica/Vostok -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Arctic/Longyearbyen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Arctic/Longyearbyen -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Aden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Aden -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Almaty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Almaty -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Amman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Amman -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Anadyr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Anadyr -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Aqtau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Aqtau -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Aqtobe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Aqtobe -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Ashgabat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Ashgabat -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Ashkhabad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Ashkhabad -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Atyrau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Atyrau -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Baghdad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Baghdad -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Bahrain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Bahrain -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Baku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Baku -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Bangkok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Bangkok -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Barnaul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Barnaul -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Beirut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Beirut -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Bishkek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Bishkek -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Brunei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Brunei -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Calcutta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Calcutta -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Chita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Chita -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Choibalsan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Choibalsan -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Chongqing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Chongqing -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Chungking: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Chungking -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Colombo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Colombo -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Dacca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Dacca -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Damascus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Damascus -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Dhaka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Dhaka -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Dili: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Dili -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Dubai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Dubai -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Dushanbe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Dushanbe -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Famagusta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Famagusta -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Gaza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Gaza -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Harbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Harbin -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Hebron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Hebron -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Ho_Chi_Minh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Ho_Chi_Minh -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Hong_Kong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Hong_Kong -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Hovd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Hovd -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Irkutsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Irkutsk -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Istanbul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Istanbul -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Jakarta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Jakarta -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Jayapura: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Jayapura -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Jerusalem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Jerusalem -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Kabul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Kabul -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Kamchatka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Kamchatka -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Karachi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Karachi -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Kashgar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Kashgar -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Kathmandu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Kathmandu -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Katmandu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Katmandu -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Khandyga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Khandyga -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Kolkata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Kolkata -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Krasnoyarsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Krasnoyarsk -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Kuala_Lumpur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Kuala_Lumpur -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Kuching: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Kuching -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Kuwait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Kuwait -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Macao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Macao -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Macau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Macau -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Magadan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Magadan -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Makassar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Makassar -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Manila: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Manila -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Muscat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Muscat -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Nicosia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Nicosia -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Novokuznetsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Novokuznetsk -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Novosibirsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Novosibirsk -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Omsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Omsk -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Oral: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Oral -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Phnom_Penh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Phnom_Penh -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Pontianak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Pontianak -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Pyongyang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Pyongyang -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Qatar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Qatar -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Qostanay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Qostanay -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Qyzylorda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Qyzylorda -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Rangoon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Rangoon -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Riyadh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Riyadh -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Saigon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Saigon -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Sakhalin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Sakhalin -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Samarkand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Samarkand -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Seoul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Seoul -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Shanghai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Shanghai -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Singapore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Singapore -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Srednekolymsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Srednekolymsk -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Taipei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Taipei -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Tashkent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Tashkent -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Tbilisi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Tbilisi -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Tehran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Tehran -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Tel_Aviv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Tel_Aviv -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Thimbu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Thimbu -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Thimphu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Thimphu -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Tokyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Tokyo -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Tomsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Tomsk -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Ujung_Pandang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Ujung_Pandang -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Ulaanbaatar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Ulaanbaatar -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Ulan_Bator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Ulan_Bator -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Urumqi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Urumqi -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Ust-Nera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Ust-Nera -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Vientiane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Vientiane -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Vladivostok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Vladivostok -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Yakutsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Yakutsk -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Yangon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Yangon -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Yekaterinburg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Yekaterinburg -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Asia/Yerevan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Asia/Yerevan -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Atlantic/Azores: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Atlantic/Azores -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Atlantic/Bermuda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Atlantic/Bermuda -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Atlantic/Canary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Atlantic/Canary -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Atlantic/Cape_Verde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Atlantic/Cape_Verde -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Atlantic/Faeroe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Atlantic/Faeroe -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Atlantic/Faroe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Atlantic/Faroe -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Atlantic/Jan_Mayen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Atlantic/Jan_Mayen -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Atlantic/Madeira: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Atlantic/Madeira -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Atlantic/Reykjavik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Atlantic/Reykjavik -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Atlantic/South_Georgia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Atlantic/South_Georgia -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Atlantic/St_Helena: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Atlantic/St_Helena -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Atlantic/Stanley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Atlantic/Stanley -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Australia/ACT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Australia/ACT -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Australia/Adelaide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Australia/Adelaide -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Australia/Brisbane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Australia/Brisbane -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Australia/Broken_Hill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Australia/Broken_Hill -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Australia/Canberra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Australia/Canberra -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Australia/Currie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Australia/Currie -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Australia/Darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Australia/Darwin -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Australia/Eucla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Australia/Eucla -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Australia/Hobart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Australia/Hobart -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Australia/LHI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Australia/LHI -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Australia/Lindeman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Australia/Lindeman -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Australia/Lord_Howe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Australia/Lord_Howe -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Australia/Melbourne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Australia/Melbourne -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Australia/NSW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Australia/NSW -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Australia/North: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Australia/North -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Australia/Perth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Australia/Perth -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Australia/Queensland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Australia/Queensland -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Australia/South: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Australia/South -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Australia/Sydney: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Australia/Sydney -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Australia/Tasmania: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Australia/Tasmania -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Australia/Victoria: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Australia/Victoria -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Australia/West: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Australia/West -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Australia/Yancowinna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Australia/Yancowinna -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Brazil/Acre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Brazil/Acre -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Brazil/DeNoronha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Brazil/DeNoronha -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Brazil/East: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Brazil/East -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Brazil/West: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Brazil/West -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/CET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/CET -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/CST6CDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/CST6CDT -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Canada/Atlantic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Canada/Atlantic -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Canada/Central: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Canada/Central -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Canada/Eastern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Canada/Eastern -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Canada/Mountain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Canada/Mountain -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Canada/Newfoundland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Canada/Newfoundland -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Canada/Pacific: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Canada/Pacific -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Canada/Saskatchewan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Canada/Saskatchewan -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Canada/Yukon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Canada/Yukon -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Chile/Continental: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Chile/Continental -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Chile/EasterIsland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Chile/EasterIsland -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Cuba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Cuba -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/EET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/EET -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/EST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/EST -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/EST5EDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/EST5EDT -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Egypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Egypt -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Eire -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT+0: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT+1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Etc/GMT+1 -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT+10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Etc/GMT+10 -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT+11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Etc/GMT+11 -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT+12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Etc/GMT+12 -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT+2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Etc/GMT+2 -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT+3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Etc/GMT+3 -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT+4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Etc/GMT+4 -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT+5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Etc/GMT+5 -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT+6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Etc/GMT+6 -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT+7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Etc/GMT+7 -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT+8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Etc/GMT+8 -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT+9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Etc/GMT+9 -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT-0: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT-1: -------------------------------------------------------------------------------- 1 | TZif2TZif2+01 2 | <+01>-1 3 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT-10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Etc/GMT-10 -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT-11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Etc/GMT-11 -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT-12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Etc/GMT-12 -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT-13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Etc/GMT-13 -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT-14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Etc/GMT-14 -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT-2: -------------------------------------------------------------------------------- 1 | TZif2TZif2 +02 2 | <+02>-2 3 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT-3: -------------------------------------------------------------------------------- 1 | TZif2TZif2*0+03 2 | <+03>-3 3 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT-4: -------------------------------------------------------------------------------- 1 | TZif2TZif28@+04 2 | <+04>-4 3 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT-5: -------------------------------------------------------------------------------- 1 | TZif2TZif2FP+05 2 | <+05>-5 3 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT-6: -------------------------------------------------------------------------------- 1 | TZif2TZif2T`+06 2 | <+06>-6 3 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT-7: -------------------------------------------------------------------------------- 1 | TZif2TZif2bp+07 2 | <+07>-7 3 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT-8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Etc/GMT-8 -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT-9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Etc/GMT-9 -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/GMT0: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/Greenwich: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/UCT: -------------------------------------------------------------------------------- 1 | TZif2TZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/UTC: -------------------------------------------------------------------------------- 1 | TZif2TZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/Universal: -------------------------------------------------------------------------------- 1 | TZif2TZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Etc/Zulu: -------------------------------------------------------------------------------- 1 | TZif2TZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Amsterdam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Amsterdam -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Andorra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Andorra -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Astrakhan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Astrakhan -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Athens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Athens -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Belfast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Belfast -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Belgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Belgrade -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Berlin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Berlin -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Bratislava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Bratislava -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Brussels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Brussels -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Bucharest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Bucharest -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Budapest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Budapest -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Busingen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Busingen -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Chisinau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Chisinau -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Copenhagen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Copenhagen -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Dublin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Dublin -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Gibraltar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Gibraltar -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Guernsey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Guernsey -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Helsinki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Helsinki -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Isle_of_Man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Isle_of_Man -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Istanbul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Istanbul -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Jersey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Jersey -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Kaliningrad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Kaliningrad -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Kiev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Kiev -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Kirov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Kirov -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Lisbon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Lisbon -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Ljubljana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Ljubljana -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/London: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/London -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Luxembourg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Luxembourg -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Madrid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Madrid -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Malta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Malta -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Mariehamn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Mariehamn -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Minsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Minsk -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Monaco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Monaco -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Moscow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Moscow -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Nicosia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Nicosia -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Oslo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Oslo -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Paris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Paris -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Podgorica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Podgorica -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Prague: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Prague -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Riga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Riga -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Rome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Rome -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Samara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Samara -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/San_Marino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/San_Marino -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Sarajevo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Sarajevo -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Saratov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Saratov -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Simferopol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Simferopol -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Skopje: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Skopje -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Sofia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Sofia -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Stockholm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Stockholm -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Tallinn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Tallinn -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Tirane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Tirane -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Tiraspol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Tiraspol -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Ulyanovsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Ulyanovsk -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Uzhgorod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Uzhgorod -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Vaduz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Vaduz -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Vatican: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Vatican -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Vienna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Vienna -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Vilnius: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Vilnius -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Volgograd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Volgograd -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Warsaw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Warsaw -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Zagreb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Zagreb -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Zaporozhye: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Zaporozhye -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Europe/Zurich: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Europe/Zurich -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Factory: -------------------------------------------------------------------------------- 1 | TZif2TZif2-00 2 | <-00>0 3 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/GB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/GB -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/GB-Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/GB-Eire -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/GMT: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/GMT+0: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/GMT-0: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/GMT0: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Greenwich: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/HST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/HST -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Hongkong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Hongkong -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Iceland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Iceland -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Indian/Antananarivo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Indian/Antananarivo -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Indian/Chagos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Indian/Chagos -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Indian/Christmas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Indian/Christmas -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Indian/Cocos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Indian/Cocos -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Indian/Comoro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Indian/Comoro -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Indian/Kerguelen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Indian/Kerguelen -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Indian/Mahe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Indian/Mahe -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Indian/Maldives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Indian/Maldives -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Indian/Mauritius: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Indian/Mauritius -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Indian/Mayotte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Indian/Mayotte -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Indian/Reunion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Indian/Reunion -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Iran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Iran -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Israel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Israel -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Jamaica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Jamaica -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Japan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Japan -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Kwajalein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Kwajalein -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Libya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Libya -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/MET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/MET -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/MST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/MST -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/MST7MDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/MST7MDT -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Mexico/BajaNorte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Mexico/BajaNorte -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Mexico/BajaSur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Mexico/BajaSur -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Mexico/General: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Mexico/General -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/NZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/NZ -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/NZ-CHAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/NZ-CHAT -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Navajo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Navajo -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/PRC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/PRC -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/PST8PDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/PST8PDT -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Apia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Apia -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Auckland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Auckland -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Bougainville: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Bougainville -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Chatham: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Chatham -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Chuuk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Chuuk -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Easter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Easter -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Efate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Efate -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Enderbury: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Enderbury -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Fakaofo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Fakaofo -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Fiji: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Fiji -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Funafuti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Funafuti -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Galapagos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Galapagos -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Gambier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Gambier -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Guadalcanal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Guadalcanal -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Guam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Guam -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Honolulu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Honolulu -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Johnston: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Johnston -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Kiritimati: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Kiritimati -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Kosrae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Kosrae -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Kwajalein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Kwajalein -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Majuro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Majuro -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Marquesas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Marquesas -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Midway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Midway -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Nauru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Nauru -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Niue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Niue -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Norfolk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Norfolk -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Noumea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Noumea -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Pago_Pago: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Pago_Pago -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Palau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Palau -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Pitcairn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Pitcairn -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Pohnpei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Pohnpei -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Ponape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Ponape -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Port_Moresby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Port_Moresby -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Rarotonga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Rarotonga -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Saipan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Saipan -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Samoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Samoa -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Tahiti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Tahiti -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Tarawa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Tarawa -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Tongatapu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Tongatapu -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Truk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Truk -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Wake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Wake -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Wallis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Wallis -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Pacific/Yap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Pacific/Yap -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Poland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Poland -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Portugal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Portugal -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/ROC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/ROC -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/ROK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/ROK -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Singapore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Singapore -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Turkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/Turkey -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/UCT: -------------------------------------------------------------------------------- 1 | TZif2TZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/US/Alaska: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/US/Alaska -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/US/Aleutian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/US/Aleutian -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/US/Arizona: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/US/Arizona -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/US/Central: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/US/Central -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/US/East-Indiana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/US/East-Indiana -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/US/Eastern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/US/Eastern -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/US/Hawaii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/US/Hawaii -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/US/Indiana-Starke: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/US/Indiana-Starke -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/US/Michigan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/US/Michigan -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/US/Mountain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/US/Mountain -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/US/Pacific: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/US/Pacific -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/US/Samoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/US/Samoa -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/UTC: -------------------------------------------------------------------------------- 1 | TZif2TZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Universal: -------------------------------------------------------------------------------- 1 | TZif2TZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/W-SU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/W-SU -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/WET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/assets/tzdata/zoneinfo/WET -------------------------------------------------------------------------------- /app/src/main/assets/tzdata/zoneinfo/Zulu: -------------------------------------------------------------------------------- 1 | TZif2TZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /app/src/main/cpp/skyline/common/trace.cpp: -------------------------------------------------------------------------------- 1 | #include "trace.h" 2 | 3 | PERFETTO_TRACK_EVENT_STATIC_STORAGE(); //!< Expands into a structure with static storage for all track events 4 | -------------------------------------------------------------------------------- /app/src/main/cpp/skyline/gpu/interconnect/maxwell_3d/common.h: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MPL-2.0 2 | // Copyright © 2022 Skyline Team and Contributors (https://github.com/skyline-emu/) 3 | 4 | #pragma once 5 | 6 | #include 7 | #include 8 | 9 | namespace skyline::gpu::interconnect::maxwell3d { 10 | namespace engine = skyline::soc::gm20b::engine::maxwell3d::type; 11 | } 12 | -------------------------------------------------------------------------------- /app/src/main/cpp/skyline/services/am/controller/IAppletCommonFunctions.cpp: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MPL-2.0 2 | // Copyright © 2020 Skyline Team and Contributors (https://github.com/skyline-emu/) 3 | 4 | #include "IAppletCommonFunctions.h" 5 | 6 | namespace skyline::service::am { 7 | IAppletCommonFunctions::IAppletCommonFunctions(const DeviceState &state, ServiceManager &manager) : BaseService(state, manager) {} 8 | } 9 | -------------------------------------------------------------------------------- /app/src/main/cpp/skyline/services/am/controller/IDebugFunctions.cpp: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MPL-2.0 2 | // Copyright © 2020 Skyline Team and Contributors (https://github.com/skyline-emu/) 3 | 4 | #include "IDebugFunctions.h" 5 | 6 | namespace skyline::service::am { 7 | IDebugFunctions::IDebugFunctions(const DeviceState &state, ServiceManager &manager) : BaseService(state, manager) {} 8 | } 9 | -------------------------------------------------------------------------------- /app/src/main/cpp/skyline/services/am/controller/IDisplayController.cpp: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MPL-2.0 2 | // Copyright © 2020 Skyline Team and Contributors (https://github.com/skyline-emu/) 3 | 4 | #include "IDisplayController.h" 5 | 6 | namespace skyline::service::am { 7 | IDisplayController::IDisplayController(const DeviceState &state, ServiceManager &manager) : BaseService(state, manager) {} 8 | } 9 | -------------------------------------------------------------------------------- /app/src/main/cpp/skyline/services/am/proxy/ILibraryAppletProxy.cpp: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MPL-2.0 2 | // Copyright © 2020 Skyline Team and Contributors (https://github.com/skyline-emu/) 3 | 4 | #include "ILibraryAppletProxy.h" 5 | 6 | namespace skyline::service::am { 7 | ILibraryAppletProxy::ILibraryAppletProxy(const DeviceState &state, ServiceManager &manager) : BaseProxy(state, manager) {} 8 | } 9 | -------------------------------------------------------------------------------- /app/src/main/cpp/skyline/services/am/proxy/IOverlayAppletProxy.cpp: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MPL-2.0 2 | // Copyright © 2020 Skyline Team and Contributors (https://github.com/skyline-emu/) 3 | 4 | #include "IOverlayAppletProxy.h" 5 | 6 | namespace skyline::service::am { 7 | IOverlayAppletProxy::IOverlayAppletProxy(const DeviceState &state, ServiceManager &manager) : BaseProxy(state, manager) {} 8 | } 9 | -------------------------------------------------------------------------------- /app/src/main/cpp/skyline/services/am/proxy/ISystemAppletProxy.cpp: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MPL-2.0 2 | // Copyright © 2020 Skyline Team and Contributors (https://github.com/skyline-emu/) 3 | 4 | #include "ISystemAppletProxy.h" 5 | 6 | namespace skyline::service::am { 7 | ISystemAppletProxy::ISystemAppletProxy(const DeviceState &state, ServiceManager &manager) : BaseProxy(state, manager) {} 8 | } 9 | -------------------------------------------------------------------------------- /app/src/main/cpp/skyline/services/bt/IBluetoothUser.cpp: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MPL-2.0 2 | // Copyright © 2022 Skyline Team and Contributors (https://github.com/skyline-emu/) 3 | 4 | #include "IBluetoothUser.h" 5 | 6 | namespace skyline::service::bt { 7 | IBluetoothUser::IBluetoothUser(const DeviceState &state, ServiceManager &manager) : BaseService(state, manager) {} 8 | } -------------------------------------------------------------------------------- /app/src/main/cpp/skyline/services/capsrv/IAlbumAccessorService.cpp: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MPL-2.0 2 | // Copyright © 2022 Skyline Team and Contributors (https://github.com/skyline-emu/) 3 | 4 | #include "IAlbumAccessorService.h" 5 | 6 | namespace skyline::service::capsrv { 7 | IAlbumAccessorService::IAlbumAccessorService(const DeviceState &state, ServiceManager &manager) : BaseService(state, manager) {} 8 | } -------------------------------------------------------------------------------- /app/src/main/cpp/skyline/services/clkrst/IClkrstSession.cpp: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MPL-2.0 2 | // Copyright © 2023 Skyline Team and Contributors (https://github.com/skyline-emu/) 3 | 4 | #include "IClkrstSession.h" 5 | 6 | namespace skyline::service::clkrst { 7 | IClkrstSession::IClkrstSession(const DeviceState &state, ServiceManager &manager) : BaseService(state, manager) {} 8 | } 9 | -------------------------------------------------------------------------------- /app/src/main/cpp/skyline/services/fssrv/ISaveDataInfoReader.cpp: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MPL-2.0 2 | // Copyright © 2023 Skyline Team and Contributors (https://github.com/skyline-emu/) 3 | 4 | #include "ISaveDataInfoReader.h" 5 | 6 | namespace skyline::service::fssrv { 7 | ISaveDataInfoReader::ISaveDataInfoReader(const DeviceState &state, ServiceManager &manager) : BaseService(state, manager) {} 8 | } 9 | -------------------------------------------------------------------------------- /app/src/main/cpp/skyline/services/nifm/IScanRequest.cpp: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MPL-2.0 2 | // Copyright © 2022 Skyline Team and Contributors (https://github.com/skyline-emu/) 3 | 4 | #include "IScanRequest.h" 5 | 6 | namespace skyline::service::nifm { 7 | IScanRequest::IScanRequest(const DeviceState &state, ServiceManager &manager) : BaseService(state, manager) {} 8 | } -------------------------------------------------------------------------------- /app/src/main/cpp/skyline/services/nim/IShopServiceAsync.cpp: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MPL-2.0 2 | // Copyright © 2022 Skyline Team and Contributors (https://github.com/skyline-emu/) 3 | 4 | #include "IShopServiceAsync.h" 5 | 6 | namespace skyline::service::nim { 7 | IShopServiceAsync::IShopServiceAsync(const DeviceState &state, ServiceManager &manager) : BaseService(state, manager) {} 8 | } 9 | -------------------------------------------------------------------------------- /app/src/main/cpp/skyline/services/olsc/IOlscServiceForApplication.cpp: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MPL-2.0 2 | // Copyright © 2022 Skyline Team and Contributors (https://github.com/skyline-emu/) 3 | 4 | #include "IOlscServiceForApplication.h" 5 | 6 | namespace skyline::service::olsc { 7 | IOlscServiceForApplication::IOlscServiceForApplication(const DeviceState &state, ServiceManager &manager) : BaseService(state, manager) {} 8 | } 9 | -------------------------------------------------------------------------------- /app/src/main/cpp/skyline/services/ts/ISession.cpp: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MPL-2.0 2 | // Copyright © 2023 Skyline Team and Contributors (https://github.com/skyline-emu/) 3 | 4 | #include "ISession.h" 5 | 6 | namespace skyline::service::ts { 7 | ISession::ISession(const DeviceState &state, ServiceManager &manager) : BaseService(state, manager) {} 8 | } 9 | -------------------------------------------------------------------------------- /app/src/main/cpp/skyline/services/visrv/results.h: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: MPL-2.0 2 | // Copyright © 2021 Skyline Team and Contributors (https://github.com/skyline-emu/) 3 | 4 | #pragma once 5 | 6 | #include 7 | 8 | namespace skyline::service::visrv::result { 9 | constexpr Result InvalidArgument(114, 1); 10 | constexpr Result InvalidDimensions(114, 4); 11 | constexpr Result IllegalOperation(114, 6); 12 | } 13 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/background_gradient.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/default_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/res/drawable/default_icon.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_add.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_arrow_drop_down.xml: -------------------------------------------------------------------------------- 1 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_clear.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_delete.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_pause.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_volume_mute.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/logo_skyline.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_selectable_item_background.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/layout/preference_widget_material_switch.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/logo_skyline_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/res/mipmap-hdpi/logo_skyline_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/logo_skyline_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/res/mipmap-mdpi/logo_skyline_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/logo_skyline_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/res/mipmap-xhdpi/logo_skyline_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/logo_skyline_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/res/mipmap-xxhdpi/logo_skyline_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/logo_skyline_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/app/src/main/res/mipmap-xxxhdpi/logo_skyline_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/values-sw360dp-v13/values-preference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | false 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_descriptor.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/shaders/clear.frag: -------------------------------------------------------------------------------- 1 | #version 460 2 | 3 | layout (location = 0) out vec4 colour; 4 | 5 | layout (push_constant) uniform constants { 6 | vec4 colour; 7 | bool clearDepth; 8 | float depth; 9 | } PC; 10 | 11 | void main() 12 | { 13 | if (PC.clearDepth) 14 | gl_FragDepth = PC.depth; 15 | else 16 | colour = PC.colour; 17 | } 18 | -------------------------------------------------------------------------------- /app/src/main/shaders/clear.vert: -------------------------------------------------------------------------------- 1 | #version 460 2 | 3 | void main() { 4 | const vec2 lut[6] = vec2[6]( 5 | vec2(-1, -1), 6 | vec2(-1, 1), 7 | vec2(1, 1), 8 | vec2(1, 1), 9 | vec2(1, -1), 10 | vec2(-1, -1) 11 | ); 12 | 13 | gl_Position = vec4(lut[gl_VertexIndex], 0, 1); 14 | } 15 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strato-emu/strato/ae1566a48285816a87e81d4aeb40bd2f4e56e60b/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Apr 27 08:18:47 GMT 2022 2 | distributionBase=GRADLE_USER_HOME 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip 4 | distributionPath=wrapper/dists 5 | zipStorePath=wrapper/dists 6 | zipStoreBase=GRADLE_USER_HOME 7 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /transifex.yml: -------------------------------------------------------------------------------- 1 | git: 2 | filters: 3 | - filter_type: file 4 | file_format: Android 5 | source_language: en 6 | source_file: app/src/main/res/values/strings.xml 7 | translation_files_expression: app/src/main/res/values-/strings.xml 8 | settings: 9 | language_mapping: 10 | es_419: b+es+419 11 | id: in 12 | pt_BR: pt-rBR 13 | zh-Hans: b+zh+Hans 14 | zh-Hant: b+zh+Hant 15 | --------------------------------------------------------------------------------