├── ICU.plist ├── ICU_embedded.order ├── apple ├── BuildICUForAAS_script.bat ├── featureFlags │ └── ICU.plist ├── generate_json_for_tapi.py ├── makefile.old ├── minimalapis.txt ├── minimalapisTest.c ├── modules │ ├── unicode.modulemap │ └── unicode_private.modulemap ├── scripts │ ├── add-locale.md │ ├── add-locale.py │ ├── build-icu-data.sh │ ├── cldr-inheritance.md │ ├── cldr-inheritance.py │ ├── coverity-scan.sh │ └── integration │ │ ├── DerivedCoreProperties.patch.txt │ │ ├── UnicodeData.patch.txt │ │ ├── ppucd.patch.txt │ │ ├── resolve-next.sh │ │ ├── set-up-integration.sh │ │ ├── start-resolving.sh │ │ ├── update-ossimport.sh │ │ └── update-unicode-data.sh └── swift │ ├── FoundationICU │ └── FoundationICU.swift │ ├── Package.swift │ ├── README.md │ ├── api-common.txt │ ├── api-i18n.txt │ └── api-io.txt ├── icu ├── LICENSE └── icu4c │ └── source │ ├── .clang-format │ ├── Doxyfile.in │ ├── ICU.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── cintltst.xcscheme │ │ ├── common.xcscheme │ │ ├── core.xcscheme │ │ ├── ctestfw.xcscheme │ │ ├── data.xcscheme │ │ ├── derb.xcscheme │ │ ├── genbrk.xcscheme │ │ ├── genccode.xcscheme │ │ ├── gencfu.xcscheme │ │ ├── gencmn.xcscheme │ │ ├── gencnval.xcscheme │ │ ├── gendict.xcscheme │ │ ├── gennorm2.xcscheme │ │ ├── genrb.xcscheme │ │ ├── gensprep.xcscheme │ │ ├── gentest.xcscheme │ │ ├── i18n copy.xcscheme │ │ ├── i18n.xcscheme │ │ ├── icuinfo.xcscheme │ │ ├── icupkg.xcscheme │ │ ├── intltest.xcscheme │ │ ├── io.xcscheme │ │ ├── iotest.xcscheme │ │ ├── make icu.xcscheme │ │ ├── makeconv.xcscheme │ │ ├── pkgdata.xcscheme │ │ ├── stubdata.xcscheme │ │ ├── testdata.xcscheme │ │ ├── tools.xcscheme │ │ ├── toolutil.xcscheme │ │ └── xc_icu_tests.xcscheme │ ├── Makefile.in │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── allinone │ ├── Build.Windows.IcuVersion.props │ ├── Build.Windows.Library.ProjectConfiguration.props │ ├── Build.Windows.Library.WarningSettings.ProjectConfiguration.props │ ├── Build.Windows.PlatformToolset.props │ ├── Build.Windows.ProjectConfiguration.props │ ├── Build.Windows.UWP.ProjectConfiguration.props │ ├── Windows.CopyUnicodeHeaderFiles.targets │ ├── allinone.sln │ └── icucheck.bat │ ├── common │ ├── BUILD.bazel │ ├── Makefile.in │ ├── Makefile.local │ ├── aaplbfct.cpp │ ├── aaplbfct.h │ ├── appendable.cpp │ ├── bmpset.cpp │ ├── bmpset.h │ ├── brkeng.cpp │ ├── brkeng.h │ ├── brkiter.cpp │ ├── bytesinkutil.cpp │ ├── bytesinkutil.h │ ├── bytestream.cpp │ ├── bytestrie.cpp │ ├── bytestriebuilder.cpp │ ├── bytestrieiterator.cpp │ ├── caniter.cpp │ ├── capi_helper.h │ ├── characterproperties.cpp │ ├── chariter.cpp │ ├── charstr.cpp │ ├── charstr.h │ ├── charstrmap.h │ ├── cmemory.cpp │ ├── cmemory.h │ ├── common.rc │ ├── common.vcxproj │ ├── common.vcxproj.filters │ ├── common_uwp.vcxproj │ ├── cpputils.h │ ├── cstr.cpp │ ├── cstr.h │ ├── cstring.cpp │ ├── cstring.h │ ├── cwchar.cpp │ ├── cwchar.h │ ├── dictbe.cpp │ ├── dictbe.h │ ├── dictionarydata.cpp │ ├── dictionarydata.h │ ├── dtintrv.cpp │ ├── edits.cpp │ ├── emojiprops.cpp │ ├── emojiprops.h │ ├── errorcode.cpp │ ├── filteredbrk.cpp │ ├── filterednormalizer2.cpp │ ├── hash.h │ ├── icudataver.cpp │ ├── icuplug.cpp │ ├── icuplugimp.h │ ├── icuuc40shim.cpp │ ├── icuuc40shim.rc │ ├── libicuuc.rc │ ├── loadednormalizer2impl.cpp │ ├── localebuilder.cpp │ ├── localefallback_data.h │ ├── localematcher.cpp │ ├── localeprioritylist.cpp │ ├── localeprioritylist.h │ ├── localsvc.cpp │ ├── localsvc.h │ ├── locavailable.cpp │ ├── locbased.cpp │ ├── locbased.h │ ├── locdispnames.cpp │ ├── locdistance.cpp │ ├── locdistance.h │ ├── locdspnm.cpp │ ├── locid.cpp │ ├── loclikely.cpp │ ├── loclikelysubtags.cpp │ ├── loclikelysubtags.h │ ├── locmap.cpp │ ├── locmap.h │ ├── locresdata.cpp │ ├── locutil.cpp │ ├── locutil.h │ ├── lsr.cpp │ ├── lsr.h │ ├── lstmbe.cpp │ ├── lstmbe.h │ ├── messageimpl.h │ ├── messagepattern.cpp │ ├── mlbe.cpp │ ├── mlbe.h │ ├── msvcres.h │ ├── mutex.h │ ├── norm2_nfc_data.h │ ├── norm2allmodes.h │ ├── normalizer2.cpp │ ├── normalizer2impl.cpp │ ├── normalizer2impl.h │ ├── normlzr.cpp │ ├── parsepos.cpp │ ├── patternprops.cpp │ ├── patternprops.h │ ├── pluralmap.cpp │ ├── pluralmap.h │ ├── propname.cpp │ ├── propname.h │ ├── propname_data.h │ ├── propsvec.cpp │ ├── propsvec.h │ ├── punycode.cpp │ ├── punycode.h │ ├── putil.cpp │ ├── putilimp.h │ ├── rbbi.cpp │ ├── rbbi57.cpp │ ├── rbbi57.h │ ├── rbbi_cache.cpp │ ├── rbbi_cache.h │ ├── rbbicst.pl │ ├── rbbidata.cpp │ ├── rbbidata.h │ ├── rbbidata57.cpp │ ├── rbbidata57.h │ ├── rbbinode.cpp │ ├── rbbinode.h │ ├── rbbirb.cpp │ ├── rbbirb.h │ ├── rbbirb57.cpp │ ├── rbbirb57.h │ ├── rbbirpt.h │ ├── rbbirpt.txt │ ├── rbbiscan.cpp │ ├── rbbiscan.h │ ├── rbbiscan57.cpp │ ├── rbbiscan57.h │ ├── rbbisetb.cpp │ ├── rbbisetb.h │ ├── rbbisetb57.cpp │ ├── rbbisetb57.h │ ├── rbbistbl.cpp │ ├── rbbistbl57.cpp │ ├── rbbitblb.cpp │ ├── rbbitblb.h │ ├── rbbitblb57.cpp │ ├── rbbitblb57.h │ ├── rbtok.cpp │ ├── rbtok.h │ ├── resbund.cpp │ ├── resbund_cnv.cpp │ ├── resource.cpp │ ├── resource.h │ ├── restrace.cpp │ ├── restrace.h │ ├── ruleiter.cpp │ ├── ruleiter.h │ ├── schriter.cpp │ ├── serv.cpp │ ├── serv.h │ ├── servlk.cpp │ ├── servlkf.cpp │ ├── servloc.h │ ├── servls.cpp │ ├── servnotf.cpp │ ├── servnotf.h │ ├── servrbf.cpp │ ├── servslkf.cpp │ ├── sharedobject.cpp │ ├── sharedobject.h │ ├── simpleformatter.cpp │ ├── sources.txt │ ├── sprpimpl.h │ ├── static_unicode_sets.cpp │ ├── static_unicode_sets.h │ ├── stringpiece.cpp │ ├── stringtriebuilder.cpp │ ├── ualoc.cpp │ ├── uarrsort.cpp │ ├── uarrsort.h │ ├── uassert.h │ ├── ubidi.cpp │ ├── ubidi_props.cpp │ ├── ubidi_props.h │ ├── ubidi_props_data.h │ ├── ubidiimp.h │ ├── ubidiln.cpp │ ├── ubiditransform.cpp │ ├── ubidiwrt.cpp │ ├── ubrk.cpp │ ├── ubrkimpl.h │ ├── ucase.cpp │ ├── ucase.h │ ├── ucase_props_data.h │ ├── ucasemap.cpp │ ├── ucasemap_imp.h │ ├── ucasemap_titlecase_brkiter.cpp │ ├── ucat.cpp │ ├── uchar.cpp │ ├── uchar_props_data.h │ ├── ucharstrie.cpp │ ├── ucharstriebuilder.cpp │ ├── ucharstrieiterator.cpp │ ├── uchriter.cpp │ ├── ucln.h │ ├── ucln_cmn.cpp │ ├── ucln_cmn.h │ ├── ucln_imp.h │ ├── ucmndata.cpp │ ├── ucmndata.h │ ├── ucnv.cpp │ ├── ucnv2022.cpp │ ├── ucnv_bld.cpp │ ├── ucnv_bld.h │ ├── ucnv_cb.cpp │ ├── ucnv_cnv.cpp │ ├── ucnv_cnv.h │ ├── ucnv_ct.cpp │ ├── ucnv_err.cpp │ ├── ucnv_ext.cpp │ ├── ucnv_ext.h │ ├── ucnv_imp.h │ ├── ucnv_io.cpp │ ├── ucnv_io.h │ ├── ucnv_lmb.cpp │ ├── ucnv_set.cpp │ ├── ucnv_u16.cpp │ ├── ucnv_u32.cpp │ ├── ucnv_u7.cpp │ ├── ucnv_u8.cpp │ ├── ucnvbocu.cpp │ ├── ucnvdisp.cpp │ ├── ucnvhz.cpp │ ├── ucnvisci.cpp │ ├── ucnvlat1.cpp │ ├── ucnvmbcs.cpp │ ├── ucnvmbcs.h │ ├── ucnvscsu.cpp │ ├── ucnvsel.cpp │ ├── ucol_data.h │ ├── ucol_swp.cpp │ ├── ucol_swp.h │ ├── ucptrie.cpp │ ├── ucptrie_impl.h │ ├── ucurr.cpp │ ├── ucurrimp.h │ ├── udata.cpp │ ├── udatamem.cpp │ ├── udatamem.h │ ├── udataswp.cpp │ ├── udataswp.h │ ├── uelement.h │ ├── uenum.cpp │ ├── uenumimp.h │ ├── uhash.cpp │ ├── uhash.h │ ├── uhash_us.cpp │ ├── uidna.cpp │ ├── uinit.cpp │ ├── uinvchar.cpp │ ├── uinvchar.h │ ├── uiter.cpp │ ├── ulayout_props.h │ ├── ulist.cpp │ ├── ulist.h │ ├── uloc.cpp │ ├── uloc_keytype.cpp │ ├── uloc_tag.cpp │ ├── ulocale.cpp │ ├── ulocbuilder.cpp │ ├── ulocdata.cpp │ ├── ulocimp.h │ ├── umapfile.cpp │ ├── umapfile.h │ ├── umath.cpp │ ├── umutablecptrie.cpp │ ├── umutex.cpp │ ├── umutex.h │ ├── unames.cpp │ ├── unicode │ │ ├── appendable.h │ │ ├── brkiter.h │ │ ├── bytestream.h │ │ ├── bytestrie.h │ │ ├── bytestriebuilder.h │ │ ├── caniter.h │ │ ├── casemap.h │ │ ├── char16ptr.h │ │ ├── chariter.h │ │ ├── dbbi.h │ │ ├── docmain.h │ │ ├── dtintrv.h │ │ ├── edits.h │ │ ├── enumset.h │ │ ├── errorcode.h │ │ ├── filteredbrk.h │ │ ├── icudataver.h │ │ ├── icuplug.h │ │ ├── idna.h │ │ ├── localebuilder.h │ │ ├── localematcher.h │ │ ├── localpointer.h │ │ ├── locdspnm.h │ │ ├── locid.h │ │ ├── messagepattern.h │ │ ├── normalizer2.h │ │ ├── normlzr.h │ │ ├── parseerr.h │ │ ├── parsepos.h │ │ ├── platform.h │ │ ├── ptypes.h │ │ ├── putil.h │ │ ├── rbbi.h │ │ ├── rep.h │ │ ├── resbund.h │ │ ├── schriter.h │ │ ├── simpleformatter.h │ │ ├── std_string.h │ │ ├── strenum.h │ │ ├── stringoptions.h │ │ ├── stringpiece.h │ │ ├── stringtriebuilder.h │ │ ├── symtable.h │ │ ├── ualoc.h │ │ ├── ubidi.h │ │ ├── ubiditransform.h │ │ ├── ubrk.h │ │ ├── ucasemap.h │ │ ├── ucat.h │ │ ├── uchar.h │ │ ├── ucharstrie.h │ │ ├── ucharstriebuilder.h │ │ ├── uchriter.h │ │ ├── uclean.h │ │ ├── ucnv.h │ │ ├── ucnv_cb.h │ │ ├── ucnv_err.h │ │ ├── ucnvsel.h │ │ ├── uconfig.h │ │ ├── ucpmap.h │ │ ├── ucptrie.h │ │ ├── ucurr.h │ │ ├── udata.h │ │ ├── udisplaycontext.h │ │ ├── uenum.h │ │ ├── uidna.h │ │ ├── uiter.h │ │ ├── uldnames.h │ │ ├── uloc.h │ │ ├── ulocale.h │ │ ├── ulocbuilder.h │ │ ├── ulocdata.h │ │ ├── umachine.h │ │ ├── umisc.h │ │ ├── umutablecptrie.h │ │ ├── unifilt.h │ │ ├── unifunct.h │ │ ├── unimatch.h │ │ ├── uniset.h │ │ ├── unistr.h │ │ ├── unorm.h │ │ ├── unorm2.h │ │ ├── uobject.h │ │ ├── urbtok.h │ │ ├── urename.h │ │ ├── urep.h │ │ ├── ures.h │ │ ├── uscript.h │ │ ├── uset.h │ │ ├── usetiter.h │ │ ├── ushape.h │ │ ├── usprep.h │ │ ├── ustring.h │ │ ├── ustringtrie.h │ │ ├── utext.h │ │ ├── utf.h │ │ ├── utf16.h │ │ ├── utf32.h │ │ ├── utf8.h │ │ ├── utf_old.h │ │ ├── utrace.h │ │ ├── utypes.h │ │ ├── uvernum.h │ │ └── uversion.h │ ├── unifiedcache.cpp │ ├── unifiedcache.h │ ├── unifilt.cpp │ ├── unifunct.cpp │ ├── uniquecharstr.h │ ├── uniset.cpp │ ├── uniset_closure.cpp │ ├── uniset_props.cpp │ ├── unisetspan.cpp │ ├── unisetspan.h │ ├── unistr.cpp │ ├── unistr_case.cpp │ ├── unistr_case_locale.cpp │ ├── unistr_cnv.cpp │ ├── unistr_props.cpp │ ├── unistr_titlecase_brkiter.cpp │ ├── unistrappender.h │ ├── unorm.cpp │ ├── unormcmp.cpp │ ├── unormimp.h │ ├── uobject.cpp │ ├── uposixdefs.h │ ├── uprops.cpp │ ├── uprops.h │ ├── urbtok.cpp │ ├── ures_cnv.cpp │ ├── uresbund.cpp │ ├── uresdata.cpp │ ├── uresdata.h │ ├── uresimp.h │ ├── ureslocs.h │ ├── usc_impl.cpp │ ├── usc_impl.h │ ├── uscript.cpp │ ├── uscript_props.cpp │ ├── uset.cpp │ ├── uset_imp.h │ ├── uset_props.cpp │ ├── usetiter.cpp │ ├── ushape.cpp │ ├── usprep.cpp │ ├── ustack.cpp │ ├── ustr_cnv.cpp │ ├── ustr_cnv.h │ ├── ustr_imp.h │ ├── ustr_titlecase_brkiter.cpp │ ├── ustr_wcs.cpp │ ├── ustrcase.cpp │ ├── ustrcase_locale.cpp │ ├── ustrenum.cpp │ ├── ustrenum.h │ ├── ustrfmt.cpp │ ├── ustrfmt.h │ ├── ustring.cpp │ ├── ustrtrns.cpp │ ├── utext.cpp │ ├── utf_impl.cpp │ ├── util.cpp │ ├── util.h │ ├── util_props.cpp │ ├── utrace.cpp │ ├── utracimp.h │ ├── utrie.cpp │ ├── utrie.h │ ├── utrie2.cpp │ ├── utrie2.h │ ├── utrie2_builder.cpp │ ├── utrie2_impl.h │ ├── utrie_swap.cpp │ ├── uts46.cpp │ ├── utypeinfo.h │ ├── utypes.cpp │ ├── uvector.cpp │ ├── uvector.h │ ├── uvectr32.cpp │ ├── uvectr32.h │ ├── uvectr64.cpp │ ├── uvectr64.h │ ├── wintz.cpp │ └── wintz.h │ ├── config.guess │ ├── config.sub │ ├── config │ ├── Makefile.inc.in │ ├── dist-data.sh │ ├── dist.mk │ ├── gmakever.mk │ ├── icu-config-bottom │ ├── icu-config-top │ ├── icu-config.1.in │ ├── icu.pc.in │ ├── m4 │ │ └── icu-conditional.m4 │ ├── make2sh.sed │ ├── mh-aix-gcc │ ├── mh-aix-va │ ├── mh-alpha-linux-cc │ ├── mh-alpha-linux-gcc │ ├── mh-alpha-osf │ ├── mh-beos │ ├── mh-bsd-gcc │ ├── mh-cygwin │ ├── mh-cygwin-msvc │ ├── mh-cygwin64 │ ├── mh-darwin │ ├── mh-darwin-ppc │ ├── mh-haiku │ ├── mh-hpux-acc │ ├── mh-hpux-gcc │ ├── mh-irix │ ├── mh-linux │ ├── mh-linux-va │ ├── mh-mingw │ ├── mh-mingw64 │ ├── mh-mpras │ ├── mh-msys-msvc │ ├── mh-os390 │ ├── mh-os400 │ ├── mh-qnx │ ├── mh-solaris │ ├── mh-solaris-gcc │ ├── mh-unknown │ ├── pkgdataMakefile.in │ ├── test-icu-config.sh │ └── windows-update.sed.in │ ├── configure │ ├── configure.ac │ ├── data │ ├── BUILDRULES.py │ ├── Makefile.in │ ├── brkitr │ │ ├── LOCALE_DEPS.json │ │ ├── adaboost │ │ │ └── jaml.txt │ │ ├── de.txt │ │ ├── dictionaries │ │ │ ├── burmesedict.txt │ │ │ ├── cjdict.txt │ │ │ ├── khmerdict.txt │ │ │ ├── laodict.txt │ │ │ └── thaidict.txt │ │ ├── el.txt │ │ ├── en.txt │ │ ├── en_US.txt │ │ ├── en_US_POSIX.txt │ │ ├── es.txt │ │ ├── fi.txt │ │ ├── fr.txt │ │ ├── it.txt │ │ ├── ja.txt │ │ ├── ko.txt │ │ ├── lstm │ │ │ ├── Burmese_codepoints_exclusive_model4_heavy.txt │ │ │ ├── Burmese_codepoints_exclusive_model5_heavy.txt │ │ │ ├── Burmese_codepoints_exclusive_model7_heavy.txt │ │ │ ├── Burmese_graphclust_model4_heavy.txt │ │ │ ├── Burmese_graphclust_model5_heavy.txt │ │ │ ├── Burmese_graphclust_model7_heavy.txt │ │ │ ├── Thai_codepoints_exclusive_model4_heavy.txt │ │ │ ├── Thai_codepoints_exclusive_model5_heavy.txt │ │ │ ├── Thai_codepoints_exclusive_model7_heavy.txt │ │ │ ├── Thai_graphclust_model4_heavy.txt │ │ │ ├── Thai_graphclust_model5_heavy.txt │ │ │ └── Thai_graphclust_model7_heavy.txt │ │ ├── pt.txt │ │ ├── root.txt │ │ ├── ru.txt │ │ ├── rules │ │ │ ├── README.md │ │ │ ├── char.txt │ │ │ ├── line.txt │ │ │ ├── line_cj.txt │ │ │ ├── line_loose.txt │ │ │ ├── line_loose_cj.txt │ │ │ ├── line_loose_phrase_cj.txt │ │ │ ├── line_normal.txt │ │ │ ├── line_normal_cj.txt │ │ │ ├── line_normal_phrase_cj.txt │ │ │ ├── line_phrase_cj.txt │ │ │ ├── sent.txt │ │ │ ├── sent_el.txt │ │ │ ├── title.txt │ │ │ ├── word.txt │ │ │ ├── word_POSIX.txt │ │ │ └── word_fi_sv.txt │ │ ├── sv.txt │ │ ├── zh.txt │ │ └── zh_Hant.txt │ ├── build.xml │ ├── cldr-icu-readme.txt │ ├── coll │ │ ├── LOCALE_DEPS.json │ │ ├── af.txt │ │ ├── am.txt │ │ ├── ar.txt │ │ ├── ar_SA.txt │ │ ├── ars.txt │ │ ├── as.txt │ │ ├── az.txt │ │ ├── be.txt │ │ ├── bg.txt │ │ ├── bn.txt │ │ ├── bo.txt │ │ ├── br.txt │ │ ├── bs.txt │ │ ├── bs_Cyrl.txt │ │ ├── ca.txt │ │ ├── ceb.txt │ │ ├── chr.txt │ │ ├── cs.txt │ │ ├── cy.txt │ │ ├── da.txt │ │ ├── de.txt │ │ ├── de_.txt │ │ ├── de_AT.txt │ │ ├── de__PHONEBOOK.txt │ │ ├── dsb.txt │ │ ├── dz.txt │ │ ├── ee.txt │ │ ├── el.txt │ │ ├── en.txt │ │ ├── en_US.txt │ │ ├── en_US_POSIX.txt │ │ ├── eo.txt │ │ ├── es.txt │ │ ├── es_.txt │ │ ├── es__TRADITIONAL.txt │ │ ├── et.txt │ │ ├── fa.txt │ │ ├── fa_AF.txt │ │ ├── ff.txt │ │ ├── ff_Adlm.txt │ │ ├── fi.txt │ │ ├── fil.txt │ │ ├── fo.txt │ │ ├── fr.txt │ │ ├── fr_CA.txt │ │ ├── fy.txt │ │ ├── ga.txt │ │ ├── gl.txt │ │ ├── gu.txt │ │ ├── ha.txt │ │ ├── haw.txt │ │ ├── he.txt │ │ ├── he_IL.txt │ │ ├── hi.txt │ │ ├── hr.txt │ │ ├── hsb.txt │ │ ├── hu.txt │ │ ├── hy.txt │ │ ├── id.txt │ │ ├── id_ID.txt │ │ ├── ig.txt │ │ ├── in.txt │ │ ├── in_ID.txt │ │ ├── is.txt │ │ ├── it.txt │ │ ├── iw.txt │ │ ├── iw_IL.txt │ │ ├── ja.txt │ │ ├── ka.txt │ │ ├── kk.txt │ │ ├── kl.txt │ │ ├── km.txt │ │ ├── kn.txt │ │ ├── ko.txt │ │ ├── kok.txt │ │ ├── ku.txt │ │ ├── ky.txt │ │ ├── lb.txt │ │ ├── lij.txt │ │ ├── lkt.txt │ │ ├── ln.txt │ │ ├── lo.txt │ │ ├── lt.txt │ │ ├── lv.txt │ │ ├── mk.txt │ │ ├── ml.txt │ │ ├── mn.txt │ │ ├── mo.txt │ │ ├── mr.txt │ │ ├── ms.txt │ │ ├── mt.txt │ │ ├── my.txt │ │ ├── nb.txt │ │ ├── nb_NO.txt │ │ ├── ne.txt │ │ ├── nl.txt │ │ ├── nn.txt │ │ ├── no.txt │ │ ├── no_NO.txt │ │ ├── nso.txt │ │ ├── om.txt │ │ ├── or.txt │ │ ├── pa.txt │ │ ├── pa_Guru.txt │ │ ├── pa_Guru_IN.txt │ │ ├── pa_IN.txt │ │ ├── pl.txt │ │ ├── ps.txt │ │ ├── pt.txt │ │ ├── ro.txt │ │ ├── root.txt │ │ ├── ru.txt │ │ ├── sa.txt │ │ ├── se.txt │ │ ├── sh.txt │ │ ├── sh_BA.txt │ │ ├── sh_CS.txt │ │ ├── sh_YU.txt │ │ ├── si.txt │ │ ├── sk.txt │ │ ├── sl.txt │ │ ├── smn.txt │ │ ├── sq.txt │ │ ├── sr.txt │ │ ├── sr_BA.txt │ │ ├── sr_Cyrl.txt │ │ ├── sr_Cyrl_BA.txt │ │ ├── sr_Cyrl_ME.txt │ │ ├── sr_Cyrl_RS.txt │ │ ├── sr_Latn.txt │ │ ├── sr_Latn_BA.txt │ │ ├── sr_Latn_RS.txt │ │ ├── sr_ME.txt │ │ ├── sr_RS.txt │ │ ├── st.txt │ │ ├── sv.txt │ │ ├── sw.txt │ │ ├── ta.txt │ │ ├── te.txt │ │ ├── th.txt │ │ ├── tk.txt │ │ ├── tn.txt │ │ ├── to.txt │ │ ├── tr.txt │ │ ├── ug.txt │ │ ├── uk.txt │ │ ├── ur.txt │ │ ├── uz.txt │ │ ├── vi.txt │ │ ├── wae.txt │ │ ├── wo.txt │ │ ├── wuu.txt │ │ ├── xh.txt │ │ ├── yi.txt │ │ ├── yo.txt │ │ ├── yue.txt │ │ ├── yue_CN.txt │ │ ├── yue_Hans.txt │ │ ├── yue_Hans_CN.txt │ │ ├── yue_Hant.txt │ │ ├── zh.txt │ │ ├── zh_CN.txt │ │ ├── zh_HK.txt │ │ ├── zh_Hans.txt │ │ ├── zh_Hans_CN.txt │ │ ├── zh_Hans_SG.txt │ │ ├── zh_Hant.txt │ │ ├── zh_Hant_HK.txt │ │ ├── zh_Hant_MO.txt │ │ ├── zh_Hant_TW.txt │ │ ├── zh_MO.txt │ │ ├── zh_SG.txt │ │ ├── zh_TW.txt │ │ └── zu.txt │ ├── curr │ │ ├── LOCALE_DEPS.json │ │ ├── af.txt │ │ ├── af_NA.txt │ │ ├── agq.txt │ │ ├── ain.txt │ │ ├── ak.txt │ │ ├── am.txt │ │ ├── apw.txt │ │ ├── ar.txt │ │ ├── ar_AE.txt │ │ ├── ar_DJ.txt │ │ ├── ar_ER.txt │ │ ├── ar_KM.txt │ │ ├── ar_SA.txt │ │ ├── ar_SO.txt │ │ ├── ar_SS.txt │ │ ├── arn.txt │ │ ├── ars.txt │ │ ├── as.txt │ │ ├── asa.txt │ │ ├── ast.txt │ │ ├── az.txt │ │ ├── az_AZ.txt │ │ ├── az_Cyrl.txt │ │ ├── az_Latn.txt │ │ ├── az_Latn_AZ.txt │ │ ├── ba.txt │ │ ├── bas.txt │ │ ├── be.txt │ │ ├── bem.txt │ │ ├── ber.txt │ │ ├── ber_Latn.txt │ │ ├── bez.txt │ │ ├── bg.txt │ │ ├── bgc.txt │ │ ├── bho.txt │ │ ├── blo.txt │ │ ├── bm.txt │ │ ├── bn.txt │ │ ├── bn_IN.txt │ │ ├── bo.txt │ │ ├── bo_IN.txt │ │ ├── br.txt │ │ ├── brx.txt │ │ ├── bs.txt │ │ ├── bs_BA.txt │ │ ├── bs_Cyrl.txt │ │ ├── bs_Latn.txt │ │ ├── bs_Latn_BA.txt │ │ ├── byn.txt │ │ ├── ca.txt │ │ ├── ca_FR.txt │ │ ├── ccp.txt │ │ ├── ce.txt │ │ ├── ceb.txt │ │ ├── cgg.txt │ │ ├── cho.txt │ │ ├── chr.txt │ │ ├── cic.txt │ │ ├── ckb.txt │ │ ├── co.txt │ │ ├── cs.txt │ │ ├── cst.txt │ │ ├── csw.txt │ │ ├── cv.txt │ │ ├── cy.txt │ │ ├── da.txt │ │ ├── dav.txt │ │ ├── de.txt │ │ ├── de_CH.txt │ │ ├── de_LI.txt │ │ ├── de_LU.txt │ │ ├── dje.txt │ │ ├── doi.txt │ │ ├── dsb.txt │ │ ├── dua.txt │ │ ├── dv.txt │ │ ├── dyo.txt │ │ ├── dz.txt │ │ ├── ebu.txt │ │ ├── ee.txt │ │ ├── el.txt │ │ ├── en.txt │ │ ├── en_001.txt │ │ ├── en_150.txt │ │ ├── en_AG.txt │ │ ├── en_AI.txt │ │ ├── en_AL.txt │ │ ├── en_AR.txt │ │ ├── en_AT.txt │ │ ├── en_AU.txt │ │ ├── en_BB.txt │ │ ├── en_BD.txt │ │ ├── en_BE.txt │ │ ├── en_BG.txt │ │ ├── en_BI.txt │ │ ├── en_BM.txt │ │ ├── en_BN.txt │ │ ├── en_BR.txt │ │ ├── en_BS.txt │ │ ├── en_BW.txt │ │ ├── en_BZ.txt │ │ ├── en_CA.txt │ │ ├── en_CC.txt │ │ ├── en_CH.txt │ │ ├── en_CK.txt │ │ ├── en_CL.txt │ │ ├── en_CM.txt │ │ ├── en_CN.txt │ │ ├── en_CO.txt │ │ ├── en_CV.txt │ │ ├── en_CX.txt │ │ ├── en_CY.txt │ │ ├── en_CZ.txt │ │ ├── en_DE.txt │ │ ├── en_DG.txt │ │ ├── en_DK.txt │ │ ├── en_DM.txt │ │ ├── en_EE.txt │ │ ├── en_ER.txt │ │ ├── en_FI.txt │ │ ├── en_FJ.txt │ │ ├── en_FK.txt │ │ ├── en_FM.txt │ │ ├── en_FR.txt │ │ ├── en_GB.txt │ │ ├── en_GD.txt │ │ ├── en_GG.txt │ │ ├── en_GH.txt │ │ ├── en_GI.txt │ │ ├── en_GM.txt │ │ ├── en_GR.txt │ │ ├── en_GY.txt │ │ ├── en_HK.txt │ │ ├── en_HU.txt │ │ ├── en_ID.txt │ │ ├── en_IE.txt │ │ ├── en_IL.txt │ │ ├── en_IM.txt │ │ ├── en_IN.txt │ │ ├── en_IO.txt │ │ ├── en_JE.txt │ │ ├── en_JM.txt │ │ ├── en_KE.txt │ │ ├── en_KI.txt │ │ ├── en_KN.txt │ │ ├── en_KY.txt │ │ ├── en_LC.txt │ │ ├── en_LR.txt │ │ ├── en_LS.txt │ │ ├── en_LT.txt │ │ ├── en_LV.txt │ │ ├── en_MG.txt │ │ ├── en_MM.txt │ │ ├── en_MO.txt │ │ ├── en_MS.txt │ │ ├── en_MT.txt │ │ ├── en_MU.txt │ │ ├── en_MV.txt │ │ ├── en_MW.txt │ │ ├── en_MX.txt │ │ ├── en_MY.txt │ │ ├── en_NA.txt │ │ ├── en_NF.txt │ │ ├── en_NG.txt │ │ ├── en_NH.txt │ │ ├── en_NL.txt │ │ ├── en_NO.txt │ │ ├── en_NR.txt │ │ ├── en_NU.txt │ │ ├── en_NZ.txt │ │ ├── en_PG.txt │ │ ├── en_PH.txt │ │ ├── en_PK.txt │ │ ├── en_PL.txt │ │ ├── en_PN.txt │ │ ├── en_PT.txt │ │ ├── en_PW.txt │ │ ├── en_RH.txt │ │ ├── en_RU.txt │ │ ├── en_RW.txt │ │ ├── en_SB.txt │ │ ├── en_SC.txt │ │ ├── en_SD.txt │ │ ├── en_SE.txt │ │ ├── en_SG.txt │ │ ├── en_SH.txt │ │ ├── en_SI.txt │ │ ├── en_SK.txt │ │ ├── en_SL.txt │ │ ├── en_SS.txt │ │ ├── en_SX.txt │ │ ├── en_SZ.txt │ │ ├── en_TC.txt │ │ ├── en_TH.txt │ │ ├── en_TK.txt │ │ ├── en_TO.txt │ │ ├── en_TR.txt │ │ ├── en_TT.txt │ │ ├── en_TV.txt │ │ ├── en_TW.txt │ │ ├── en_TZ.txt │ │ ├── en_UA.txt │ │ ├── en_UG.txt │ │ ├── en_VC.txt │ │ ├── en_VG.txt │ │ ├── en_VU.txt │ │ ├── en_WS.txt │ │ ├── en_ZA.txt │ │ ├── en_ZM.txt │ │ ├── en_ZW.txt │ │ ├── eo.txt │ │ ├── es.txt │ │ ├── es_419.txt │ │ ├── es_AG.txt │ │ ├── es_AR.txt │ │ ├── es_BB.txt │ │ ├── es_BM.txt │ │ ├── es_BO.txt │ │ ├── es_BQ.txt │ │ ├── es_BR.txt │ │ ├── es_BS.txt │ │ ├── es_BZ.txt │ │ ├── es_CA.txt │ │ ├── es_CL.txt │ │ ├── es_CO.txt │ │ ├── es_CR.txt │ │ ├── es_CU.txt │ │ ├── es_CW.txt │ │ ├── es_DM.txt │ │ ├── es_DO.txt │ │ ├── es_EC.txt │ │ ├── es_GD.txt │ │ ├── es_GQ.txt │ │ ├── es_GT.txt │ │ ├── es_GY.txt │ │ ├── es_HN.txt │ │ ├── es_HT.txt │ │ ├── es_KN.txt │ │ ├── es_KY.txt │ │ ├── es_LC.txt │ │ ├── es_MX.txt │ │ ├── es_NI.txt │ │ ├── es_PA.txt │ │ ├── es_PE.txt │ │ ├── es_PH.txt │ │ ├── es_PR.txt │ │ ├── es_PY.txt │ │ ├── es_SV.txt │ │ ├── es_TC.txt │ │ ├── es_TT.txt │ │ ├── es_US.txt │ │ ├── es_UY.txt │ │ ├── es_VC.txt │ │ ├── es_VE.txt │ │ ├── es_VG.txt │ │ ├── es_VI.txt │ │ ├── et.txt │ │ ├── eu.txt │ │ ├── ewo.txt │ │ ├── fa.txt │ │ ├── fa_AF.txt │ │ ├── ff.txt │ │ ├── ff_Adlm.txt │ │ ├── ff_Adlm_BF.txt │ │ ├── ff_Adlm_CM.txt │ │ ├── ff_Adlm_GH.txt │ │ ├── ff_Adlm_GM.txt │ │ ├── ff_Adlm_GW.txt │ │ ├── ff_Adlm_LR.txt │ │ ├── ff_Adlm_MR.txt │ │ ├── ff_Adlm_NE.txt │ │ ├── ff_Adlm_NG.txt │ │ ├── ff_Adlm_SL.txt │ │ ├── ff_Adlm_SN.txt │ │ ├── ff_CM.txt │ │ ├── ff_GN.txt │ │ ├── ff_Latn.txt │ │ ├── ff_Latn_CM.txt │ │ ├── ff_Latn_GH.txt │ │ ├── ff_Latn_GM.txt │ │ ├── ff_Latn_GN.txt │ │ ├── ff_Latn_LR.txt │ │ ├── ff_Latn_MR.txt │ │ ├── ff_Latn_NG.txt │ │ ├── ff_Latn_SL.txt │ │ ├── ff_Latn_SN.txt │ │ ├── ff_MR.txt │ │ ├── ff_SN.txt │ │ ├── fi.txt │ │ ├── fil.txt │ │ ├── fil_PH.txt │ │ ├── fo.txt │ │ ├── fo_DK.txt │ │ ├── fr.txt │ │ ├── fr_BI.txt │ │ ├── fr_CA.txt │ │ ├── fr_CD.txt │ │ ├── fr_CH.txt │ │ ├── fr_DJ.txt │ │ ├── fr_DZ.txt │ │ ├── fr_GN.txt │ │ ├── fr_HT.txt │ │ ├── fr_KM.txt │ │ ├── fr_LU.txt │ │ ├── fr_MG.txt │ │ ├── fr_MR.txt │ │ ├── fr_MU.txt │ │ ├── fr_RW.txt │ │ ├── fr_SC.txt │ │ ├── fr_SY.txt │ │ ├── fr_TN.txt │ │ ├── fr_VU.txt │ │ ├── fur.txt │ │ ├── fy.txt │ │ ├── ga.txt │ │ ├── gaa.txt │ │ ├── gd.txt │ │ ├── gez.txt │ │ ├── gez_ER.txt │ │ ├── gl.txt │ │ ├── gn.txt │ │ ├── gsw.txt │ │ ├── gu.txt │ │ ├── guz.txt │ │ ├── gv.txt │ │ ├── ha.txt │ │ ├── ha_GH.txt │ │ ├── haw.txt │ │ ├── hch.txt │ │ ├── he.txt │ │ ├── he_IL.txt │ │ ├── hi.txt │ │ ├── hi_Latn.txt │ │ ├── hmn.txt │ │ ├── hr.txt │ │ ├── hr_BA.txt │ │ ├── hsb.txt │ │ ├── ht.txt │ │ ├── hu.txt │ │ ├── hy.txt │ │ ├── ia.txt │ │ ├── id.txt │ │ ├── id_ID.txt │ │ ├── ie.txt │ │ ├── ig.txt │ │ ├── ii.txt │ │ ├── in.txt │ │ ├── in_ID.txt │ │ ├── inh.txt │ │ ├── io.txt │ │ ├── is.txt │ │ ├── isc.txt │ │ ├── it.txt │ │ ├── iu.txt │ │ ├── iw.txt │ │ ├── iw_IL.txt │ │ ├── ja.txt │ │ ├── jbo.txt │ │ ├── jgo.txt │ │ ├── jmc.txt │ │ ├── jv.txt │ │ ├── ka.txt │ │ ├── kab.txt │ │ ├── kaj.txt │ │ ├── kam.txt │ │ ├── kcg.txt │ │ ├── kde.txt │ │ ├── kea.txt │ │ ├── kgp.txt │ │ ├── khq.txt │ │ ├── ki.txt │ │ ├── kk.txt │ │ ├── kkj.txt │ │ ├── kl.txt │ │ ├── kln.txt │ │ ├── km.txt │ │ ├── kn.txt │ │ ├── ko.txt │ │ ├── kok.txt │ │ ├── kok_Latn.txt │ │ ├── kpe.txt │ │ ├── kpe_GN.txt │ │ ├── ks.txt │ │ ├── ks_Arab.txt │ │ ├── ks_Aran.txt │ │ ├── ks_Aran_IN.txt │ │ ├── ks_Deva.txt │ │ ├── ks_IN.txt │ │ ├── ksb.txt │ │ ├── ksf.txt │ │ ├── ksh.txt │ │ ├── ku.txt │ │ ├── kw.txt │ │ ├── kxv.txt │ │ ├── kxv_Deva.txt │ │ ├── kxv_IN.txt │ │ ├── kxv_Latn.txt │ │ ├── kxv_Latn_IN.txt │ │ ├── kxv_Orya.txt │ │ ├── kxv_Telu.txt │ │ ├── ky.txt │ │ ├── lag.txt │ │ ├── lb.txt │ │ ├── lg.txt │ │ ├── lij.txt │ │ ├── lkt.txt │ │ ├── lmo.txt │ │ ├── ln.txt │ │ ├── ln_AO.txt │ │ ├── lo.txt │ │ ├── lrc.txt │ │ ├── lt.txt │ │ ├── lu.txt │ │ ├── luo.txt │ │ ├── lut.txt │ │ ├── luy.txt │ │ ├── lv.txt │ │ ├── mai.txt │ │ ├── mas.txt │ │ ├── mas_TZ.txt │ │ ├── mer.txt │ │ ├── mfe.txt │ │ ├── mg.txt │ │ ├── mgh.txt │ │ ├── mgo.txt │ │ ├── mi.txt │ │ ├── mic.txt │ │ ├── mid.txt │ │ ├── mk.txt │ │ ├── ml.txt │ │ ├── mn.txt │ │ ├── mni.txt │ │ ├── mni_Beng.txt │ │ ├── mni_Beng_IN.txt │ │ ├── mni_IN.txt │ │ ├── mni_Mtei.txt │ │ ├── mo.txt │ │ ├── moh.txt │ │ ├── mr.txt │ │ ├── ms.txt │ │ ├── ms_Arab.txt │ │ ├── ms_Arab_BN.txt │ │ ├── ms_BN.txt │ │ ├── ms_ID.txt │ │ ├── ms_SG.txt │ │ ├── mt.txt │ │ ├── mua.txt │ │ ├── mus.txt │ │ ├── my.txt │ │ ├── myv.txt │ │ ├── mzn.txt │ │ ├── naq.txt │ │ ├── nb.txt │ │ ├── nd.txt │ │ ├── nds.txt │ │ ├── ne.txt │ │ ├── nez.txt │ │ ├── nl.txt │ │ ├── nl_AW.txt │ │ ├── nl_BQ.txt │ │ ├── nl_CW.txt │ │ ├── nl_SR.txt │ │ ├── nl_SX.txt │ │ ├── nmg.txt │ │ ├── nn.txt │ │ ├── nn_NO.txt │ │ ├── nnh.txt │ │ ├── nnp.txt │ │ ├── no.txt │ │ ├── no_NO.txt │ │ ├── no_NO_NY.txt │ │ ├── nqo.txt │ │ ├── nr.txt │ │ ├── nso.txt │ │ ├── nus.txt │ │ ├── nv.txt │ │ ├── ny.txt │ │ ├── nyn.txt │ │ ├── oc.txt │ │ ├── om.txt │ │ ├── om_KE.txt │ │ ├── or.txt │ │ ├── os.txt │ │ ├── os_RU.txt │ │ ├── osa.txt │ │ ├── pa.txt │ │ ├── pa_Arab.txt │ │ ├── pa_Aran.txt │ │ ├── pa_Aran_PK.txt │ │ ├── pa_Guru.txt │ │ ├── pa_Guru_IN.txt │ │ ├── pa_IN.txt │ │ ├── pa_PK.txt │ │ ├── pcm.txt │ │ ├── pl.txt │ │ ├── pqm.txt │ │ ├── prg.txt │ │ ├── ps.txt │ │ ├── ps_PK.txt │ │ ├── pt.txt │ │ ├── pt_AO.txt │ │ ├── pt_CH.txt │ │ ├── pt_CV.txt │ │ ├── pt_FR.txt │ │ ├── pt_GQ.txt │ │ ├── pt_GW.txt │ │ ├── pt_LU.txt │ │ ├── pt_MO.txt │ │ ├── pt_MZ.txt │ │ ├── pt_PT.txt │ │ ├── pt_ST.txt │ │ ├── pt_TL.txt │ │ ├── qu.txt │ │ ├── qu_BO.txt │ │ ├── qu_EC.txt │ │ ├── raj.txt │ │ ├── rej.txt │ │ ├── rej_Rjng.txt │ │ ├── rhg.txt │ │ ├── rm.txt │ │ ├── rn.txt │ │ ├── ro.txt │ │ ├── ro_MD.txt │ │ ├── rof.txt │ │ ├── root.txt │ │ ├── ru.txt │ │ ├── ru_BY.txt │ │ ├── ru_KG.txt │ │ ├── ru_KZ.txt │ │ ├── ru_MD.txt │ │ ├── rw.txt │ │ ├── rwk.txt │ │ ├── sa.txt │ │ ├── sah.txt │ │ ├── saq.txt │ │ ├── sat.txt │ │ ├── sat_Deva.txt │ │ ├── sat_IN.txt │ │ ├── sat_Olck.txt │ │ ├── sat_Olck_IN.txt │ │ ├── sbp.txt │ │ ├── sc.txt │ │ ├── scn.txt │ │ ├── sd.txt │ │ ├── sd_Arab.txt │ │ ├── sd_Arab_PK.txt │ │ ├── sd_Deva.txt │ │ ├── sd_Deva_IN.txt │ │ ├── sd_IN.txt │ │ ├── sd_PK.txt │ │ ├── se.txt │ │ ├── se_SE.txt │ │ ├── seh.txt │ │ ├── ses.txt │ │ ├── sg.txt │ │ ├── sh.txt │ │ ├── sh_BA.txt │ │ ├── sh_CS.txt │ │ ├── sh_YU.txt │ │ ├── shi.txt │ │ ├── shi_Latn.txt │ │ ├── shi_MA.txt │ │ ├── shi_Tfng.txt │ │ ├── shi_Tfng_MA.txt │ │ ├── shp.txt │ │ ├── si.txt │ │ ├── sjd.txt │ │ ├── sje.txt │ │ ├── sju.txt │ │ ├── sk.txt │ │ ├── sl.txt │ │ ├── sm.txt │ │ ├── smn.txt │ │ ├── sn.txt │ │ ├── so.txt │ │ ├── so_DJ.txt │ │ ├── so_ET.txt │ │ ├── so_KE.txt │ │ ├── sq.txt │ │ ├── sq_MK.txt │ │ ├── sr.txt │ │ ├── sr_BA.txt │ │ ├── sr_CS.txt │ │ ├── sr_Cyrl.txt │ │ ├── sr_Cyrl_BA.txt │ │ ├── sr_Cyrl_CS.txt │ │ ├── sr_Cyrl_RS.txt │ │ ├── sr_Cyrl_XK.txt │ │ ├── sr_Cyrl_YU.txt │ │ ├── sr_Latn.txt │ │ ├── sr_Latn_BA.txt │ │ ├── sr_Latn_CS.txt │ │ ├── sr_Latn_ME.txt │ │ ├── sr_Latn_RS.txt │ │ ├── sr_Latn_YU.txt │ │ ├── sr_ME.txt │ │ ├── sr_RS.txt │ │ ├── sr_XK.txt │ │ ├── sr_YU.txt │ │ ├── ss.txt │ │ ├── st.txt │ │ ├── st_LS.txt │ │ ├── su.txt │ │ ├── su_ID.txt │ │ ├── su_Latn.txt │ │ ├── su_Latn_ID.txt │ │ ├── supplementalData.txt │ │ ├── sv.txt │ │ ├── sw.txt │ │ ├── sw_CD.txt │ │ ├── sw_KE.txt │ │ ├── sw_UG.txt │ │ ├── syr.txt │ │ ├── szl.txt │ │ ├── ta.txt │ │ ├── ta_LK.txt │ │ ├── ta_MY.txt │ │ ├── ta_SG.txt │ │ ├── te.txt │ │ ├── teo.txt │ │ ├── teo_KE.txt │ │ ├── tg.txt │ │ ├── th.txt │ │ ├── ti.txt │ │ ├── ti_ER.txt │ │ ├── tig.txt │ │ ├── tk.txt │ │ ├── tl.txt │ │ ├── tl_PH.txt │ │ ├── tn.txt │ │ ├── tn_BW.txt │ │ ├── to.txt │ │ ├── tok.txt │ │ ├── tr.txt │ │ ├── trv.txt │ │ ├── ts.txt │ │ ├── tt.txt │ │ ├── twq.txt │ │ ├── tzm.txt │ │ ├── ug.txt │ │ ├── uk.txt │ │ ├── ur.txt │ │ ├── ur_Arab.txt │ │ ├── ur_Arab_IN.txt │ │ ├── ur_Aran.txt │ │ ├── ur_Aran_IN.txt │ │ ├── ur_Aran_PK.txt │ │ ├── ur_IN.txt │ │ ├── ur_PK.txt │ │ ├── uz.txt │ │ ├── uz_AF.txt │ │ ├── uz_Arab.txt │ │ ├── uz_Arab_AF.txt │ │ ├── uz_Cyrl.txt │ │ ├── uz_Latn.txt │ │ ├── uz_Latn_UZ.txt │ │ ├── uz_UZ.txt │ │ ├── vai.txt │ │ ├── vai_LR.txt │ │ ├── vai_Latn.txt │ │ ├── vai_Vaii.txt │ │ ├── vai_Vaii_LR.txt │ │ ├── ve.txt │ │ ├── vec.txt │ │ ├── vi.txt │ │ ├── vmw.txt │ │ ├── vun.txt │ │ ├── wa.txt │ │ ├── wae.txt │ │ ├── wal.txt │ │ ├── wo.txt │ │ ├── wuu.txt │ │ ├── xh.txt │ │ ├── xnr.txt │ │ ├── xog.txt │ │ ├── yav.txt │ │ ├── yi.txt │ │ ├── yo.txt │ │ ├── yo_BJ.txt │ │ ├── yrl.txt │ │ ├── yrl_CO.txt │ │ ├── yrl_VE.txt │ │ ├── yue.txt │ │ ├── yue_CN.txt │ │ ├── yue_HK.txt │ │ ├── yue_Hans.txt │ │ ├── yue_Hans_CN.txt │ │ ├── yue_Hant.txt │ │ ├── yue_Hant_HK.txt │ │ ├── za.txt │ │ ├── zgh.txt │ │ ├── zh.txt │ │ ├── zh_CN.txt │ │ ├── zh_HK.txt │ │ ├── zh_Hans.txt │ │ ├── zh_Hans_CN.txt │ │ ├── zh_Hans_HK.txt │ │ ├── zh_Hans_JP.txt │ │ ├── zh_Hans_MO.txt │ │ ├── zh_Hans_SG.txt │ │ ├── zh_Hant.txt │ │ ├── zh_Hant_CN.txt │ │ ├── zh_Hant_HK.txt │ │ ├── zh_Hant_MO.txt │ │ ├── zh_Hant_TW.txt │ │ ├── zh_JP.txt │ │ ├── zh_MO.txt │ │ ├── zh_SG.txt │ │ ├── zh_TW.txt │ │ └── zu.txt │ ├── dtd │ │ ├── cldr-35.1 │ │ │ └── common │ │ │ │ └── dtd │ │ │ │ ├── ldml.dtd │ │ │ │ └── ldmlICU.dtd │ │ ├── cldr-40 │ │ │ └── common │ │ │ │ └── dtd │ │ │ │ ├── ldml.dtd │ │ │ │ └── ldmlICU.dtd │ │ └── cldr │ │ │ └── common │ │ │ └── dtd │ │ │ ├── ldml.dtd │ │ │ └── ldmlICU.dtd │ ├── icu4j-readme.txt │ ├── icupkg.inc.in │ ├── in │ │ ├── base_in │ │ │ ├── nfc.nrm │ │ │ ├── nfkc.nrm │ │ │ ├── nfkc_cf.nrm │ │ │ ├── ubidi.icu │ │ │ ├── ucase.icu │ │ │ ├── ulayout.icu │ │ │ ├── uprops.icu │ │ │ └── uts46.nrm │ │ ├── coll │ │ │ ├── ucadata-implicithan-icu4x.icu │ │ │ ├── ucadata-implicithan.icu │ │ │ ├── ucadata-unihan-icu4x.icu │ │ │ └── ucadata-unihan.icu │ │ ├── nfc.nrm │ │ ├── nfkc.nrm │ │ ├── nfkc_cf.nrm │ │ ├── nfkc_scf.nrm │ │ ├── pnames.icu │ │ ├── ubidi.icu │ │ ├── ucase.icu │ │ ├── uemoji.icu │ │ ├── ulayout.icu │ │ ├── unames.icu │ │ ├── uprops.icu │ │ └── uts46.nrm │ ├── inputFiles.xcfilelist │ ├── lang │ │ ├── LOCALE_DEPS.json │ │ ├── af.txt │ │ ├── agq.txt │ │ ├── ain.txt │ │ ├── ak.txt │ │ ├── am.txt │ │ ├── apw.txt │ │ ├── ar.txt │ │ ├── ar_EG.txt │ │ ├── ar_LY.txt │ │ ├── ar_SA.txt │ │ ├── arn.txt │ │ ├── ars.txt │ │ ├── as.txt │ │ ├── asa.txt │ │ ├── ast.txt │ │ ├── az.txt │ │ ├── az_AZ.txt │ │ ├── az_Cyrl.txt │ │ ├── az_Latn.txt │ │ ├── az_Latn_AZ.txt │ │ ├── ba.txt │ │ ├── bas.txt │ │ ├── be.txt │ │ ├── bem.txt │ │ ├── ber.txt │ │ ├── ber_Latn.txt │ │ ├── bez.txt │ │ ├── bg.txt │ │ ├── bgc.txt │ │ ├── bho.txt │ │ ├── blo.txt │ │ ├── bm.txt │ │ ├── bn.txt │ │ ├── bn_IN.txt │ │ ├── bo.txt │ │ ├── br.txt │ │ ├── brx.txt │ │ ├── bs.txt │ │ ├── bs_BA.txt │ │ ├── bs_Cyrl.txt │ │ ├── bs_Latn.txt │ │ ├── bs_Latn_BA.txt │ │ ├── byn.txt │ │ ├── ca.txt │ │ ├── ccp.txt │ │ ├── ce.txt │ │ ├── ceb.txt │ │ ├── cgg.txt │ │ ├── cho.txt │ │ ├── chr.txt │ │ ├── cic.txt │ │ ├── ckb.txt │ │ ├── co.txt │ │ ├── cs.txt │ │ ├── cst.txt │ │ ├── csw.txt │ │ ├── cv.txt │ │ ├── cy.txt │ │ ├── da.txt │ │ ├── dav.txt │ │ ├── de.txt │ │ ├── de_AT.txt │ │ ├── de_CH.txt │ │ ├── dje.txt │ │ ├── doi.txt │ │ ├── dsb.txt │ │ ├── dua.txt │ │ ├── dv.txt │ │ ├── dyo.txt │ │ ├── dz.txt │ │ ├── ebu.txt │ │ ├── ee.txt │ │ ├── el.txt │ │ ├── en.txt │ │ ├── en_001.txt │ │ ├── en_150.txt │ │ ├── en_AG.txt │ │ ├── en_AI.txt │ │ ├── en_AL.txt │ │ ├── en_AR.txt │ │ ├── en_AT.txt │ │ ├── en_AU.txt │ │ ├── en_BB.txt │ │ ├── en_BD.txt │ │ ├── en_BE.txt │ │ ├── en_BG.txt │ │ ├── en_BM.txt │ │ ├── en_BN.txt │ │ ├── en_BR.txt │ │ ├── en_BS.txt │ │ ├── en_BW.txt │ │ ├── en_BZ.txt │ │ ├── en_CA.txt │ │ ├── en_CC.txt │ │ ├── en_CH.txt │ │ ├── en_CK.txt │ │ ├── en_CM.txt │ │ ├── en_CV.txt │ │ ├── en_CX.txt │ │ ├── en_CY.txt │ │ ├── en_CZ.txt │ │ ├── en_DE.txt │ │ ├── en_DG.txt │ │ ├── en_DK.txt │ │ ├── en_DM.txt │ │ ├── en_EE.txt │ │ ├── en_ER.txt │ │ ├── en_FI.txt │ │ ├── en_FJ.txt │ │ ├── en_FK.txt │ │ ├── en_FM.txt │ │ ├── en_FR.txt │ │ ├── en_GB.txt │ │ ├── en_GD.txt │ │ ├── en_GG.txt │ │ ├── en_GH.txt │ │ ├── en_GI.txt │ │ ├── en_GM.txt │ │ ├── en_GR.txt │ │ ├── en_GY.txt │ │ ├── en_HK.txt │ │ ├── en_HU.txt │ │ ├── en_ID.txt │ │ ├── en_IE.txt │ │ ├── en_IL.txt │ │ ├── en_IM.txt │ │ ├── en_IN.txt │ │ ├── en_IO.txt │ │ ├── en_JE.txt │ │ ├── en_JM.txt │ │ ├── en_KE.txt │ │ ├── en_KI.txt │ │ ├── en_KN.txt │ │ ├── en_KY.txt │ │ ├── en_LC.txt │ │ ├── en_LR.txt │ │ ├── en_LS.txt │ │ ├── en_LT.txt │ │ ├── en_LV.txt │ │ ├── en_MG.txt │ │ ├── en_MM.txt │ │ ├── en_MO.txt │ │ ├── en_MS.txt │ │ ├── en_MT.txt │ │ ├── en_MU.txt │ │ ├── en_MV.txt │ │ ├── en_MW.txt │ │ ├── en_MY.txt │ │ ├── en_NA.txt │ │ ├── en_NF.txt │ │ ├── en_NG.txt │ │ ├── en_NH.txt │ │ ├── en_NL.txt │ │ ├── en_NO.txt │ │ ├── en_NR.txt │ │ ├── en_NU.txt │ │ ├── en_NZ.txt │ │ ├── en_PG.txt │ │ ├── en_PK.txt │ │ ├── en_PL.txt │ │ ├── en_PN.txt │ │ ├── en_PT.txt │ │ ├── en_PW.txt │ │ ├── en_RH.txt │ │ ├── en_RU.txt │ │ ├── en_RW.txt │ │ ├── en_SB.txt │ │ ├── en_SC.txt │ │ ├── en_SD.txt │ │ ├── en_SE.txt │ │ ├── en_SG.txt │ │ ├── en_SH.txt │ │ ├── en_SI.txt │ │ ├── en_SK.txt │ │ ├── en_SL.txt │ │ ├── en_SS.txt │ │ ├── en_SX.txt │ │ ├── en_SZ.txt │ │ ├── en_TC.txt │ │ ├── en_TH.txt │ │ ├── en_TK.txt │ │ ├── en_TO.txt │ │ ├── en_TT.txt │ │ ├── en_TV.txt │ │ ├── en_TZ.txt │ │ ├── en_UA.txt │ │ ├── en_UG.txt │ │ ├── en_VC.txt │ │ ├── en_VG.txt │ │ ├── en_VU.txt │ │ ├── en_WS.txt │ │ ├── en_ZA.txt │ │ ├── en_ZM.txt │ │ ├── en_ZW.txt │ │ ├── eo.txt │ │ ├── es.txt │ │ ├── es_419.txt │ │ ├── es_AG.txt │ │ ├── es_AR.txt │ │ ├── es_BB.txt │ │ ├── es_BM.txt │ │ ├── es_BO.txt │ │ ├── es_BQ.txt │ │ ├── es_BR.txt │ │ ├── es_BS.txt │ │ ├── es_BZ.txt │ │ ├── es_CA.txt │ │ ├── es_CL.txt │ │ ├── es_CO.txt │ │ ├── es_CR.txt │ │ ├── es_CU.txt │ │ ├── es_CW.txt │ │ ├── es_DM.txt │ │ ├── es_DO.txt │ │ ├── es_EC.txt │ │ ├── es_GD.txt │ │ ├── es_GT.txt │ │ ├── es_GY.txt │ │ ├── es_HN.txt │ │ ├── es_HT.txt │ │ ├── es_KN.txt │ │ ├── es_KY.txt │ │ ├── es_LC.txt │ │ ├── es_MX.txt │ │ ├── es_NI.txt │ │ ├── es_PA.txt │ │ ├── es_PE.txt │ │ ├── es_PR.txt │ │ ├── es_PY.txt │ │ ├── es_SV.txt │ │ ├── es_TC.txt │ │ ├── es_TT.txt │ │ ├── es_US.txt │ │ ├── es_UY.txt │ │ ├── es_VC.txt │ │ ├── es_VE.txt │ │ ├── es_VG.txt │ │ ├── es_VI.txt │ │ ├── et.txt │ │ ├── eu.txt │ │ ├── ewo.txt │ │ ├── fa.txt │ │ ├── fa_AF.txt │ │ ├── ff.txt │ │ ├── ff_Adlm.txt │ │ ├── ff_CM.txt │ │ ├── ff_GN.txt │ │ ├── ff_Latn.txt │ │ ├── ff_Latn_CM.txt │ │ ├── ff_Latn_GN.txt │ │ ├── ff_Latn_MR.txt │ │ ├── ff_Latn_SN.txt │ │ ├── ff_MR.txt │ │ ├── ff_SN.txt │ │ ├── fi.txt │ │ ├── fil.txt │ │ ├── fil_PH.txt │ │ ├── fo.txt │ │ ├── fr.txt │ │ ├── fr_BE.txt │ │ ├── fr_CA.txt │ │ ├── fr_CH.txt │ │ ├── fr_HT.txt │ │ ├── fur.txt │ │ ├── fy.txt │ │ ├── ga.txt │ │ ├── gaa.txt │ │ ├── gd.txt │ │ ├── gez.txt │ │ ├── gl.txt │ │ ├── gn.txt │ │ ├── gsw.txt │ │ ├── gu.txt │ │ ├── guz.txt │ │ ├── gv.txt │ │ ├── ha.txt │ │ ├── haw.txt │ │ ├── hch.txt │ │ ├── he.txt │ │ ├── he_IL.txt │ │ ├── hi.txt │ │ ├── hi_Latn.txt │ │ ├── hmn.txt │ │ ├── hr.txt │ │ ├── hsb.txt │ │ ├── ht.txt │ │ ├── hu.txt │ │ ├── hy.txt │ │ ├── ia.txt │ │ ├── id.txt │ │ ├── id_ID.txt │ │ ├── ie.txt │ │ ├── ig.txt │ │ ├── ii.txt │ │ ├── in.txt │ │ ├── in_ID.txt │ │ ├── inh.txt │ │ ├── io.txt │ │ ├── is.txt │ │ ├── isc.txt │ │ ├── it.txt │ │ ├── iu.txt │ │ ├── iw.txt │ │ ├── iw_IL.txt │ │ ├── ja.txt │ │ ├── jbo.txt │ │ ├── jgo.txt │ │ ├── jmc.txt │ │ ├── jv.txt │ │ ├── ka.txt │ │ ├── kab.txt │ │ ├── kaj.txt │ │ ├── kam.txt │ │ ├── kcg.txt │ │ ├── kde.txt │ │ ├── kea.txt │ │ ├── kgp.txt │ │ ├── khq.txt │ │ ├── ki.txt │ │ ├── kk.txt │ │ ├── kkj.txt │ │ ├── kl.txt │ │ ├── kln.txt │ │ ├── km.txt │ │ ├── kn.txt │ │ ├── ko.txt │ │ ├── kok.txt │ │ ├── kok_Latn.txt │ │ ├── kpe.txt │ │ ├── ks.txt │ │ ├── ks_Arab.txt │ │ ├── ks_Aran.txt │ │ ├── ks_Aran_IN.txt │ │ ├── ks_Deva.txt │ │ ├── ks_IN.txt │ │ ├── ksb.txt │ │ ├── ksf.txt │ │ ├── ksh.txt │ │ ├── ku.txt │ │ ├── kw.txt │ │ ├── kxv.txt │ │ ├── kxv_Deva.txt │ │ ├── kxv_IN.txt │ │ ├── kxv_Latn.txt │ │ ├── kxv_Latn_IN.txt │ │ ├── kxv_Orya.txt │ │ ├── kxv_Telu.txt │ │ ├── ky.txt │ │ ├── lag.txt │ │ ├── lb.txt │ │ ├── lg.txt │ │ ├── lij.txt │ │ ├── lkt.txt │ │ ├── lmo.txt │ │ ├── ln.txt │ │ ├── lo.txt │ │ ├── lrc.txt │ │ ├── lt.txt │ │ ├── lu.txt │ │ ├── luo.txt │ │ ├── lut.txt │ │ ├── luy.txt │ │ ├── lv.txt │ │ ├── mai.txt │ │ ├── mas.txt │ │ ├── mer.txt │ │ ├── mfe.txt │ │ ├── mg.txt │ │ ├── mgh.txt │ │ ├── mgo.txt │ │ ├── mi.txt │ │ ├── mic.txt │ │ ├── mid.txt │ │ ├── mk.txt │ │ ├── ml.txt │ │ ├── mn.txt │ │ ├── mni.txt │ │ ├── mni_Beng.txt │ │ ├── mni_Beng_IN.txt │ │ ├── mni_IN.txt │ │ ├── mni_Mtei.txt │ │ ├── mo.txt │ │ ├── moh.txt │ │ ├── mr.txt │ │ ├── ms.txt │ │ ├── ms_Arab.txt │ │ ├── mt.txt │ │ ├── mua.txt │ │ ├── mus.txt │ │ ├── my.txt │ │ ├── myv.txt │ │ ├── mzn.txt │ │ ├── naq.txt │ │ ├── nb.txt │ │ ├── nd.txt │ │ ├── nds.txt │ │ ├── ne.txt │ │ ├── nez.txt │ │ ├── nl.txt │ │ ├── nmg.txt │ │ ├── nn.txt │ │ ├── nn_NO.txt │ │ ├── nnh.txt │ │ ├── nnp.txt │ │ ├── no.txt │ │ ├── no_NO.txt │ │ ├── no_NO_NY.txt │ │ ├── nqo.txt │ │ ├── nr.txt │ │ ├── nso.txt │ │ ├── nus.txt │ │ ├── nv.txt │ │ ├── ny.txt │ │ ├── nyn.txt │ │ ├── oc.txt │ │ ├── om.txt │ │ ├── or.txt │ │ ├── os.txt │ │ ├── osa.txt │ │ ├── pa.txt │ │ ├── pa_Arab.txt │ │ ├── pa_Aran.txt │ │ ├── pa_Aran_PK.txt │ │ ├── pa_Guru.txt │ │ ├── pa_Guru_IN.txt │ │ ├── pa_IN.txt │ │ ├── pa_PK.txt │ │ ├── pcm.txt │ │ ├── pl.txt │ │ ├── pqm.txt │ │ ├── prg.txt │ │ ├── ps.txt │ │ ├── ps_PK.txt │ │ ├── pt.txt │ │ ├── pt_AO.txt │ │ ├── pt_CH.txt │ │ ├── pt_CV.txt │ │ ├── pt_FR.txt │ │ ├── pt_GQ.txt │ │ ├── pt_GW.txt │ │ ├── pt_LU.txt │ │ ├── pt_MO.txt │ │ ├── pt_MZ.txt │ │ ├── pt_PT.txt │ │ ├── pt_ST.txt │ │ ├── pt_TL.txt │ │ ├── qu.txt │ │ ├── raj.txt │ │ ├── rej.txt │ │ ├── rej_Rjng.txt │ │ ├── rhg.txt │ │ ├── rm.txt │ │ ├── rn.txt │ │ ├── ro.txt │ │ ├── ro_MD.txt │ │ ├── rof.txt │ │ ├── root.txt │ │ ├── ru.txt │ │ ├── rw.txt │ │ ├── rwk.txt │ │ ├── sa.txt │ │ ├── sah.txt │ │ ├── saq.txt │ │ ├── sat.txt │ │ ├── sat_Deva.txt │ │ ├── sat_IN.txt │ │ ├── sat_Olck.txt │ │ ├── sat_Olck_IN.txt │ │ ├── sbp.txt │ │ ├── sc.txt │ │ ├── scn.txt │ │ ├── sd.txt │ │ ├── sd_Arab.txt │ │ ├── sd_Arab_PK.txt │ │ ├── sd_Deva.txt │ │ ├── sd_Deva_IN.txt │ │ ├── sd_IN.txt │ │ ├── sd_PK.txt │ │ ├── se.txt │ │ ├── se_FI.txt │ │ ├── seh.txt │ │ ├── ses.txt │ │ ├── sg.txt │ │ ├── sh.txt │ │ ├── sh_BA.txt │ │ ├── sh_CS.txt │ │ ├── sh_YU.txt │ │ ├── shi.txt │ │ ├── shi_Latn.txt │ │ ├── shi_MA.txt │ │ ├── shi_Tfng.txt │ │ ├── shi_Tfng_MA.txt │ │ ├── shp.txt │ │ ├── si.txt │ │ ├── sjd.txt │ │ ├── sje.txt │ │ ├── sju.txt │ │ ├── sk.txt │ │ ├── sl.txt │ │ ├── sm.txt │ │ ├── smn.txt │ │ ├── sn.txt │ │ ├── so.txt │ │ ├── sq.txt │ │ ├── sr.txt │ │ ├── sr_BA.txt │ │ ├── sr_CS.txt │ │ ├── sr_Cyrl.txt │ │ ├── sr_Cyrl_BA.txt │ │ ├── sr_Cyrl_CS.txt │ │ ├── sr_Cyrl_ME.txt │ │ ├── sr_Cyrl_RS.txt │ │ ├── sr_Cyrl_XK.txt │ │ ├── sr_Cyrl_YU.txt │ │ ├── sr_Latn.txt │ │ ├── sr_Latn_BA.txt │ │ ├── sr_Latn_CS.txt │ │ ├── sr_Latn_ME.txt │ │ ├── sr_Latn_RS.txt │ │ ├── sr_Latn_XK.txt │ │ ├── sr_Latn_YU.txt │ │ ├── sr_ME.txt │ │ ├── sr_RS.txt │ │ ├── sr_XK.txt │ │ ├── sr_YU.txt │ │ ├── ss.txt │ │ ├── st.txt │ │ ├── su.txt │ │ ├── su_ID.txt │ │ ├── su_Latn.txt │ │ ├── su_Latn_ID.txt │ │ ├── sv.txt │ │ ├── sv_FI.txt │ │ ├── sw.txt │ │ ├── sw_CD.txt │ │ ├── sw_KE.txt │ │ ├── syr.txt │ │ ├── szl.txt │ │ ├── ta.txt │ │ ├── te.txt │ │ ├── teo.txt │ │ ├── tg.txt │ │ ├── th.txt │ │ ├── ti.txt │ │ ├── ti_ER.txt │ │ ├── tig.txt │ │ ├── tk.txt │ │ ├── tl.txt │ │ ├── tl_PH.txt │ │ ├── tn.txt │ │ ├── to.txt │ │ ├── tok.txt │ │ ├── tr.txt │ │ ├── trv.txt │ │ ├── ts.txt │ │ ├── tt.txt │ │ ├── twq.txt │ │ ├── tzm.txt │ │ ├── ug.txt │ │ ├── uk.txt │ │ ├── ur.txt │ │ ├── ur_Arab.txt │ │ ├── ur_Arab_IN.txt │ │ ├── ur_Aran.txt │ │ ├── ur_Aran_IN.txt │ │ ├── ur_Aran_PK.txt │ │ ├── ur_IN.txt │ │ ├── ur_PK.txt │ │ ├── uz.txt │ │ ├── uz_AF.txt │ │ ├── uz_Arab.txt │ │ ├── uz_Arab_AF.txt │ │ ├── uz_Cyrl.txt │ │ ├── uz_Latn.txt │ │ ├── uz_Latn_UZ.txt │ │ ├── uz_UZ.txt │ │ ├── vai.txt │ │ ├── vai_LR.txt │ │ ├── vai_Latn.txt │ │ ├── vai_Vaii.txt │ │ ├── vai_Vaii_LR.txt │ │ ├── ve.txt │ │ ├── vec.txt │ │ ├── vi.txt │ │ ├── vmw.txt │ │ ├── vun.txt │ │ ├── wa.txt │ │ ├── wae.txt │ │ ├── wal.txt │ │ ├── wo.txt │ │ ├── wuu.txt │ │ ├── xh.txt │ │ ├── xnr.txt │ │ ├── xog.txt │ │ ├── yav.txt │ │ ├── yi.txt │ │ ├── yo.txt │ │ ├── yo_BJ.txt │ │ ├── yrl.txt │ │ ├── yrl_CO.txt │ │ ├── yrl_VE.txt │ │ ├── yue.txt │ │ ├── yue_CN.txt │ │ ├── yue_HK.txt │ │ ├── yue_Hans.txt │ │ ├── yue_Hans_CN.txt │ │ ├── yue_Hant.txt │ │ ├── yue_Hant_HK.txt │ │ ├── za.txt │ │ ├── zgh.txt │ │ ├── zh.txt │ │ ├── zh_CN.txt │ │ ├── zh_HK.txt │ │ ├── zh_Hans.txt │ │ ├── zh_Hans_CN.txt │ │ ├── zh_Hans_JP.txt │ │ ├── zh_Hans_SG.txt │ │ ├── zh_Hant.txt │ │ ├── zh_Hant_HK.txt │ │ ├── zh_Hant_MO.txt │ │ ├── zh_Hant_TW.txt │ │ ├── zh_JP.txt │ │ ├── zh_MO.txt │ │ ├── zh_SG.txt │ │ ├── zh_TW.txt │ │ └── zu.txt │ ├── locales │ │ ├── LOCALE_DEPS.json │ │ ├── af.txt │ │ ├── af_NA.txt │ │ ├── af_ZA.txt │ │ ├── agq.txt │ │ ├── agq_CM.txt │ │ ├── ain.txt │ │ ├── ain_JP.txt │ │ ├── ak.txt │ │ ├── ak_GH.txt │ │ ├── am.txt │ │ ├── am_ET.txt │ │ ├── apw.txt │ │ ├── apw_US.txt │ │ ├── ar.txt │ │ ├── ar_001.txt │ │ ├── ar_AE.txt │ │ ├── ar_BH.txt │ │ ├── ar_DJ.txt │ │ ├── ar_DZ.txt │ │ ├── ar_EG.txt │ │ ├── ar_EH.txt │ │ ├── ar_ER.txt │ │ ├── ar_IL.txt │ │ ├── ar_IQ.txt │ │ ├── ar_JO.txt │ │ ├── ar_KM.txt │ │ ├── ar_KW.txt │ │ ├── ar_LB.txt │ │ ├── ar_LY.txt │ │ ├── ar_MA.txt │ │ ├── ar_MR.txt │ │ ├── ar_OM.txt │ │ ├── ar_PS.txt │ │ ├── ar_QA.txt │ │ ├── ar_SA.txt │ │ ├── ar_SD.txt │ │ ├── ar_SO.txt │ │ ├── ar_SS.txt │ │ ├── ar_SY.txt │ │ ├── ar_TD.txt │ │ ├── ar_TN.txt │ │ ├── ar_YE.txt │ │ ├── arn.txt │ │ ├── arn_CL.txt │ │ ├── ars.txt │ │ ├── as.txt │ │ ├── as_IN.txt │ │ ├── asa.txt │ │ ├── asa_TZ.txt │ │ ├── ast.txt │ │ ├── ast_ES.txt │ │ ├── az.txt │ │ ├── az_AZ.txt │ │ ├── az_Cyrl.txt │ │ ├── az_Cyrl_AZ.txt │ │ ├── az_Latn.txt │ │ ├── az_Latn_AZ.txt │ │ ├── ba.txt │ │ ├── ba_RU.txt │ │ ├── bas.txt │ │ ├── bas_CM.txt │ │ ├── be.txt │ │ ├── be_BY.txt │ │ ├── bem.txt │ │ ├── bem_ZM.txt │ │ ├── ber.txt │ │ ├── ber_Latn.txt │ │ ├── ber_Latn_MA.txt │ │ ├── ber_Tfng.txt │ │ ├── ber_Tfng_MA.txt │ │ ├── bez.txt │ │ ├── bez_TZ.txt │ │ ├── bg.txt │ │ ├── bg_BG.txt │ │ ├── bgc.txt │ │ ├── bgc_IN.txt │ │ ├── bho.txt │ │ ├── bho_IN.txt │ │ ├── blo.txt │ │ ├── blo_BJ.txt │ │ ├── bm.txt │ │ ├── bm_ML.txt │ │ ├── bn.txt │ │ ├── bn_BD.txt │ │ ├── bn_IN.txt │ │ ├── bo.txt │ │ ├── bo_CN.txt │ │ ├── bo_IN.txt │ │ ├── br.txt │ │ ├── br_FR.txt │ │ ├── brx.txt │ │ ├── brx_IN.txt │ │ ├── bs.txt │ │ ├── bs_BA.txt │ │ ├── bs_Cyrl.txt │ │ ├── bs_Cyrl_BA.txt │ │ ├── bs_Latn.txt │ │ ├── bs_Latn_BA.txt │ │ ├── byn.txt │ │ ├── byn_ER.txt │ │ ├── ca.txt │ │ ├── ca_AD.txt │ │ ├── ca_ES.txt │ │ ├── ca_FR.txt │ │ ├── ca_IT.txt │ │ ├── ccp.txt │ │ ├── ccp_BD.txt │ │ ├── ccp_IN.txt │ │ ├── ce.txt │ │ ├── ce_RU.txt │ │ ├── ceb.txt │ │ ├── ceb_PH.txt │ │ ├── cgg.txt │ │ ├── cgg_UG.txt │ │ ├── cho.txt │ │ ├── cho_US.txt │ │ ├── chr.txt │ │ ├── chr_US.txt │ │ ├── cic.txt │ │ ├── cic_US.txt │ │ ├── ckb.txt │ │ ├── ckb_IQ.txt │ │ ├── ckb_IR.txt │ │ ├── co.txt │ │ ├── co_FR.txt │ │ ├── cs.txt │ │ ├── cs_CZ.txt │ │ ├── cst.txt │ │ ├── csw.txt │ │ ├── csw_CA.txt │ │ ├── cv.txt │ │ ├── cv_RU.txt │ │ ├── cy.txt │ │ ├── cy_GB.txt │ │ ├── da.txt │ │ ├── da_DK.txt │ │ ├── da_GL.txt │ │ ├── dav.txt │ │ ├── dav_KE.txt │ │ ├── de.txt │ │ ├── de_AT.txt │ │ ├── de_BE.txt │ │ ├── de_CH.txt │ │ ├── de_DE.txt │ │ ├── de_IT.txt │ │ ├── de_LI.txt │ │ ├── de_LU.txt │ │ ├── dje.txt │ │ ├── dje_NE.txt │ │ ├── doi.txt │ │ ├── doi_IN.txt │ │ ├── dsb.txt │ │ ├── dsb_DE.txt │ │ ├── dua.txt │ │ ├── dua_CM.txt │ │ ├── dv.txt │ │ ├── dv_MV.txt │ │ ├── dyo.txt │ │ ├── dyo_SN.txt │ │ ├── dz.txt │ │ ├── dz_BT.txt │ │ ├── ebu.txt │ │ ├── ebu_KE.txt │ │ ├── ee.txt │ │ ├── ee_GH.txt │ │ ├── ee_TG.txt │ │ ├── el.txt │ │ ├── el_CY.txt │ │ ├── el_GR.txt │ │ ├── en.txt │ │ ├── en_001.txt │ │ ├── en_150.txt │ │ ├── en_AE.txt │ │ ├── en_AG.txt │ │ ├── en_AI.txt │ │ ├── en_AL.txt │ │ ├── en_AR.txt │ │ ├── en_AS.txt │ │ ├── en_AT.txt │ │ ├── en_AU.txt │ │ ├── en_BB.txt │ │ ├── en_BD.txt │ │ ├── en_BE.txt │ │ ├── en_BG.txt │ │ ├── en_BI.txt │ │ ├── en_BM.txt │ │ ├── en_BN.txt │ │ ├── en_BR.txt │ │ ├── en_BS.txt │ │ ├── en_BW.txt │ │ ├── en_BZ.txt │ │ ├── en_CA.txt │ │ ├── en_CC.txt │ │ ├── en_CH.txt │ │ ├── en_CK.txt │ │ ├── en_CL.txt │ │ ├── en_CM.txt │ │ ├── en_CN.txt │ │ ├── en_CO.txt │ │ ├── en_CV.txt │ │ ├── en_CX.txt │ │ ├── en_CY.txt │ │ ├── en_CZ.txt │ │ ├── en_DE.txt │ │ ├── en_DG.txt │ │ ├── en_DK.txt │ │ ├── en_DM.txt │ │ ├── en_EE.txt │ │ ├── en_ER.txt │ │ ├── en_FI.txt │ │ ├── en_FJ.txt │ │ ├── en_FK.txt │ │ ├── en_FM.txt │ │ ├── en_FR.txt │ │ ├── en_GB.txt │ │ ├── en_GD.txt │ │ ├── en_GG.txt │ │ ├── en_GH.txt │ │ ├── en_GI.txt │ │ ├── en_GM.txt │ │ ├── en_GR.txt │ │ ├── en_GU.txt │ │ ├── en_GY.txt │ │ ├── en_HK.txt │ │ ├── en_HU.txt │ │ ├── en_ID.txt │ │ ├── en_IE.txt │ │ ├── en_IL.txt │ │ ├── en_IM.txt │ │ ├── en_IN.txt │ │ ├── en_IO.txt │ │ ├── en_JE.txt │ │ ├── en_JM.txt │ │ ├── en_JP.txt │ │ ├── en_KE.txt │ │ ├── en_KI.txt │ │ ├── en_KN.txt │ │ ├── en_KR.txt │ │ ├── en_KY.txt │ │ ├── en_LC.txt │ │ ├── en_LR.txt │ │ ├── en_LS.txt │ │ ├── en_LT.txt │ │ ├── en_LV.txt │ │ ├── en_MG.txt │ │ ├── en_MH.txt │ │ ├── en_MM.txt │ │ ├── en_MO.txt │ │ ├── en_MP.txt │ │ ├── en_MS.txt │ │ ├── en_MT.txt │ │ ├── en_MU.txt │ │ ├── en_MV.txt │ │ ├── en_MW.txt │ │ ├── en_MX.txt │ │ ├── en_MY.txt │ │ ├── en_NA.txt │ │ ├── en_NF.txt │ │ ├── en_NG.txt │ │ ├── en_NH.txt │ │ ├── en_NL.txt │ │ ├── en_NO.txt │ │ ├── en_NR.txt │ │ ├── en_NU.txt │ │ ├── en_NZ.txt │ │ ├── en_PG.txt │ │ ├── en_PH.txt │ │ ├── en_PK.txt │ │ ├── en_PL.txt │ │ ├── en_PN.txt │ │ ├── en_PR.txt │ │ ├── en_PT.txt │ │ ├── en_PW.txt │ │ ├── en_RH.txt │ │ ├── en_RU.txt │ │ ├── en_RW.txt │ │ ├── en_SA.txt │ │ ├── en_SB.txt │ │ ├── en_SC.txt │ │ ├── en_SD.txt │ │ ├── en_SE.txt │ │ ├── en_SG.txt │ │ ├── en_SH.txt │ │ ├── en_SI.txt │ │ ├── en_SK.txt │ │ ├── en_SL.txt │ │ ├── en_SS.txt │ │ ├── en_SX.txt │ │ ├── en_SZ.txt │ │ ├── en_TC.txt │ │ ├── en_TH.txt │ │ ├── en_TK.txt │ │ ├── en_TO.txt │ │ ├── en_TR.txt │ │ ├── en_TT.txt │ │ ├── en_TV.txt │ │ ├── en_TW.txt │ │ ├── en_TZ.txt │ │ ├── en_UA.txt │ │ ├── en_UG.txt │ │ ├── en_UM.txt │ │ ├── en_US.txt │ │ ├── en_US_POSIX.txt │ │ ├── en_VC.txt │ │ ├── en_VG.txt │ │ ├── en_VI.txt │ │ ├── en_VU.txt │ │ ├── en_WS.txt │ │ ├── en_ZA.txt │ │ ├── en_ZM.txt │ │ ├── en_ZW.txt │ │ ├── eo.txt │ │ ├── eo_001.txt │ │ ├── es.txt │ │ ├── es_003.txt │ │ ├── es_419.txt │ │ ├── es_AG.txt │ │ ├── es_AR.txt │ │ ├── es_BB.txt │ │ ├── es_BM.txt │ │ ├── es_BO.txt │ │ ├── es_BQ.txt │ │ ├── es_BR.txt │ │ ├── es_BS.txt │ │ ├── es_BZ.txt │ │ ├── es_CA.txt │ │ ├── es_CL.txt │ │ ├── es_CO.txt │ │ ├── es_CR.txt │ │ ├── es_CU.txt │ │ ├── es_CW.txt │ │ ├── es_DM.txt │ │ ├── es_DO.txt │ │ ├── es_EA.txt │ │ ├── es_EC.txt │ │ ├── es_ES.txt │ │ ├── es_GD.txt │ │ ├── es_GQ.txt │ │ ├── es_GT.txt │ │ ├── es_GY.txt │ │ ├── es_HN.txt │ │ ├── es_HT.txt │ │ ├── es_IC.txt │ │ ├── es_KN.txt │ │ ├── es_KY.txt │ │ ├── es_LC.txt │ │ ├── es_MX.txt │ │ ├── es_NI.txt │ │ ├── es_PA.txt │ │ ├── es_PE.txt │ │ ├── es_PH.txt │ │ ├── es_PR.txt │ │ ├── es_PY.txt │ │ ├── es_SV.txt │ │ ├── es_TC.txt │ │ ├── es_TT.txt │ │ ├── es_US.txt │ │ ├── es_UY.txt │ │ ├── es_VC.txt │ │ ├── es_VE.txt │ │ ├── es_VG.txt │ │ ├── es_VI.txt │ │ ├── et.txt │ │ ├── et_EE.txt │ │ ├── eu.txt │ │ ├── eu_ES.txt │ │ ├── ewo.txt │ │ ├── ewo_CM.txt │ │ ├── fa.txt │ │ ├── fa_AF.txt │ │ ├── fa_IR.txt │ │ ├── ff.txt │ │ ├── ff_Adlm.txt │ │ ├── ff_Adlm_BF.txt │ │ ├── ff_Adlm_CM.txt │ │ ├── ff_Adlm_GH.txt │ │ ├── ff_Adlm_GM.txt │ │ ├── ff_Adlm_GN.txt │ │ ├── ff_Adlm_GW.txt │ │ ├── ff_Adlm_LR.txt │ │ ├── ff_Adlm_MR.txt │ │ ├── ff_Adlm_NE.txt │ │ ├── ff_Adlm_NG.txt │ │ ├── ff_Adlm_SL.txt │ │ ├── ff_Adlm_SN.txt │ │ ├── ff_CM.txt │ │ ├── ff_GN.txt │ │ ├── ff_Latn.txt │ │ ├── ff_Latn_BF.txt │ │ ├── ff_Latn_CM.txt │ │ ├── ff_Latn_GH.txt │ │ ├── ff_Latn_GM.txt │ │ ├── ff_Latn_GN.txt │ │ ├── ff_Latn_GW.txt │ │ ├── ff_Latn_LR.txt │ │ ├── ff_Latn_MR.txt │ │ ├── ff_Latn_NE.txt │ │ ├── ff_Latn_NG.txt │ │ ├── ff_Latn_SL.txt │ │ ├── ff_Latn_SN.txt │ │ ├── ff_MR.txt │ │ ├── ff_SN.txt │ │ ├── fi.txt │ │ ├── fi_FI.txt │ │ ├── fil.txt │ │ ├── fil_PH.txt │ │ ├── fo.txt │ │ ├── fo_DK.txt │ │ ├── fo_FO.txt │ │ ├── fr.txt │ │ ├── fr_BE.txt │ │ ├── fr_BF.txt │ │ ├── fr_BI.txt │ │ ├── fr_BJ.txt │ │ ├── fr_BL.txt │ │ ├── fr_CA.txt │ │ ├── fr_CD.txt │ │ ├── fr_CF.txt │ │ ├── fr_CG.txt │ │ ├── fr_CH.txt │ │ ├── fr_CI.txt │ │ ├── fr_CM.txt │ │ ├── fr_DJ.txt │ │ ├── fr_DZ.txt │ │ ├── fr_FR.txt │ │ ├── fr_GA.txt │ │ ├── fr_GF.txt │ │ ├── fr_GN.txt │ │ ├── fr_GP.txt │ │ ├── fr_GQ.txt │ │ ├── fr_HT.txt │ │ ├── fr_KM.txt │ │ ├── fr_LU.txt │ │ ├── fr_MA.txt │ │ ├── fr_MC.txt │ │ ├── fr_MF.txt │ │ ├── fr_MG.txt │ │ ├── fr_ML.txt │ │ ├── fr_MQ.txt │ │ ├── fr_MR.txt │ │ ├── fr_MU.txt │ │ ├── fr_NC.txt │ │ ├── fr_NE.txt │ │ ├── fr_PF.txt │ │ ├── fr_PM.txt │ │ ├── fr_RE.txt │ │ ├── fr_RW.txt │ │ ├── fr_SC.txt │ │ ├── fr_SN.txt │ │ ├── fr_SY.txt │ │ ├── fr_TD.txt │ │ ├── fr_TG.txt │ │ ├── fr_TN.txt │ │ ├── fr_VU.txt │ │ ├── fr_WF.txt │ │ ├── fr_YT.txt │ │ ├── fur.txt │ │ ├── fur_IT.txt │ │ ├── fy.txt │ │ ├── fy_NL.txt │ │ ├── ga.txt │ │ ├── ga_GB.txt │ │ ├── ga_IE.txt │ │ ├── gaa.txt │ │ ├── gaa_GH.txt │ │ ├── gd.txt │ │ ├── gd_GB.txt │ │ ├── gez.txt │ │ ├── gez_ER.txt │ │ ├── gez_ET.txt │ │ ├── gl.txt │ │ ├── gl_ES.txt │ │ ├── gn.txt │ │ ├── gn_PY.txt │ │ ├── gsw.txt │ │ ├── gsw_CH.txt │ │ ├── gsw_FR.txt │ │ ├── gsw_LI.txt │ │ ├── gu.txt │ │ ├── gu_IN.txt │ │ ├── guz.txt │ │ ├── guz_KE.txt │ │ ├── gv.txt │ │ ├── gv_IM.txt │ │ ├── ha.txt │ │ ├── ha_GH.txt │ │ ├── ha_NE.txt │ │ ├── ha_NG.txt │ │ ├── haw.txt │ │ ├── haw_US.txt │ │ ├── hch.txt │ │ ├── he.txt │ │ ├── he_IL.txt │ │ ├── hi.txt │ │ ├── hi_IN.txt │ │ ├── hi_Latn.txt │ │ ├── hi_Latn_IN.txt │ │ ├── hmn.txt │ │ ├── hmn_CN.txt │ │ ├── hr.txt │ │ ├── hr_BA.txt │ │ ├── hr_HR.txt │ │ ├── hsb.txt │ │ ├── hsb_DE.txt │ │ ├── ht.txt │ │ ├── hu.txt │ │ ├── hu_HU.txt │ │ ├── hy.txt │ │ ├── hy_AM.txt │ │ ├── ia.txt │ │ ├── ia_001.txt │ │ ├── id.txt │ │ ├── id_ID.txt │ │ ├── ie.txt │ │ ├── ie_EE.txt │ │ ├── ig.txt │ │ ├── ig_NG.txt │ │ ├── ii.txt │ │ ├── ii_CN.txt │ │ ├── in.txt │ │ ├── in_ID.txt │ │ ├── inh.txt │ │ ├── io.txt │ │ ├── io_001.txt │ │ ├── is.txt │ │ ├── is_IS.txt │ │ ├── isc.txt │ │ ├── it.txt │ │ ├── it_CH.txt │ │ ├── it_IT.txt │ │ ├── it_SM.txt │ │ ├── it_VA.txt │ │ ├── iu.txt │ │ ├── iu_CA.txt │ │ ├── iw.txt │ │ ├── iw_IL.txt │ │ ├── ja.txt │ │ ├── ja_JP.txt │ │ ├── ja_JP_TRADITIONAL.txt │ │ ├── jbo.txt │ │ ├── jbo_001.txt │ │ ├── jgo.txt │ │ ├── jgo_CM.txt │ │ ├── jmc.txt │ │ ├── jmc_TZ.txt │ │ ├── jv.txt │ │ ├── jv_ID.txt │ │ ├── ka.txt │ │ ├── ka_GE.txt │ │ ├── kab.txt │ │ ├── kab_DZ.txt │ │ ├── kaj.txt │ │ ├── kaj_NG.txt │ │ ├── kam.txt │ │ ├── kam_KE.txt │ │ ├── kcg.txt │ │ ├── kcg_NG.txt │ │ ├── kde.txt │ │ ├── kde_TZ.txt │ │ ├── kea.txt │ │ ├── kea_CV.txt │ │ ├── kgp.txt │ │ ├── kgp_BR.txt │ │ ├── khq.txt │ │ ├── khq_ML.txt │ │ ├── ki.txt │ │ ├── ki_KE.txt │ │ ├── kk.txt │ │ ├── kk_Cyrl.txt │ │ ├── kk_Cyrl_KZ.txt │ │ ├── kk_KZ.txt │ │ ├── kkj.txt │ │ ├── kkj_CM.txt │ │ ├── kl.txt │ │ ├── kl_GL.txt │ │ ├── kln.txt │ │ ├── kln_KE.txt │ │ ├── km.txt │ │ ├── km_KH.txt │ │ ├── kn.txt │ │ ├── kn_IN.txt │ │ ├── ko.txt │ │ ├── ko_CN.txt │ │ ├── ko_KP.txt │ │ ├── ko_KR.txt │ │ ├── kok.txt │ │ ├── kok_Deva.txt │ │ ├── kok_Deva_IN.txt │ │ ├── kok_Latn.txt │ │ ├── kok_Latn_IN.txt │ │ ├── kpe.txt │ │ ├── kpe_GN.txt │ │ ├── kpe_LR.txt │ │ ├── ks.txt │ │ ├── ks_Arab.txt │ │ ├── ks_Arab_IN.txt │ │ ├── ks_Aran.txt │ │ ├── ks_Aran_IN.txt │ │ ├── ks_Deva.txt │ │ ├── ks_Deva_IN.txt │ │ ├── ks_IN.txt │ │ ├── ksb.txt │ │ ├── ksb_TZ.txt │ │ ├── ksf.txt │ │ ├── ksf_CM.txt │ │ ├── ksh.txt │ │ ├── ksh_DE.txt │ │ ├── ku.txt │ │ ├── ku_TR.txt │ │ ├── kw.txt │ │ ├── kw_GB.txt │ │ ├── kxv.txt │ │ ├── kxv_Deva.txt │ │ ├── kxv_Deva_IN.txt │ │ ├── kxv_IN.txt │ │ ├── kxv_Latn.txt │ │ ├── kxv_Latn_IN.txt │ │ ├── kxv_Orya.txt │ │ ├── kxv_Orya_IN.txt │ │ ├── kxv_Telu.txt │ │ ├── kxv_Telu_IN.txt │ │ ├── ky.txt │ │ ├── ky_KG.txt │ │ ├── lag.txt │ │ ├── lag_TZ.txt │ │ ├── lb.txt │ │ ├── lb_LU.txt │ │ ├── lg.txt │ │ ├── lg_UG.txt │ │ ├── lij.txt │ │ ├── lij_IT.txt │ │ ├── lkt.txt │ │ ├── lkt_US.txt │ │ ├── lmo.txt │ │ ├── lmo_IT.txt │ │ ├── ln.txt │ │ ├── ln_AO.txt │ │ ├── ln_CD.txt │ │ ├── ln_CF.txt │ │ ├── ln_CG.txt │ │ ├── lo.txt │ │ ├── lo_LA.txt │ │ ├── lrc.txt │ │ ├── lrc_IQ.txt │ │ ├── lrc_IR.txt │ │ ├── lt.txt │ │ ├── lt_LT.txt │ │ ├── lu.txt │ │ ├── lu_CD.txt │ │ ├── luo.txt │ │ ├── luo_KE.txt │ │ ├── lut.txt │ │ ├── luy.txt │ │ ├── luy_KE.txt │ │ ├── lv.txt │ │ ├── lv_LV.txt │ │ ├── mai.txt │ │ ├── mai_IN.txt │ │ ├── mas.txt │ │ ├── mas_KE.txt │ │ ├── mas_TZ.txt │ │ ├── mer.txt │ │ ├── mer_KE.txt │ │ ├── mfe.txt │ │ ├── mfe_MU.txt │ │ ├── mg.txt │ │ ├── mg_MG.txt │ │ ├── mgh.txt │ │ ├── mgh_MZ.txt │ │ ├── mgo.txt │ │ ├── mgo_CM.txt │ │ ├── mi.txt │ │ ├── mi_NZ.txt │ │ ├── mic.txt │ │ ├── mic_CA.txt │ │ ├── mid.txt │ │ ├── mid_IQ.txt │ │ ├── mk.txt │ │ ├── mk_MK.txt │ │ ├── ml.txt │ │ ├── ml_IN.txt │ │ ├── mn.txt │ │ ├── mn_MN.txt │ │ ├── mni.txt │ │ ├── mni_Beng.txt │ │ ├── mni_Beng_IN.txt │ │ ├── mni_IN.txt │ │ ├── mni_Mtei.txt │ │ ├── mni_Mtei_IN.txt │ │ ├── mo.txt │ │ ├── moh.txt │ │ ├── moh_CA.txt │ │ ├── mr.txt │ │ ├── mr_IN.txt │ │ ├── ms.txt │ │ ├── ms_Arab.txt │ │ ├── ms_Arab_BN.txt │ │ ├── ms_Arab_MY.txt │ │ ├── ms_BN.txt │ │ ├── ms_ID.txt │ │ ├── ms_MY.txt │ │ ├── ms_SG.txt │ │ ├── mt.txt │ │ ├── mt_MT.txt │ │ ├── mua.txt │ │ ├── mua_CM.txt │ │ ├── mus.txt │ │ ├── mus_US.txt │ │ ├── my.txt │ │ ├── my_MM.txt │ │ ├── myv.txt │ │ ├── myv_RU.txt │ │ ├── mzn.txt │ │ ├── mzn_IR.txt │ │ ├── naq.txt │ │ ├── naq_NA.txt │ │ ├── nb.txt │ │ ├── nb_NO.txt │ │ ├── nb_SJ.txt │ │ ├── nd.txt │ │ ├── nd_ZW.txt │ │ ├── nds.txt │ │ ├── nds_DE.txt │ │ ├── nds_NL.txt │ │ ├── ne.txt │ │ ├── ne_IN.txt │ │ ├── ne_NP.txt │ │ ├── nez.txt │ │ ├── nl.txt │ │ ├── nl_AW.txt │ │ ├── nl_BE.txt │ │ ├── nl_BQ.txt │ │ ├── nl_CW.txt │ │ ├── nl_NL.txt │ │ ├── nl_SR.txt │ │ ├── nl_SX.txt │ │ ├── nmg.txt │ │ ├── nmg_CM.txt │ │ ├── nn.txt │ │ ├── nn_NO.txt │ │ ├── nnh.txt │ │ ├── nnh_CM.txt │ │ ├── nnp.txt │ │ ├── nnp_IN.txt │ │ ├── no.txt │ │ ├── no_NO.txt │ │ ├── no_NO_NY.txt │ │ ├── nqo.txt │ │ ├── nqo_GN.txt │ │ ├── nr.txt │ │ ├── nr_ZA.txt │ │ ├── nso.txt │ │ ├── nso_ZA.txt │ │ ├── nus.txt │ │ ├── nus_SS.txt │ │ ├── nv.txt │ │ ├── nv_US.txt │ │ ├── ny.txt │ │ ├── ny_MW.txt │ │ ├── nyn.txt │ │ ├── nyn_UG.txt │ │ ├── oc.txt │ │ ├── oc_ES.txt │ │ ├── oc_FR.txt │ │ ├── om.txt │ │ ├── om_ET.txt │ │ ├── om_KE.txt │ │ ├── or.txt │ │ ├── or_IN.txt │ │ ├── os.txt │ │ ├── os_GE.txt │ │ ├── os_RU.txt │ │ ├── osa.txt │ │ ├── osa_US.txt │ │ ├── pa.txt │ │ ├── pa_Arab.txt │ │ ├── pa_Arab_PK.txt │ │ ├── pa_Aran.txt │ │ ├── pa_Aran_PK.txt │ │ ├── pa_Guru.txt │ │ ├── pa_Guru_IN.txt │ │ ├── pa_IN.txt │ │ ├── pa_PK.txt │ │ ├── pcm.txt │ │ ├── pcm_NG.txt │ │ ├── pl.txt │ │ ├── pl_PL.txt │ │ ├── pqm.txt │ │ ├── pqm_CA.txt │ │ ├── prg.txt │ │ ├── prg_PL.txt │ │ ├── ps.txt │ │ ├── ps_AF.txt │ │ ├── ps_PK.txt │ │ ├── pt.txt │ │ ├── pt_AO.txt │ │ ├── pt_BR.txt │ │ ├── pt_CH.txt │ │ ├── pt_CV.txt │ │ ├── pt_FR.txt │ │ ├── pt_GQ.txt │ │ ├── pt_GW.txt │ │ ├── pt_LU.txt │ │ ├── pt_MO.txt │ │ ├── pt_MZ.txt │ │ ├── pt_PT.txt │ │ ├── pt_ST.txt │ │ ├── pt_TL.txt │ │ ├── qu.txt │ │ ├── qu_BO.txt │ │ ├── qu_EC.txt │ │ ├── qu_PE.txt │ │ ├── raj.txt │ │ ├── raj_IN.txt │ │ ├── rej.txt │ │ ├── rej_ID.txt │ │ ├── rej_Rjng.txt │ │ ├── rej_Rjng_ID.txt │ │ ├── rhg.txt │ │ ├── rhg_Rohg.txt │ │ ├── rhg_Rohg_BD.txt │ │ ├── rhg_Rohg_MM.txt │ │ ├── rm.txt │ │ ├── rm_CH.txt │ │ ├── rn.txt │ │ ├── rn_BI.txt │ │ ├── ro.txt │ │ ├── ro_MD.txt │ │ ├── ro_RO.txt │ │ ├── rof.txt │ │ ├── rof_TZ.txt │ │ ├── root.txt │ │ ├── ru.txt │ │ ├── ru_BY.txt │ │ ├── ru_KG.txt │ │ ├── ru_KZ.txt │ │ ├── ru_MD.txt │ │ ├── ru_RU.txt │ │ ├── ru_UA.txt │ │ ├── rw.txt │ │ ├── rw_RW.txt │ │ ├── rwk.txt │ │ ├── rwk_TZ.txt │ │ ├── sa.txt │ │ ├── sa_IN.txt │ │ ├── sah.txt │ │ ├── sah_RU.txt │ │ ├── saq.txt │ │ ├── saq_KE.txt │ │ ├── sat.txt │ │ ├── sat_Deva.txt │ │ ├── sat_Deva_IN.txt │ │ ├── sat_IN.txt │ │ ├── sat_Olck.txt │ │ ├── sat_Olck_IN.txt │ │ ├── sbp.txt │ │ ├── sbp_TZ.txt │ │ ├── sc.txt │ │ ├── sc_IT.txt │ │ ├── scn.txt │ │ ├── scn_IT.txt │ │ ├── sd.txt │ │ ├── sd_Arab.txt │ │ ├── sd_Arab_PK.txt │ │ ├── sd_Deva.txt │ │ ├── sd_Deva_IN.txt │ │ ├── sd_IN.txt │ │ ├── sd_PK.txt │ │ ├── se.txt │ │ ├── se_FI.txt │ │ ├── se_NO.txt │ │ ├── se_SE.txt │ │ ├── seh.txt │ │ ├── seh_MZ.txt │ │ ├── ses.txt │ │ ├── ses_ML.txt │ │ ├── sg.txt │ │ ├── sg_CF.txt │ │ ├── sh.txt │ │ ├── sh_BA.txt │ │ ├── sh_CS.txt │ │ ├── sh_YU.txt │ │ ├── shi.txt │ │ ├── shi_Latn.txt │ │ ├── shi_Latn_MA.txt │ │ ├── shi_MA.txt │ │ ├── shi_Tfng.txt │ │ ├── shi_Tfng_MA.txt │ │ ├── shp.txt │ │ ├── si.txt │ │ ├── si_LK.txt │ │ ├── sjd.txt │ │ ├── sje.txt │ │ ├── sju.txt │ │ ├── sk.txt │ │ ├── sk_SK.txt │ │ ├── sl.txt │ │ ├── sl_SI.txt │ │ ├── sm.txt │ │ ├── sm_AS.txt │ │ ├── sm_WS.txt │ │ ├── smn.txt │ │ ├── smn_FI.txt │ │ ├── sn.txt │ │ ├── sn_ZW.txt │ │ ├── so.txt │ │ ├── so_DJ.txt │ │ ├── so_ET.txt │ │ ├── so_KE.txt │ │ ├── so_SO.txt │ │ ├── sq.txt │ │ ├── sq_AL.txt │ │ ├── sq_MK.txt │ │ ├── sq_XK.txt │ │ ├── sr.txt │ │ ├── sr_BA.txt │ │ ├── sr_CS.txt │ │ ├── sr_Cyrl.txt │ │ ├── sr_Cyrl_BA.txt │ │ ├── sr_Cyrl_CS.txt │ │ ├── sr_Cyrl_ME.txt │ │ ├── sr_Cyrl_RS.txt │ │ ├── sr_Cyrl_XK.txt │ │ ├── sr_Cyrl_YU.txt │ │ ├── sr_Latn.txt │ │ ├── sr_Latn_BA.txt │ │ ├── sr_Latn_CS.txt │ │ ├── sr_Latn_ME.txt │ │ ├── sr_Latn_RS.txt │ │ ├── sr_Latn_XK.txt │ │ ├── sr_Latn_YU.txt │ │ ├── sr_ME.txt │ │ ├── sr_RS.txt │ │ ├── sr_XK.txt │ │ ├── sr_YU.txt │ │ ├── ss.txt │ │ ├── ss_SZ.txt │ │ ├── ss_ZA.txt │ │ ├── st.txt │ │ ├── st_LS.txt │ │ ├── st_ZA.txt │ │ ├── su.txt │ │ ├── su_ID.txt │ │ ├── su_Latn.txt │ │ ├── su_Latn_ID.txt │ │ ├── sv.txt │ │ ├── sv_AX.txt │ │ ├── sv_FI.txt │ │ ├── sv_SE.txt │ │ ├── sw.txt │ │ ├── sw_CD.txt │ │ ├── sw_KE.txt │ │ ├── sw_TZ.txt │ │ ├── sw_UG.txt │ │ ├── syr.txt │ │ ├── syr_IQ.txt │ │ ├── syr_SY.txt │ │ ├── szl.txt │ │ ├── szl_PL.txt │ │ ├── ta.txt │ │ ├── ta_IN.txt │ │ ├── ta_LK.txt │ │ ├── ta_MY.txt │ │ ├── ta_SG.txt │ │ ├── te.txt │ │ ├── te_IN.txt │ │ ├── teo.txt │ │ ├── teo_KE.txt │ │ ├── teo_UG.txt │ │ ├── tg.txt │ │ ├── tg_TJ.txt │ │ ├── th.txt │ │ ├── th_TH.txt │ │ ├── th_TH_TRADITIONAL.txt │ │ ├── ti.txt │ │ ├── ti_ER.txt │ │ ├── ti_ET.txt │ │ ├── tig.txt │ │ ├── tig_ER.txt │ │ ├── tk.txt │ │ ├── tk_TM.txt │ │ ├── tl.txt │ │ ├── tl_PH.txt │ │ ├── tn.txt │ │ ├── tn_BW.txt │ │ ├── tn_ZA.txt │ │ ├── to.txt │ │ ├── to_TO.txt │ │ ├── tok.txt │ │ ├── tok_001.txt │ │ ├── tr.txt │ │ ├── tr_CY.txt │ │ ├── tr_TR.txt │ │ ├── trv.txt │ │ ├── trv_TW.txt │ │ ├── ts.txt │ │ ├── ts_ZA.txt │ │ ├── tt.txt │ │ ├── tt_RU.txt │ │ ├── twq.txt │ │ ├── twq_NE.txt │ │ ├── tzm.txt │ │ ├── tzm_MA.txt │ │ ├── ug.txt │ │ ├── ug_CN.txt │ │ ├── uk.txt │ │ ├── uk_UA.txt │ │ ├── ur.txt │ │ ├── ur_Arab.txt │ │ ├── ur_Arab_IN.txt │ │ ├── ur_Arab_PK.txt │ │ ├── ur_Aran.txt │ │ ├── ur_Aran_IN.txt │ │ ├── ur_Aran_PK.txt │ │ ├── ur_IN.txt │ │ ├── ur_PK.txt │ │ ├── uz.txt │ │ ├── uz_AF.txt │ │ ├── uz_Arab.txt │ │ ├── uz_Arab_AF.txt │ │ ├── uz_Cyrl.txt │ │ ├── uz_Cyrl_UZ.txt │ │ ├── uz_Latn.txt │ │ ├── uz_Latn_UZ.txt │ │ ├── uz_UZ.txt │ │ ├── vai.txt │ │ ├── vai_LR.txt │ │ ├── vai_Latn.txt │ │ ├── vai_Latn_LR.txt │ │ ├── vai_Vaii.txt │ │ ├── vai_Vaii_LR.txt │ │ ├── ve.txt │ │ ├── ve_ZA.txt │ │ ├── vec.txt │ │ ├── vec_IT.txt │ │ ├── vi.txt │ │ ├── vi_VN.txt │ │ ├── vmw.txt │ │ ├── vmw_MZ.txt │ │ ├── vun.txt │ │ ├── vun_TZ.txt │ │ ├── wa.txt │ │ ├── wa_BE.txt │ │ ├── wae.txt │ │ ├── wae_CH.txt │ │ ├── wal.txt │ │ ├── wal_ET.txt │ │ ├── wo.txt │ │ ├── wo_SN.txt │ │ ├── wuu.txt │ │ ├── xh.txt │ │ ├── xh_ZA.txt │ │ ├── xnr.txt │ │ ├── xnr_IN.txt │ │ ├── xog.txt │ │ ├── xog_UG.txt │ │ ├── yav.txt │ │ ├── yav_CM.txt │ │ ├── yi.txt │ │ ├── yi_UA.txt │ │ ├── yo.txt │ │ ├── yo_BJ.txt │ │ ├── yo_NG.txt │ │ ├── yrl.txt │ │ ├── yrl_BR.txt │ │ ├── yrl_CO.txt │ │ ├── yrl_VE.txt │ │ ├── yue.txt │ │ ├── yue_CN.txt │ │ ├── yue_HK.txt │ │ ├── yue_Hans.txt │ │ ├── yue_Hans_CN.txt │ │ ├── yue_Hant.txt │ │ ├── yue_Hant_CN.txt │ │ ├── yue_Hant_HK.txt │ │ ├── za.txt │ │ ├── za_CN.txt │ │ ├── zgh.txt │ │ ├── zgh_MA.txt │ │ ├── zh.txt │ │ ├── zh_CN.txt │ │ ├── zh_HK.txt │ │ ├── zh_Hans.txt │ │ ├── zh_Hans_CN.txt │ │ ├── zh_Hans_HK.txt │ │ ├── zh_Hans_JP.txt │ │ ├── zh_Hans_MO.txt │ │ ├── zh_Hans_MY.txt │ │ ├── zh_Hans_SG.txt │ │ ├── zh_Hant.txt │ │ ├── zh_Hant_CN.txt │ │ ├── zh_Hant_HK.txt │ │ ├── zh_Hant_JP.txt │ │ ├── zh_Hant_MO.txt │ │ ├── zh_Hant_MY.txt │ │ ├── zh_Hant_TW.txt │ │ ├── zh_JP.txt │ │ ├── zh_MO.txt │ │ ├── zh_SG.txt │ │ ├── zh_TW.txt │ │ ├── zu.txt │ │ └── zu_ZA.txt │ ├── makedata.mak │ ├── makedata.vcxproj │ ├── makedata.vcxproj.filters │ ├── makedata_uwp.vcxproj │ ├── mappings │ │ ├── cns-11643-1992.ucm │ │ ├── convrtrs.txt │ │ ├── docomo-sjis.ucm │ │ ├── ebcdic-xml-us.ucm │ │ ├── euc-jp-2007.ucm │ │ ├── euc-tw-2014.ucm │ │ ├── gb18030-2022.ucm │ │ ├── gsm-03.38-2000.ucm │ │ ├── gsm-03.38-2009.ucm │ │ ├── ibm-1006_P100-1995.ucm │ │ ├── ibm-1025_P100-1995.ucm │ │ ├── ibm-1026_P100-1995.ucm │ │ ├── ibm-1047_P100-1995.ucm │ │ ├── ibm-1051_P100-1995.ucm │ │ ├── ibm-1089_P100-1995.ucm │ │ ├── ibm-1097_P100-1995.ucm │ │ ├── ibm-1098_P100-1995.ucm │ │ ├── ibm-1112_P100-1995.ucm │ │ ├── ibm-1122_P100-1999.ucm │ │ ├── ibm-1123_P100-1995.ucm │ │ ├── ibm-1124_P100-1996.ucm │ │ ├── ibm-1125_P100-1997.ucm │ │ ├── ibm-1129_P100-1997.ucm │ │ ├── ibm-1130_P100-1997.ucm │ │ ├── ibm-1131_P100-1997.ucm │ │ ├── ibm-1132_P100-1998.ucm │ │ ├── ibm-1133_P100-1997.ucm │ │ ├── ibm-1137_P100-1999.ucm │ │ ├── ibm-1140_P100-1997.ucm │ │ ├── ibm-1141_P100-1997.ucm │ │ ├── ibm-1142_P100-1997.ucm │ │ ├── ibm-1143_P100-1997.ucm │ │ ├── ibm-1144_P100-1997.ucm │ │ ├── ibm-1145_P100-1997.ucm │ │ ├── ibm-1146_P100-1997.ucm │ │ ├── ibm-1147_P100-1997.ucm │ │ ├── ibm-1148_P100-1997.ucm │ │ ├── ibm-1149_P100-1997.ucm │ │ ├── ibm-1153_P100-1999.ucm │ │ ├── ibm-1154_P100-1999.ucm │ │ ├── ibm-1155_P100-1999.ucm │ │ ├── ibm-1156_P100-1999.ucm │ │ ├── ibm-1157_P100-1999.ucm │ │ ├── ibm-1158_P100-1999.ucm │ │ ├── ibm-1160_P100-1999.ucm │ │ ├── ibm-1162_P100-1999.ucm │ │ ├── ibm-1164_P100-1999.ucm │ │ ├── ibm-1168_P100-2002.ucm │ │ ├── ibm-1250_P100-1995.ucm │ │ ├── ibm-1251_P100-1995.ucm │ │ ├── ibm-1252_P100-2000.ucm │ │ ├── ibm-1253_P100-1995.ucm │ │ ├── ibm-1254_P100-1995.ucm │ │ ├── ibm-1255_P100-1995.ucm │ │ ├── ibm-1256_P110-1997.ucm │ │ ├── ibm-1257_P100-1995.ucm │ │ ├── ibm-1258_P100-1997.ucm │ │ ├── ibm-12712_P100-1998.ucm │ │ ├── ibm-1276_P100-1995.ucm │ │ ├── ibm-1363_P110-1997.ucm │ │ ├── ibm-1363_P11B-1998.ucm │ │ ├── ibm-1364_P110-2007.ucm │ │ ├── ibm-1371_P100-1999.ucm │ │ ├── ibm-1373_P100-2002.ucm │ │ ├── ibm-1375_P100-2008.ucm │ │ ├── ibm-1383_P110-1999.ucm │ │ ├── ibm-1386_P100-2001.ucm │ │ ├── ibm-1388_P100-2024.ucm │ │ ├── ibm-1390_P110-2003.ucm │ │ ├── ibm-1399_P110-2003.ucm │ │ ├── ibm-16684_P110-2003.ucm │ │ ├── ibm-16804_X110-1999.ucm │ │ ├── ibm-273_P100-1995.ucm │ │ ├── ibm-277_P100-1995.ucm │ │ ├── ibm-278_P100-1995.ucm │ │ ├── ibm-280_P100-1995.ucm │ │ ├── ibm-284_P100-1995.ucm │ │ ├── ibm-285_P100-1995.ucm │ │ ├── ibm-290_P100-1995.ucm │ │ ├── ibm-297_P100-1995.ucm │ │ ├── ibm-33722_P120-1999.ucm │ │ ├── ibm-33722_P12A_P12A-2004_U2.ucm │ │ ├── ibm-33722_P12A_P12A-2009_U2.ucm │ │ ├── ibm-37_P100-1995.ucm │ │ ├── ibm-420_X120-1999.ucm │ │ ├── ibm-424_P100-1995.ucm │ │ ├── ibm-437_P100-1995.ucm │ │ ├── ibm-4517_P100-2005.ucm │ │ ├── ibm-4899_P100-1998.ucm │ │ ├── ibm-4909_P100-1999.ucm │ │ ├── ibm-4971_P100-1999.ucm │ │ ├── ibm-500_P100-1995.ucm │ │ ├── ibm-5012_P100-1999.ucm │ │ ├── ibm-5123_P100-1999.ucm │ │ ├── ibm-5346_P100-1998.ucm │ │ ├── ibm-5347_P100-1998.ucm │ │ ├── ibm-5348_P100-1997.ucm │ │ ├── ibm-5349_P100-1998.ucm │ │ ├── ibm-5350_P100-1998.ucm │ │ ├── ibm-5351_P100-1998.ucm │ │ ├── ibm-5352_P100-1998.ucm │ │ ├── ibm-5353_P100-1998.ucm │ │ ├── ibm-5354_P100-1998.ucm │ │ ├── ibm-5471_P100-2006.ucm │ │ ├── ibm-5478_P100-1995.ucm │ │ ├── ibm-720_P100-1997.ucm │ │ ├── ibm-737_P100-1997.ucm │ │ ├── ibm-775_P100-1996.ucm │ │ ├── ibm-803_P100-1999.ucm │ │ ├── ibm-813_P100-1995.ucm │ │ ├── ibm-838_P100-1995.ucm │ │ ├── ibm-8482_P100-1999.ucm │ │ ├── ibm-850_P100-1995.ucm │ │ ├── ibm-851_P100-1995.ucm │ │ ├── ibm-852_P100-1995.ucm │ │ ├── ibm-855_P100-1995.ucm │ │ ├── ibm-856_P100-1995.ucm │ │ ├── ibm-857_P100-1995.ucm │ │ ├── ibm-858_P100-1997.ucm │ │ ├── ibm-860_P100-1995.ucm │ │ ├── ibm-861_P100-1995.ucm │ │ ├── ibm-862_P100-1995.ucm │ │ ├── ibm-863_P100-1995.ucm │ │ ├── ibm-864_X110-1999.ucm │ │ ├── ibm-865_P100-1995.ucm │ │ ├── ibm-866_P100-1995.ucm │ │ ├── ibm-867_P100-1998.ucm │ │ ├── ibm-868_P100-1995.ucm │ │ ├── ibm-869_P100-1995.ucm │ │ ├── ibm-870_P100-1995.ucm │ │ ├── ibm-871_P100-1995.ucm │ │ ├── ibm-874_P100-1995.ucm │ │ ├── ibm-875_P100-1995.ucm │ │ ├── ibm-878_P100-1996.ucm │ │ ├── ibm-9005_X110-2007.ucm │ │ ├── ibm-901_P100-1999.ucm │ │ ├── ibm-902_P100-1999.ucm │ │ ├── ibm-9067_X100-2005.ucm │ │ ├── ibm-912_P100-1995.ucm │ │ ├── ibm-913_P100-2000.ucm │ │ ├── ibm-914_P100-1995.ucm │ │ ├── ibm-915_P100-1995.ucm │ │ ├── ibm-916_P100-1995.ucm │ │ ├── ibm-918_P100-1995.ucm │ │ ├── ibm-920_P100-1995.ucm │ │ ├── ibm-921_P100-1995.ucm │ │ ├── ibm-922_P100-1999.ucm │ │ ├── ibm-923_P100-1998.ucm │ │ ├── ibm-930_P120-1999.ucm │ │ ├── ibm-933_P110-1995.ucm │ │ ├── ibm-935_P110-1999.ucm │ │ ├── ibm-937_P110-1999.ucm │ │ ├── ibm-939_P120-1999.ucm │ │ ├── ibm-942_P12A-1999.ucm │ │ ├── ibm-943_P130-1999.ucm │ │ ├── ibm-943_P15A-2003.ucm │ │ ├── ibm-9447_P100-2002.ucm │ │ ├── ibm-9448_X100-2005.ucm │ │ ├── ibm-9449_P100-2002.ucm │ │ ├── ibm-949_P110-1999.ucm │ │ ├── ibm-949_P11A-1999.ucm │ │ ├── ibm-950_P110-1999.ucm │ │ ├── ibm-954_P101-2007.ucm │ │ ├── ibm-964_P110-1999.ucm │ │ ├── ibm-970_P110_P110-2006_U2.ucm │ │ ├── ibm-971_P100-1995.ucm │ │ ├── icu-internal-25546.ucm │ │ ├── icu-internal-compound-d1.ucm │ │ ├── icu-internal-compound-d2.ucm │ │ ├── icu-internal-compound-d3.ucm │ │ ├── icu-internal-compound-d4.ucm │ │ ├── icu-internal-compound-d5.ucm │ │ ├── icu-internal-compound-d6.ucm │ │ ├── icu-internal-compound-d7.ucm │ │ ├── icu-internal-compound-s1.ucm │ │ ├── icu-internal-compound-s2.ucm │ │ ├── icu-internal-compound-s3.ucm │ │ ├── icu-internal-compound-t.ucm │ │ ├── iso-8859_10-1998.ucm │ │ ├── iso-8859_11-2001.ucm │ │ ├── iso-8859_14-1998.ucm │ │ ├── iso-8859_16-2001.ucm │ │ ├── iso-ir-165.ucm │ │ ├── jisx-212.ucm │ │ ├── kddi-sjis.ucm │ │ ├── lmb-excp.ucm │ │ ├── macos-0_2-10.2.ucm │ │ ├── macos-2566-10.2.ucm │ │ ├── macos-29-10.2.ucm │ │ ├── macos-35-10.2.ucm │ │ ├── macos-6-10.2.ucm │ │ ├── macos-6_2-10.4.ucm │ │ ├── macos-7_3-10.2.ucm │ │ ├── softbank-sjis.ucm │ │ ├── ucmcore.mk │ │ ├── ucmebcdic.mk │ │ ├── ucmfiles.mk │ │ ├── ucmlocal.mk │ │ ├── windows-874-2000.ucm │ │ ├── windows-936-2000.ucm │ │ ├── windows-949-2000.ucm │ │ └── windows-950-2000.ucm │ ├── misc │ │ ├── currencyNumericCodes.txt │ │ ├── dayPeriods.txt │ │ ├── genderList.txt │ │ ├── grammaticalFeatures.txt │ │ ├── icudata.rc │ │ ├── icustd.txt │ │ ├── icuver.txt │ │ ├── keyTypeData.txt │ │ ├── langInfo.txt │ │ ├── likelySubtags.txt │ │ ├── metaZones.txt │ │ ├── metadata.txt │ │ ├── numberingSystems.txt │ │ ├── pluralRanges.txt │ │ ├── plurals.txt │ │ ├── supplementalData.txt │ │ ├── timezoneTypes.txt │ │ ├── units.txt │ │ ├── windowsZones.txt │ │ └── zoneinfo64.txt │ ├── pkgdataMakefile.in │ ├── rbnf │ │ ├── LOCALE_DEPS.json │ │ ├── af.txt │ │ ├── ak.txt │ │ ├── am.txt │ │ ├── ar.txt │ │ ├── ar_SA.txt │ │ ├── ars.txt │ │ ├── az.txt │ │ ├── be.txt │ │ ├── bg.txt │ │ ├── bn.txt │ │ ├── bs.txt │ │ ├── ca.txt │ │ ├── ccp.txt │ │ ├── chr.txt │ │ ├── cs.txt │ │ ├── cy.txt │ │ ├── da.txt │ │ ├── de.txt │ │ ├── de_CH.txt │ │ ├── ee.txt │ │ ├── el.txt │ │ ├── en.txt │ │ ├── en_001.txt │ │ ├── en_IN.txt │ │ ├── eo.txt │ │ ├── es.txt │ │ ├── es_003.txt │ │ ├── es_419.txt │ │ ├── es_DO.txt │ │ ├── es_GT.txt │ │ ├── es_HN.txt │ │ ├── es_MX.txt │ │ ├── es_NI.txt │ │ ├── es_PA.txt │ │ ├── es_PR.txt │ │ ├── es_SV.txt │ │ ├── es_US.txt │ │ ├── et.txt │ │ ├── fa.txt │ │ ├── fa_AF.txt │ │ ├── ff.txt │ │ ├── fi.txt │ │ ├── fil.txt │ │ ├── fo.txt │ │ ├── fr.txt │ │ ├── fr_BE.txt │ │ ├── fr_CH.txt │ │ ├── ga.txt │ │ ├── gu.txt │ │ ├── he.txt │ │ ├── hi.txt │ │ ├── hr.txt │ │ ├── hu.txt │ │ ├── hy.txt │ │ ├── id.txt │ │ ├── in.txt │ │ ├── is.txt │ │ ├── it.txt │ │ ├── iw.txt │ │ ├── ja.txt │ │ ├── ka.txt │ │ ├── kk.txt │ │ ├── kl.txt │ │ ├── km.txt │ │ ├── kn.txt │ │ ├── ko.txt │ │ ├── ky.txt │ │ ├── lb.txt │ │ ├── lo.txt │ │ ├── lrc.txt │ │ ├── lt.txt │ │ ├── lv.txt │ │ ├── mk.txt │ │ ├── ml.txt │ │ ├── mr.txt │ │ ├── ms.txt │ │ ├── mt.txt │ │ ├── my.txt │ │ ├── nb.txt │ │ ├── ne.txt │ │ ├── nl.txt │ │ ├── nn.txt │ │ ├── no.txt │ │ ├── or.txt │ │ ├── pa.txt │ │ ├── pl.txt │ │ ├── pt.txt │ │ ├── pt_PT.txt │ │ ├── qu.txt │ │ ├── ro.txt │ │ ├── root.txt │ │ ├── ru.txt │ │ ├── se.txt │ │ ├── sh.txt │ │ ├── sk.txt │ │ ├── sl.txt │ │ ├── sq.txt │ │ ├── sr.txt │ │ ├── sr_Latn.txt │ │ ├── su.txt │ │ ├── sv.txt │ │ ├── sw.txt │ │ ├── ta.txt │ │ ├── te.txt │ │ ├── th.txt │ │ ├── tr.txt │ │ ├── uk.txt │ │ ├── ur.txt │ │ ├── vec.txt │ │ ├── vi.txt │ │ ├── wuu.txt │ │ ├── yue.txt │ │ ├── yue_Hans.txt │ │ ├── zh.txt │ │ ├── zh_HK.txt │ │ ├── zh_Hant.txt │ │ ├── zh_Hant_HK.txt │ │ ├── zh_Hant_MO.txt │ │ ├── zh_Hant_TW.txt │ │ ├── zh_MO.txt │ │ └── zh_TW.txt │ ├── region │ │ ├── LOCALE_DEPS.json │ │ ├── af.txt │ │ ├── agq.txt │ │ ├── ain.txt │ │ ├── ak.txt │ │ ├── am.txt │ │ ├── apw.txt │ │ ├── ar.txt │ │ ├── ar_AE.txt │ │ ├── ar_LY.txt │ │ ├── ar_SA.txt │ │ ├── arn.txt │ │ ├── ars.txt │ │ ├── as.txt │ │ ├── asa.txt │ │ ├── ast.txt │ │ ├── az.txt │ │ ├── az_AZ.txt │ │ ├── az_Cyrl.txt │ │ ├── az_Latn.txt │ │ ├── az_Latn_AZ.txt │ │ ├── ba.txt │ │ ├── bas.txt │ │ ├── be.txt │ │ ├── bem.txt │ │ ├── ber.txt │ │ ├── ber_Latn.txt │ │ ├── bez.txt │ │ ├── bg.txt │ │ ├── bgc.txt │ │ ├── bho.txt │ │ ├── blo.txt │ │ ├── bm.txt │ │ ├── bn.txt │ │ ├── bn_IN.txt │ │ ├── bo.txt │ │ ├── bo_IN.txt │ │ ├── br.txt │ │ ├── brx.txt │ │ ├── bs.txt │ │ ├── bs_BA.txt │ │ ├── bs_Cyrl.txt │ │ ├── bs_Latn.txt │ │ ├── bs_Latn_BA.txt │ │ ├── byn.txt │ │ ├── ca.txt │ │ ├── ccp.txt │ │ ├── ce.txt │ │ ├── ceb.txt │ │ ├── cgg.txt │ │ ├── cho.txt │ │ ├── chr.txt │ │ ├── cic.txt │ │ ├── ckb.txt │ │ ├── co.txt │ │ ├── cs.txt │ │ ├── cst.txt │ │ ├── csw.txt │ │ ├── cv.txt │ │ ├── cy.txt │ │ ├── da.txt │ │ ├── dav.txt │ │ ├── de.txt │ │ ├── de_AT.txt │ │ ├── de_CH.txt │ │ ├── dje.txt │ │ ├── doi.txt │ │ ├── dsb.txt │ │ ├── dua.txt │ │ ├── dv.txt │ │ ├── dyo.txt │ │ ├── dz.txt │ │ ├── ebu.txt │ │ ├── ee.txt │ │ ├── el.txt │ │ ├── en.txt │ │ ├── en_001.txt │ │ ├── en_150.txt │ │ ├── en_AG.txt │ │ ├── en_AI.txt │ │ ├── en_AL.txt │ │ ├── en_AR.txt │ │ ├── en_AT.txt │ │ ├── en_AU.txt │ │ ├── en_BB.txt │ │ ├── en_BD.txt │ │ ├── en_BE.txt │ │ ├── en_BG.txt │ │ ├── en_BM.txt │ │ ├── en_BN.txt │ │ ├── en_BR.txt │ │ ├── en_BS.txt │ │ ├── en_BW.txt │ │ ├── en_BZ.txt │ │ ├── en_CA.txt │ │ ├── en_CC.txt │ │ ├── en_CH.txt │ │ ├── en_CK.txt │ │ ├── en_CM.txt │ │ ├── en_CV.txt │ │ ├── en_CX.txt │ │ ├── en_CY.txt │ │ ├── en_CZ.txt │ │ ├── en_DE.txt │ │ ├── en_DG.txt │ │ ├── en_DK.txt │ │ ├── en_DM.txt │ │ ├── en_EE.txt │ │ ├── en_ER.txt │ │ ├── en_FI.txt │ │ ├── en_FJ.txt │ │ ├── en_FK.txt │ │ ├── en_FM.txt │ │ ├── en_FR.txt │ │ ├── en_GB.txt │ │ ├── en_GD.txt │ │ ├── en_GG.txt │ │ ├── en_GH.txt │ │ ├── en_GI.txt │ │ ├── en_GM.txt │ │ ├── en_GR.txt │ │ ├── en_GY.txt │ │ ├── en_HK.txt │ │ ├── en_HU.txt │ │ ├── en_ID.txt │ │ ├── en_IE.txt │ │ ├── en_IL.txt │ │ ├── en_IM.txt │ │ ├── en_IN.txt │ │ ├── en_IO.txt │ │ ├── en_JE.txt │ │ ├── en_JM.txt │ │ ├── en_KE.txt │ │ ├── en_KI.txt │ │ ├── en_KN.txt │ │ ├── en_KY.txt │ │ ├── en_LC.txt │ │ ├── en_LR.txt │ │ ├── en_LS.txt │ │ ├── en_LT.txt │ │ ├── en_LV.txt │ │ ├── en_MG.txt │ │ ├── en_MM.txt │ │ ├── en_MO.txt │ │ ├── en_MS.txt │ │ ├── en_MT.txt │ │ ├── en_MU.txt │ │ ├── en_MV.txt │ │ ├── en_MW.txt │ │ ├── en_MY.txt │ │ ├── en_NA.txt │ │ ├── en_NF.txt │ │ ├── en_NG.txt │ │ ├── en_NH.txt │ │ ├── en_NL.txt │ │ ├── en_NO.txt │ │ ├── en_NR.txt │ │ ├── en_NU.txt │ │ ├── en_NZ.txt │ │ ├── en_PG.txt │ │ ├── en_PK.txt │ │ ├── en_PL.txt │ │ ├── en_PN.txt │ │ ├── en_PT.txt │ │ ├── en_PW.txt │ │ ├── en_RH.txt │ │ ├── en_RU.txt │ │ ├── en_RW.txt │ │ ├── en_SB.txt │ │ ├── en_SC.txt │ │ ├── en_SD.txt │ │ ├── en_SE.txt │ │ ├── en_SG.txt │ │ ├── en_SH.txt │ │ ├── en_SI.txt │ │ ├── en_SK.txt │ │ ├── en_SL.txt │ │ ├── en_SS.txt │ │ ├── en_SX.txt │ │ ├── en_SZ.txt │ │ ├── en_TC.txt │ │ ├── en_TH.txt │ │ ├── en_TK.txt │ │ ├── en_TO.txt │ │ ├── en_TT.txt │ │ ├── en_TV.txt │ │ ├── en_TZ.txt │ │ ├── en_UA.txt │ │ ├── en_UG.txt │ │ ├── en_VC.txt │ │ ├── en_VG.txt │ │ ├── en_VU.txt │ │ ├── en_WS.txt │ │ ├── en_ZA.txt │ │ ├── en_ZM.txt │ │ ├── en_ZW.txt │ │ ├── eo.txt │ │ ├── es.txt │ │ ├── es_419.txt │ │ ├── es_AG.txt │ │ ├── es_AR.txt │ │ ├── es_BB.txt │ │ ├── es_BM.txt │ │ ├── es_BO.txt │ │ ├── es_BQ.txt │ │ ├── es_BR.txt │ │ ├── es_BS.txt │ │ ├── es_BZ.txt │ │ ├── es_CA.txt │ │ ├── es_CL.txt │ │ ├── es_CO.txt │ │ ├── es_CR.txt │ │ ├── es_CU.txt │ │ ├── es_CW.txt │ │ ├── es_DM.txt │ │ ├── es_DO.txt │ │ ├── es_EC.txt │ │ ├── es_GD.txt │ │ ├── es_GT.txt │ │ ├── es_GY.txt │ │ ├── es_HN.txt │ │ ├── es_HT.txt │ │ ├── es_KN.txt │ │ ├── es_KY.txt │ │ ├── es_LC.txt │ │ ├── es_MX.txt │ │ ├── es_NI.txt │ │ ├── es_PA.txt │ │ ├── es_PE.txt │ │ ├── es_PR.txt │ │ ├── es_PY.txt │ │ ├── es_SV.txt │ │ ├── es_TC.txt │ │ ├── es_TT.txt │ │ ├── es_US.txt │ │ ├── es_UY.txt │ │ ├── es_VC.txt │ │ ├── es_VE.txt │ │ ├── es_VG.txt │ │ ├── es_VI.txt │ │ ├── et.txt │ │ ├── eu.txt │ │ ├── ewo.txt │ │ ├── fa.txt │ │ ├── fa_AF.txt │ │ ├── ff.txt │ │ ├── ff_Adlm.txt │ │ ├── ff_CM.txt │ │ ├── ff_GN.txt │ │ ├── ff_Latn.txt │ │ ├── ff_Latn_CM.txt │ │ ├── ff_Latn_GN.txt │ │ ├── ff_Latn_MR.txt │ │ ├── ff_Latn_SN.txt │ │ ├── ff_MR.txt │ │ ├── ff_SN.txt │ │ ├── fi.txt │ │ ├── fil.txt │ │ ├── fil_PH.txt │ │ ├── fo.txt │ │ ├── fr.txt │ │ ├── fr_BE.txt │ │ ├── fr_CA.txt │ │ ├── fr_HT.txt │ │ ├── fur.txt │ │ ├── fy.txt │ │ ├── ga.txt │ │ ├── gaa.txt │ │ ├── gd.txt │ │ ├── gez.txt │ │ ├── gl.txt │ │ ├── gn.txt │ │ ├── gsw.txt │ │ ├── gu.txt │ │ ├── guz.txt │ │ ├── gv.txt │ │ ├── ha.txt │ │ ├── haw.txt │ │ ├── hch.txt │ │ ├── he.txt │ │ ├── he_IL.txt │ │ ├── hi.txt │ │ ├── hi_Latn.txt │ │ ├── hmn.txt │ │ ├── hr.txt │ │ ├── hsb.txt │ │ ├── ht.txt │ │ ├── hu.txt │ │ ├── hy.txt │ │ ├── ia.txt │ │ ├── id.txt │ │ ├── id_ID.txt │ │ ├── ie.txt │ │ ├── ig.txt │ │ ├── ii.txt │ │ ├── in.txt │ │ ├── in_ID.txt │ │ ├── inh.txt │ │ ├── io.txt │ │ ├── is.txt │ │ ├── isc.txt │ │ ├── it.txt │ │ ├── iu.txt │ │ ├── iw.txt │ │ ├── iw_IL.txt │ │ ├── ja.txt │ │ ├── jbo.txt │ │ ├── jgo.txt │ │ ├── jmc.txt │ │ ├── jv.txt │ │ ├── ka.txt │ │ ├── kab.txt │ │ ├── kaj.txt │ │ ├── kam.txt │ │ ├── kcg.txt │ │ ├── kde.txt │ │ ├── kea.txt │ │ ├── kgp.txt │ │ ├── khq.txt │ │ ├── ki.txt │ │ ├── kk.txt │ │ ├── kkj.txt │ │ ├── kl.txt │ │ ├── kln.txt │ │ ├── km.txt │ │ ├── kn.txt │ │ ├── ko.txt │ │ ├── ko_KP.txt │ │ ├── kok.txt │ │ ├── kok_Latn.txt │ │ ├── kpe.txt │ │ ├── ks.txt │ │ ├── ks_Arab.txt │ │ ├── ks_Aran.txt │ │ ├── ks_Aran_IN.txt │ │ ├── ks_Deva.txt │ │ ├── ks_IN.txt │ │ ├── ksb.txt │ │ ├── ksf.txt │ │ ├── ksh.txt │ │ ├── ku.txt │ │ ├── kw.txt │ │ ├── kxv.txt │ │ ├── kxv_Deva.txt │ │ ├── kxv_IN.txt │ │ ├── kxv_Latn.txt │ │ ├── kxv_Latn_IN.txt │ │ ├── kxv_Orya.txt │ │ ├── kxv_Telu.txt │ │ ├── ky.txt │ │ ├── lag.txt │ │ ├── lb.txt │ │ ├── lg.txt │ │ ├── lij.txt │ │ ├── lkt.txt │ │ ├── lmo.txt │ │ ├── ln.txt │ │ ├── lo.txt │ │ ├── lrc.txt │ │ ├── lt.txt │ │ ├── lu.txt │ │ ├── luo.txt │ │ ├── lut.txt │ │ ├── luy.txt │ │ ├── lv.txt │ │ ├── mai.txt │ │ ├── mas.txt │ │ ├── mer.txt │ │ ├── mfe.txt │ │ ├── mg.txt │ │ ├── mgh.txt │ │ ├── mgo.txt │ │ ├── mi.txt │ │ ├── mic.txt │ │ ├── mid.txt │ │ ├── mk.txt │ │ ├── ml.txt │ │ ├── mn.txt │ │ ├── mni.txt │ │ ├── mni_Beng.txt │ │ ├── mni_Beng_IN.txt │ │ ├── mni_IN.txt │ │ ├── mni_Mtei.txt │ │ ├── mo.txt │ │ ├── moh.txt │ │ ├── mr.txt │ │ ├── ms.txt │ │ ├── ms_Arab.txt │ │ ├── mt.txt │ │ ├── mua.txt │ │ ├── mus.txt │ │ ├── my.txt │ │ ├── myv.txt │ │ ├── mzn.txt │ │ ├── naq.txt │ │ ├── nb.txt │ │ ├── nd.txt │ │ ├── nds.txt │ │ ├── ne.txt │ │ ├── nez.txt │ │ ├── nl.txt │ │ ├── nmg.txt │ │ ├── nn.txt │ │ ├── nn_NO.txt │ │ ├── nnh.txt │ │ ├── nnp.txt │ │ ├── no.txt │ │ ├── no_NO.txt │ │ ├── no_NO_NY.txt │ │ ├── nqo.txt │ │ ├── nr.txt │ │ ├── nso.txt │ │ ├── nus.txt │ │ ├── nv.txt │ │ ├── ny.txt │ │ ├── nyn.txt │ │ ├── oc.txt │ │ ├── oc_ES.txt │ │ ├── om.txt │ │ ├── or.txt │ │ ├── os.txt │ │ ├── osa.txt │ │ ├── pa.txt │ │ ├── pa_Arab.txt │ │ ├── pa_Aran.txt │ │ ├── pa_Aran_PK.txt │ │ ├── pa_Guru.txt │ │ ├── pa_Guru_IN.txt │ │ ├── pa_IN.txt │ │ ├── pa_PK.txt │ │ ├── pcm.txt │ │ ├── pl.txt │ │ ├── pqm.txt │ │ ├── prg.txt │ │ ├── ps.txt │ │ ├── ps_PK.txt │ │ ├── pt.txt │ │ ├── pt_AO.txt │ │ ├── pt_CH.txt │ │ ├── pt_CV.txt │ │ ├── pt_FR.txt │ │ ├── pt_GQ.txt │ │ ├── pt_GW.txt │ │ ├── pt_LU.txt │ │ ├── pt_MO.txt │ │ ├── pt_MZ.txt │ │ ├── pt_PT.txt │ │ ├── pt_ST.txt │ │ ├── pt_TL.txt │ │ ├── qu.txt │ │ ├── raj.txt │ │ ├── rej.txt │ │ ├── rej_Rjng.txt │ │ ├── rhg.txt │ │ ├── rm.txt │ │ ├── rn.txt │ │ ├── ro.txt │ │ ├── ro_MD.txt │ │ ├── rof.txt │ │ ├── root.txt │ │ ├── ru.txt │ │ ├── ru_UA.txt │ │ ├── rw.txt │ │ ├── rwk.txt │ │ ├── sa.txt │ │ ├── sah.txt │ │ ├── saq.txt │ │ ├── sat.txt │ │ ├── sat_Deva.txt │ │ ├── sat_IN.txt │ │ ├── sat_Olck.txt │ │ ├── sat_Olck_IN.txt │ │ ├── sbp.txt │ │ ├── sc.txt │ │ ├── scn.txt │ │ ├── sd.txt │ │ ├── sd_Arab.txt │ │ ├── sd_Arab_PK.txt │ │ ├── sd_Deva.txt │ │ ├── sd_Deva_IN.txt │ │ ├── sd_IN.txt │ │ ├── sd_PK.txt │ │ ├── se.txt │ │ ├── se_FI.txt │ │ ├── seh.txt │ │ ├── ses.txt │ │ ├── sg.txt │ │ ├── sh.txt │ │ ├── sh_BA.txt │ │ ├── sh_CS.txt │ │ ├── sh_YU.txt │ │ ├── shi.txt │ │ ├── shi_Latn.txt │ │ ├── shi_MA.txt │ │ ├── shi_Tfng.txt │ │ ├── shi_Tfng_MA.txt │ │ ├── shp.txt │ │ ├── si.txt │ │ ├── sjd.txt │ │ ├── sje.txt │ │ ├── sju.txt │ │ ├── sk.txt │ │ ├── sl.txt │ │ ├── sm.txt │ │ ├── smn.txt │ │ ├── sn.txt │ │ ├── so.txt │ │ ├── sq.txt │ │ ├── sr.txt │ │ ├── sr_BA.txt │ │ ├── sr_CS.txt │ │ ├── sr_Cyrl.txt │ │ ├── sr_Cyrl_BA.txt │ │ ├── sr_Cyrl_CS.txt │ │ ├── sr_Cyrl_ME.txt │ │ ├── sr_Cyrl_RS.txt │ │ ├── sr_Cyrl_XK.txt │ │ ├── sr_Cyrl_YU.txt │ │ ├── sr_Latn.txt │ │ ├── sr_Latn_BA.txt │ │ ├── sr_Latn_CS.txt │ │ ├── sr_Latn_ME.txt │ │ ├── sr_Latn_RS.txt │ │ ├── sr_Latn_XK.txt │ │ ├── sr_Latn_YU.txt │ │ ├── sr_ME.txt │ │ ├── sr_RS.txt │ │ ├── sr_XK.txt │ │ ├── sr_YU.txt │ │ ├── ss.txt │ │ ├── st.txt │ │ ├── su.txt │ │ ├── su_ID.txt │ │ ├── su_Latn.txt │ │ ├── su_Latn_ID.txt │ │ ├── sv.txt │ │ ├── sw.txt │ │ ├── sw_CD.txt │ │ ├── sw_KE.txt │ │ ├── syr.txt │ │ ├── szl.txt │ │ ├── ta.txt │ │ ├── te.txt │ │ ├── teo.txt │ │ ├── tg.txt │ │ ├── th.txt │ │ ├── ti.txt │ │ ├── tig.txt │ │ ├── tk.txt │ │ ├── tl.txt │ │ ├── tl_PH.txt │ │ ├── tn.txt │ │ ├── to.txt │ │ ├── tok.txt │ │ ├── tr.txt │ │ ├── trv.txt │ │ ├── ts.txt │ │ ├── tt.txt │ │ ├── twq.txt │ │ ├── tzm.txt │ │ ├── ug.txt │ │ ├── uk.txt │ │ ├── ur.txt │ │ ├── ur_Arab.txt │ │ ├── ur_Arab_IN.txt │ │ ├── ur_Aran.txt │ │ ├── ur_Aran_IN.txt │ │ ├── ur_Aran_PK.txt │ │ ├── ur_IN.txt │ │ ├── ur_PK.txt │ │ ├── uz.txt │ │ ├── uz_AF.txt │ │ ├── uz_Arab.txt │ │ ├── uz_Arab_AF.txt │ │ ├── uz_Cyrl.txt │ │ ├── uz_Latn.txt │ │ ├── uz_Latn_UZ.txt │ │ ├── uz_UZ.txt │ │ ├── vai.txt │ │ ├── vai_LR.txt │ │ ├── vai_Latn.txt │ │ ├── vai_Vaii.txt │ │ ├── vai_Vaii_LR.txt │ │ ├── ve.txt │ │ ├── vec.txt │ │ ├── vi.txt │ │ ├── vmw.txt │ │ ├── vun.txt │ │ ├── wa.txt │ │ ├── wae.txt │ │ ├── wal.txt │ │ ├── wo.txt │ │ ├── wuu.txt │ │ ├── xh.txt │ │ ├── xnr.txt │ │ ├── xog.txt │ │ ├── yav.txt │ │ ├── yi.txt │ │ ├── yo.txt │ │ ├── yo_BJ.txt │ │ ├── yrl.txt │ │ ├── yrl_CO.txt │ │ ├── yrl_VE.txt │ │ ├── yue.txt │ │ ├── yue_CN.txt │ │ ├── yue_HK.txt │ │ ├── yue_Hans.txt │ │ ├── yue_Hans_CN.txt │ │ ├── yue_Hant.txt │ │ ├── yue_Hant_HK.txt │ │ ├── za.txt │ │ ├── zgh.txt │ │ ├── zh.txt │ │ ├── zh_CN.txt │ │ ├── zh_HK.txt │ │ ├── zh_Hans.txt │ │ ├── zh_Hans_CN.txt │ │ ├── zh_Hans_JP.txt │ │ ├── zh_Hans_SG.txt │ │ ├── zh_Hant.txt │ │ ├── zh_Hant_HK.txt │ │ ├── zh_Hant_MO.txt │ │ ├── zh_Hant_TW.txt │ │ ├── zh_JP.txt │ │ ├── zh_MO.txt │ │ ├── zh_SG.txt │ │ ├── zh_TW.txt │ │ └── zu.txt │ ├── sprep │ │ ├── rfc3491.txt │ │ ├── rfc3530cs.txt │ │ ├── rfc3530csci.txt │ │ ├── rfc3530mixp.txt │ │ ├── rfc3722.txt │ │ ├── rfc3920node.txt │ │ ├── rfc3920res.txt │ │ ├── rfc4011.txt │ │ ├── rfc4013.txt │ │ ├── rfc4505.txt │ │ ├── rfc4518.txt │ │ ├── rfc4518ci.txt │ │ └── sprepfiles.mk │ ├── translit │ │ ├── Any_Accents.txt │ │ ├── Any_Publishing.txt │ │ ├── Any_SoftbankSMS.txt │ │ ├── Arab_Latn.txt │ │ ├── Beng_Arab.txt │ │ ├── Beng_Deva.txt │ │ ├── Beng_Gujr.txt │ │ ├── Beng_Guru.txt │ │ ├── Beng_Knda.txt │ │ ├── Beng_Latn.txt │ │ ├── Beng_Mlym.txt │ │ ├── Beng_Orya.txt │ │ ├── Beng_Taml.txt │ │ ├── Beng_Telu.txt │ │ ├── Beng_ur.txt │ │ ├── Bengali_InterIndic.txt │ │ ├── Cyrl_Latn.txt │ │ ├── Deva_Arab.txt │ │ ├── Deva_Beng.txt │ │ ├── Deva_Gujr.txt │ │ ├── Deva_Guru.txt │ │ ├── Deva_Knda.txt │ │ ├── Deva_Latn.txt │ │ ├── Deva_Mlym.txt │ │ ├── Deva_Orya.txt │ │ ├── Deva_Taml.txt │ │ ├── Deva_Telu.txt │ │ ├── Deva_ur.txt │ │ ├── Devanagari_InterIndic.txt │ │ ├── Ethi_Cyrl_Gutgarts.txt │ │ ├── Ethi_Latn.txt │ │ ├── Ethi_Latn_ALALOC.txt │ │ ├── Ethi_Latn_ALALOC_Geminate.txt │ │ ├── Ethi_Latn_Aethiopi.txt │ │ ├── Ethi_Latn_Aethiopi_Geminate.txt │ │ ├── Ethi_Latn_Beta_Metsehaf.txt │ │ ├── Ethi_Latn_Beta_Metsehaf_Geminate.txt │ │ ├── Ethi_Latn_ES3842.txt │ │ ├── Ethi_Latn_IES_JES_1964.txt │ │ ├── Ethi_Latn_IES_JES_1964_Geminate.txt │ │ ├── Ethi_Latn_Lambdin.txt │ │ ├── Ethi_Latn_SERA.txt │ │ ├── Fullwidth_Halfwidth.txt │ │ ├── Geor_Latn.txt │ │ ├── Grek_Latn.txt │ │ ├── Grek_Latn_UNGEGN.txt │ │ ├── Gujarati_InterIndic.txt │ │ ├── Gujr_Arab.txt │ │ ├── Gujr_Beng.txt │ │ ├── Gujr_Deva.txt │ │ ├── Gujr_Guru.txt │ │ ├── Gujr_Knda.txt │ │ ├── Gujr_Latn.txt │ │ ├── Gujr_Mlym.txt │ │ ├── Gujr_Orya.txt │ │ ├── Gujr_Taml.txt │ │ ├── Gujr_Telu.txt │ │ ├── Gujr_ur.txt │ │ ├── Gurmukhi_InterIndic.txt │ │ ├── Guru_Arab.txt │ │ ├── Guru_Beng.txt │ │ ├── Guru_Deva.txt │ │ ├── Guru_Gujr.txt │ │ ├── Guru_Knda.txt │ │ ├── Guru_Latn.txt │ │ ├── Guru_Mlym.txt │ │ ├── Guru_Orya.txt │ │ ├── Guru_Taml.txt │ │ ├── Guru_Telu.txt │ │ ├── Guru_ur.txt │ │ ├── Han_Latin_Names.txt │ │ ├── Han_Spacedhan.txt │ │ ├── Hang_Latn.txt │ │ ├── Hani_Latn.txt │ │ ├── Hans_Hant.txt │ │ ├── Hebr_Latn.txt │ │ ├── Hira_Kana.txt │ │ ├── Hira_Latn.txt │ │ ├── InterIndic_Arabic.txt │ │ ├── InterIndic_Bengali.txt │ │ ├── InterIndic_Devanagari.txt │ │ ├── InterIndic_Gujarati.txt │ │ ├── InterIndic_Gurmukhi.txt │ │ ├── InterIndic_Kannada.txt │ │ ├── InterIndic_Latin.txt │ │ ├── InterIndic_Malayalam.txt │ │ ├── InterIndic_Oriya.txt │ │ ├── InterIndic_Tamil.txt │ │ ├── InterIndic_Telugu.txt │ │ ├── InterIndic_ur.txt │ │ ├── Jamo_Latn.txt │ │ ├── Kannada_InterIndic.txt │ │ ├── Knda_Arab.txt │ │ ├── Knda_Beng.txt │ │ ├── Knda_Deva.txt │ │ ├── Knda_Gujr.txt │ │ ├── Knda_Guru.txt │ │ ├── Knda_Latn.txt │ │ ├── Knda_Mlym.txt │ │ ├── Knda_Orya.txt │ │ ├── Knda_Taml.txt │ │ ├── Knda_Telu.txt │ │ ├── Knda_ur.txt │ │ ├── Latin_ASCII.txt │ │ ├── Latin_ConjoiningJamo.txt │ │ ├── Latin_InterIndic.txt │ │ ├── Latin_NumericPinyin.txt │ │ ├── Latn_Armn.txt │ │ ├── Latn_Beng.txt │ │ ├── Latn_Bopo.txt │ │ ├── Latn_Cans.txt │ │ ├── Latn_Deva.txt │ │ ├── Latn_Ethi_Williamson.txt │ │ ├── Latn_Gujr.txt │ │ ├── Latn_Guru.txt │ │ ├── Latn_Hang.txt │ │ ├── Latn_Jamo.txt │ │ ├── Latn_Kana.txt │ │ ├── Latn_Knda.txt │ │ ├── Latn_Mlym.txt │ │ ├── Latn_Orya.txt │ │ ├── Latn_Taml.txt │ │ ├── Latn_Telu.txt │ │ ├── Latn_Thaa.txt │ │ ├── Latn_Thai.txt │ │ ├── Malayalam_InterIndic.txt │ │ ├── Mlym_Arab.txt │ │ ├── Mlym_Beng.txt │ │ ├── Mlym_Deva.txt │ │ ├── Mlym_Gujr.txt │ │ ├── Mlym_Guru.txt │ │ ├── Mlym_Knda.txt │ │ ├── Mlym_Latn.txt │ │ ├── Mlym_Orya.txt │ │ ├── Mlym_Taml.txt │ │ ├── Mlym_Telu.txt │ │ ├── Mlym_ur.txt │ │ ├── Oriya_InterIndic.txt │ │ ├── Orya_Arab.txt │ │ ├── Orya_Beng.txt │ │ ├── Orya_Deva.txt │ │ ├── Orya_Gujr.txt │ │ ├── Orya_Guru.txt │ │ ├── Orya_Knda.txt │ │ ├── Orya_Latn.txt │ │ ├── Orya_Mlym.txt │ │ ├── Orya_Taml.txt │ │ ├── Orya_Telu.txt │ │ ├── Orya_ur.txt │ │ ├── Pinyin_NumericPinyin.txt │ │ ├── Simplified_Traditional_UniqueTraditionals.txt │ │ ├── Syrc_Latn.txt │ │ ├── Tamil_InterIndic.txt │ │ ├── Taml_Arab.txt │ │ ├── Taml_Beng.txt │ │ ├── Taml_Deva.txt │ │ ├── Taml_Gujr.txt │ │ ├── Taml_Guru.txt │ │ ├── Taml_Knda.txt │ │ ├── Taml_Latn.txt │ │ ├── Taml_Mlym.txt │ │ ├── Taml_Orya.txt │ │ ├── Taml_Telu.txt │ │ ├── Taml_ur.txt │ │ ├── Telu_Arab.txt │ │ ├── Telu_Beng.txt │ │ ├── Telu_Deva.txt │ │ ├── Telu_Gujr.txt │ │ ├── Telu_Guru.txt │ │ ├── Telu_Knda.txt │ │ ├── Telu_Latn.txt │ │ ├── Telu_Mlym.txt │ │ ├── Telu_Orya.txt │ │ ├── Telu_Taml.txt │ │ ├── Telu_ur.txt │ │ ├── Telugu_InterIndic.txt │ │ ├── ThaiLogical_Latin.txt │ │ ├── Thai_Latn.txt │ │ ├── Thai_ThaiLogical.txt │ │ ├── Thai_ThaiSemi.txt │ │ ├── Zawgyi_my.txt │ │ ├── am_Ethi_am_Brai.txt │ │ ├── am_Ethi_am_Ethi_Geminate.txt │ │ ├── am_Ethi_d0_Morse.txt │ │ ├── am_am_FONIPA.txt │ │ ├── am_am_Latn_BGN.txt │ │ ├── am_ar.txt │ │ ├── am_chr.txt │ │ ├── am_fa.txt │ │ ├── ar_ar_Latn_BGN.txt │ │ ├── az_Cyrl_az_BGN.txt │ │ ├── az_Lower.txt │ │ ├── az_Title.txt │ │ ├── az_Upper.txt │ │ ├── be_be_Latn_BGN.txt │ │ ├── bg_bg_Latn_BGN.txt │ │ ├── blt_blt_FONIPA.txt │ │ ├── byn_Ethi_byn_Latn_Tekie_Alibekit.txt │ │ ├── byn_Ethi_byn_Latn_Xaleget.txt │ │ ├── ch_am.txt │ │ ├── ch_ar.txt │ │ ├── ch_ch_FONIPA.txt │ │ ├── ch_chr.txt │ │ ├── ch_fa.txt │ │ ├── chr_chr_FONIPA.txt │ │ ├── cs_FONIPA_ja.txt │ │ ├── cs_FONIPA_ko.txt │ │ ├── cs_am.txt │ │ ├── cs_ar.txt │ │ ├── cs_chr.txt │ │ ├── cs_cs_FONIPA.txt │ │ ├── cs_fa.txt │ │ ├── cs_ja.txt │ │ ├── cs_ko.txt │ │ ├── cy_cy_FONIPA.txt │ │ ├── de_ASCII.txt │ │ ├── dsb_dsb_FONIPA.txt │ │ ├── dv_dv_Latn_BGN.txt │ │ ├── el.txt │ │ ├── el_Lower.txt │ │ ├── el_Title.txt │ │ ├── el_Upper.txt │ │ ├── el_el_Latn_BGN.txt │ │ ├── en.txt │ │ ├── eo_am.txt │ │ ├── eo_ar.txt │ │ ├── eo_chr.txt │ │ ├── eo_eo_FONIPA.txt │ │ ├── eo_fa.txt │ │ ├── es_419_am.txt │ │ ├── es_419_ar.txt │ │ ├── es_419_chr.txt │ │ ├── es_419_fa.txt │ │ ├── es_419_ja.txt │ │ ├── es_419_zh.txt │ │ ├── es_FONIPA_am.txt │ │ ├── es_FONIPA_es_419_FONIPA.txt │ │ ├── es_FONIPA_ja.txt │ │ ├── es_FONIPA_zh.txt │ │ ├── es_am.txt │ │ ├── es_ar.txt │ │ ├── es_chr.txt │ │ ├── es_es_FONIPA.txt │ │ ├── es_fa.txt │ │ ├── es_ja.txt │ │ ├── es_zh.txt │ │ ├── fa_fa_FONIPA.txt │ │ ├── fa_fa_Latn_BGN.txt │ │ ├── gz_Ethi_Sarb.txt │ │ ├── ha_ha_NE.txt │ │ ├── he_he_Latn_BGN.txt │ │ ├── hy_AREVMDA_am.txt │ │ ├── hy_AREVMDA_ar.txt │ │ ├── hy_AREVMDA_chr.txt │ │ ├── hy_AREVMDA_fa.txt │ │ ├── hy_AREVMDA_hy_AREVMDA_FONIPA.txt │ │ ├── hy_am.txt │ │ ├── hy_ar.txt │ │ ├── hy_chr.txt │ │ ├── hy_fa.txt │ │ ├── hy_hy_FONIPA.txt │ │ ├── hy_hy_Latn_BGN.txt │ │ ├── ia_am.txt │ │ ├── ia_ar.txt │ │ ├── ia_chr.txt │ │ ├── ia_fa.txt │ │ ├── ia_ia_FONIPA.txt │ │ ├── it_am.txt │ │ ├── it_ja.txt │ │ ├── ja_Hrkt_ja_Latn_BGN.txt │ │ ├── ja_Latn_ko.txt │ │ ├── ja_Latn_ru.txt │ │ ├── ka_ka_Latn_BGN.txt │ │ ├── ka_ka_Latn_BGN_1981.txt │ │ ├── kk_am.txt │ │ ├── kk_ar.txt │ │ ├── kk_chr.txt │ │ ├── kk_fa.txt │ │ ├── kk_kk_FONIPA.txt │ │ ├── kk_kk_Latn_BGN.txt │ │ ├── ko_ko_Latn_BGN.txt │ │ ├── ky_am.txt │ │ ├── ky_ar.txt │ │ ├── ky_chr.txt │ │ ├── ky_fa.txt │ │ ├── ky_ky_FONIPA.txt │ │ ├── ky_ky_Latn_BGN.txt │ │ ├── la_la_FONIPA.txt │ │ ├── lt_Lower.txt │ │ ├── lt_Title.txt │ │ ├── lt_Upper.txt │ │ ├── mk_mk_Latn_BGN.txt │ │ ├── mn_mn_Latn_BGN.txt │ │ ├── mn_mn_Latn_MNS.txt │ │ ├── my_Zawgyi.txt │ │ ├── my_am.txt │ │ ├── my_ar.txt │ │ ├── my_chr.txt │ │ ├── my_fa.txt │ │ ├── my_my_FONIPA.txt │ │ ├── my_my_Latn.txt │ │ ├── nl_Title.txt │ │ ├── nv_nv_FONIPA.txt │ │ ├── pl_FONIPA_ja.txt │ │ ├── pl_am.txt │ │ ├── pl_ar.txt │ │ ├── pl_chr.txt │ │ ├── pl_fa.txt │ │ ├── pl_ja.txt │ │ ├── pl_pl_FONIPA.txt │ │ ├── ps_ps_Latn_BGN.txt │ │ ├── rm_SURSILV_am.txt │ │ ├── rm_SURSILV_ar.txt │ │ ├── rm_SURSILV_chr.txt │ │ ├── rm_SURSILV_fa.txt │ │ ├── rm_SURSILV_rm_FONIPA_SURSILV.txt │ │ ├── ro_FONIPA_ja.txt │ │ ├── ro_am.txt │ │ ├── ro_ar.txt │ │ ├── ro_chr.txt │ │ ├── ro_fa.txt │ │ ├── ro_ja.txt │ │ ├── ro_ro_FONIPA.txt │ │ ├── root.txt │ │ ├── ru_Latn_ru_BGN.txt │ │ ├── ru_ja.txt │ │ ├── ru_ru_Latn_BGN.txt │ │ ├── ru_zh.txt │ │ ├── sat_Olck_sat_FONIPA.txt │ │ ├── sat_am.txt │ │ ├── sat_ar.txt │ │ ├── sat_chr.txt │ │ ├── sat_fa.txt │ │ ├── sgw_Ethi_Ethi_Gurage_2013.txt │ │ ├── si_am.txt │ │ ├── si_ar.txt │ │ ├── si_chr.txt │ │ ├── si_fa.txt │ │ ├── si_si_FONIPA.txt │ │ ├── si_si_Latn.txt │ │ ├── sk_FONIPA_ja.txt │ │ ├── sk_am.txt │ │ ├── sk_ar.txt │ │ ├── sk_chr.txt │ │ ├── sk_fa.txt │ │ ├── sk_ja.txt │ │ ├── sk_sk_FONIPA.txt │ │ ├── sr_sr_Latn_BGN.txt │ │ ├── ta_ta_FONIPA.txt │ │ ├── tk_Cyrl_tk_BGN.txt │ │ ├── tlh_am.txt │ │ ├── tlh_ar.txt │ │ ├── tlh_chr.txt │ │ ├── tlh_fa.txt │ │ ├── tlh_tlh_FONIPA.txt │ │ ├── tr_Lower.txt │ │ ├── tr_Title.txt │ │ ├── tr_Upper.txt │ │ ├── ug_ug_FONIPA.txt │ │ ├── uk_uk_Latn_BGN.txt │ │ ├── und_FONIPA_ar.txt │ │ ├── und_FONIPA_chr.txt │ │ ├── und_FONIPA_fa.txt │ │ ├── und_FONIPA_und_FONXSAMP.txt │ │ ├── uz_Cyrl_uz_BGN.txt │ │ ├── uz_Cyrl_uz_Latn.txt │ │ ├── vec_vec_FONIPA.txt │ │ ├── xh_am.txt │ │ ├── xh_ar.txt │ │ ├── xh_chr.txt │ │ ├── xh_fa.txt │ │ ├── xh_xh_FONIPA.txt │ │ ├── yo_yo_BJ.txt │ │ ├── zh_Latn_PINYIN_ru.txt │ │ ├── zu_am.txt │ │ ├── zu_ar.txt │ │ ├── zu_chr.txt │ │ ├── zu_fa.txt │ │ └── zu_zu_FONIPA.txt │ ├── unidata │ │ ├── CaseFolding.txt │ │ ├── DerivedCoreProperties.txt │ │ ├── DerivedNormalizationProps.txt │ │ ├── FractionalUCA.txt │ │ ├── NormalizationCorrections.txt │ │ ├── NormalizationTest.txt │ │ ├── SpecialCasing.txt │ │ ├── UCARules.txt │ │ ├── UnicodeData.txt │ │ ├── base_unidata │ │ │ ├── DerivedCoreProperties.txt │ │ │ ├── UnicodeData.txt │ │ │ └── ppucd.txt │ │ ├── changes.txt │ │ ├── clean.sh │ │ ├── confusables.txt │ │ ├── confusablesWholeScript.txt │ │ ├── emoji-sequences.txt │ │ ├── emoji-zwj-sequences.txt │ │ ├── generate.sh │ │ ├── norm2 │ │ │ ├── BUILD.bazel │ │ │ ├── nfc.txt │ │ │ ├── nfkc.txt │ │ │ ├── nfkc_cf.txt │ │ │ ├── nfkc_scf.txt │ │ │ └── uts46.txt │ │ ├── ppucd.txt │ │ └── ucdterms.txt │ ├── unit │ │ ├── LOCALE_DEPS.json │ │ ├── af.txt │ │ ├── agq.txt │ │ ├── ain.txt │ │ ├── ak.txt │ │ ├── am.txt │ │ ├── apw.txt │ │ ├── ar.txt │ │ ├── ar_SA.txt │ │ ├── arn.txt │ │ ├── ars.txt │ │ ├── as.txt │ │ ├── asa.txt │ │ ├── ast.txt │ │ ├── az.txt │ │ ├── az_AZ.txt │ │ ├── az_Cyrl.txt │ │ ├── az_Latn.txt │ │ ├── az_Latn_AZ.txt │ │ ├── ba.txt │ │ ├── bas.txt │ │ ├── be.txt │ │ ├── bem.txt │ │ ├── ber.txt │ │ ├── ber_Latn.txt │ │ ├── bez.txt │ │ ├── bg.txt │ │ ├── bgc.txt │ │ ├── bho.txt │ │ ├── blo.txt │ │ ├── bm.txt │ │ ├── bn.txt │ │ ├── bn_IN.txt │ │ ├── bo.txt │ │ ├── br.txt │ │ ├── brx.txt │ │ ├── bs.txt │ │ ├── bs_BA.txt │ │ ├── bs_Cyrl.txt │ │ ├── bs_Latn.txt │ │ ├── bs_Latn_BA.txt │ │ ├── byn.txt │ │ ├── ca.txt │ │ ├── ccp.txt │ │ ├── ce.txt │ │ ├── ceb.txt │ │ ├── cgg.txt │ │ ├── cho.txt │ │ ├── chr.txt │ │ ├── cic.txt │ │ ├── ckb.txt │ │ ├── co.txt │ │ ├── cs.txt │ │ ├── cst.txt │ │ ├── csw.txt │ │ ├── cv.txt │ │ ├── cy.txt │ │ ├── da.txt │ │ ├── dav.txt │ │ ├── de.txt │ │ ├── de_CH.txt │ │ ├── dje.txt │ │ ├── doi.txt │ │ ├── dsb.txt │ │ ├── dua.txt │ │ ├── dv.txt │ │ ├── dyo.txt │ │ ├── dz.txt │ │ ├── ebu.txt │ │ ├── ee.txt │ │ ├── el.txt │ │ ├── en.txt │ │ ├── en_001.txt │ │ ├── en_150.txt │ │ ├── en_AG.txt │ │ ├── en_AI.txt │ │ ├── en_AL.txt │ │ ├── en_AR.txt │ │ ├── en_AT.txt │ │ ├── en_AU.txt │ │ ├── en_BB.txt │ │ ├── en_BD.txt │ │ ├── en_BE.txt │ │ ├── en_BG.txt │ │ ├── en_BM.txt │ │ ├── en_BN.txt │ │ ├── en_BR.txt │ │ ├── en_BS.txt │ │ ├── en_BW.txt │ │ ├── en_BZ.txt │ │ ├── en_CA.txt │ │ ├── en_CC.txt │ │ ├── en_CH.txt │ │ ├── en_CK.txt │ │ ├── en_CM.txt │ │ ├── en_CV.txt │ │ ├── en_CX.txt │ │ ├── en_CY.txt │ │ ├── en_CZ.txt │ │ ├── en_DE.txt │ │ ├── en_DG.txt │ │ ├── en_DK.txt │ │ ├── en_DM.txt │ │ ├── en_EE.txt │ │ ├── en_ER.txt │ │ ├── en_FI.txt │ │ ├── en_FJ.txt │ │ ├── en_FK.txt │ │ ├── en_FM.txt │ │ ├── en_FR.txt │ │ ├── en_GB.txt │ │ ├── en_GD.txt │ │ ├── en_GG.txt │ │ ├── en_GH.txt │ │ ├── en_GI.txt │ │ ├── en_GM.txt │ │ ├── en_GR.txt │ │ ├── en_GY.txt │ │ ├── en_HK.txt │ │ ├── en_HU.txt │ │ ├── en_ID.txt │ │ ├── en_IE.txt │ │ ├── en_IL.txt │ │ ├── en_IM.txt │ │ ├── en_IN.txt │ │ ├── en_IO.txt │ │ ├── en_JE.txt │ │ ├── en_JM.txt │ │ ├── en_KE.txt │ │ ├── en_KI.txt │ │ ├── en_KN.txt │ │ ├── en_KY.txt │ │ ├── en_LC.txt │ │ ├── en_LR.txt │ │ ├── en_LS.txt │ │ ├── en_LT.txt │ │ ├── en_LV.txt │ │ ├── en_MG.txt │ │ ├── en_MM.txt │ │ ├── en_MO.txt │ │ ├── en_MS.txt │ │ ├── en_MT.txt │ │ ├── en_MU.txt │ │ ├── en_MV.txt │ │ ├── en_MW.txt │ │ ├── en_MY.txt │ │ ├── en_NA.txt │ │ ├── en_NF.txt │ │ ├── en_NG.txt │ │ ├── en_NH.txt │ │ ├── en_NL.txt │ │ ├── en_NO.txt │ │ ├── en_NR.txt │ │ ├── en_NU.txt │ │ ├── en_NZ.txt │ │ ├── en_PG.txt │ │ ├── en_PK.txt │ │ ├── en_PL.txt │ │ ├── en_PN.txt │ │ ├── en_PT.txt │ │ ├── en_PW.txt │ │ ├── en_RH.txt │ │ ├── en_RU.txt │ │ ├── en_RW.txt │ │ ├── en_SB.txt │ │ ├── en_SC.txt │ │ ├── en_SD.txt │ │ ├── en_SE.txt │ │ ├── en_SG.txt │ │ ├── en_SH.txt │ │ ├── en_SI.txt │ │ ├── en_SK.txt │ │ ├── en_SL.txt │ │ ├── en_SS.txt │ │ ├── en_SX.txt │ │ ├── en_SZ.txt │ │ ├── en_TC.txt │ │ ├── en_TH.txt │ │ ├── en_TK.txt │ │ ├── en_TO.txt │ │ ├── en_TT.txt │ │ ├── en_TV.txt │ │ ├── en_TZ.txt │ │ ├── en_UA.txt │ │ ├── en_UG.txt │ │ ├── en_VC.txt │ │ ├── en_VG.txt │ │ ├── en_VU.txt │ │ ├── en_WS.txt │ │ ├── en_ZA.txt │ │ ├── en_ZM.txt │ │ ├── en_ZW.txt │ │ ├── eo.txt │ │ ├── es.txt │ │ ├── es_419.txt │ │ ├── es_AG.txt │ │ ├── es_AR.txt │ │ ├── es_BB.txt │ │ ├── es_BM.txt │ │ ├── es_BO.txt │ │ ├── es_BQ.txt │ │ ├── es_BR.txt │ │ ├── es_BS.txt │ │ ├── es_BZ.txt │ │ ├── es_CA.txt │ │ ├── es_CL.txt │ │ ├── es_CO.txt │ │ ├── es_CR.txt │ │ ├── es_CU.txt │ │ ├── es_CW.txt │ │ ├── es_DM.txt │ │ ├── es_DO.txt │ │ ├── es_EC.txt │ │ ├── es_GD.txt │ │ ├── es_GT.txt │ │ ├── es_GY.txt │ │ ├── es_HN.txt │ │ ├── es_HT.txt │ │ ├── es_KN.txt │ │ ├── es_KY.txt │ │ ├── es_LC.txt │ │ ├── es_MX.txt │ │ ├── es_NI.txt │ │ ├── es_PA.txt │ │ ├── es_PE.txt │ │ ├── es_PR.txt │ │ ├── es_PY.txt │ │ ├── es_SV.txt │ │ ├── es_TC.txt │ │ ├── es_TT.txt │ │ ├── es_US.txt │ │ ├── es_UY.txt │ │ ├── es_VC.txt │ │ ├── es_VE.txt │ │ ├── es_VG.txt │ │ ├── es_VI.txt │ │ ├── et.txt │ │ ├── eu.txt │ │ ├── ewo.txt │ │ ├── fa.txt │ │ ├── ff.txt │ │ ├── ff_Adlm.txt │ │ ├── ff_CM.txt │ │ ├── ff_GN.txt │ │ ├── ff_Latn.txt │ │ ├── ff_Latn_CM.txt │ │ ├── ff_Latn_GN.txt │ │ ├── ff_Latn_MR.txt │ │ ├── ff_Latn_SN.txt │ │ ├── ff_MR.txt │ │ ├── ff_SN.txt │ │ ├── fi.txt │ │ ├── fil.txt │ │ ├── fil_PH.txt │ │ ├── fo.txt │ │ ├── fr.txt │ │ ├── fr_CA.txt │ │ ├── fr_HT.txt │ │ ├── fur.txt │ │ ├── fy.txt │ │ ├── ga.txt │ │ ├── gaa.txt │ │ ├── gd.txt │ │ ├── gez.txt │ │ ├── gl.txt │ │ ├── gn.txt │ │ ├── gsw.txt │ │ ├── gu.txt │ │ ├── guz.txt │ │ ├── gv.txt │ │ ├── ha.txt │ │ ├── haw.txt │ │ ├── hch.txt │ │ ├── he.txt │ │ ├── he_IL.txt │ │ ├── hi.txt │ │ ├── hi_Latn.txt │ │ ├── hmn.txt │ │ ├── hr.txt │ │ ├── hsb.txt │ │ ├── ht.txt │ │ ├── hu.txt │ │ ├── hy.txt │ │ ├── ia.txt │ │ ├── id.txt │ │ ├── id_ID.txt │ │ ├── ie.txt │ │ ├── ig.txt │ │ ├── ii.txt │ │ ├── in.txt │ │ ├── in_ID.txt │ │ ├── inh.txt │ │ ├── io.txt │ │ ├── is.txt │ │ ├── isc.txt │ │ ├── it.txt │ │ ├── iu.txt │ │ ├── iw.txt │ │ ├── iw_IL.txt │ │ ├── ja.txt │ │ ├── jbo.txt │ │ ├── jgo.txt │ │ ├── jmc.txt │ │ ├── jv.txt │ │ ├── ka.txt │ │ ├── kab.txt │ │ ├── kaj.txt │ │ ├── kam.txt │ │ ├── kcg.txt │ │ ├── kde.txt │ │ ├── kea.txt │ │ ├── kgp.txt │ │ ├── khq.txt │ │ ├── ki.txt │ │ ├── kk.txt │ │ ├── kkj.txt │ │ ├── kl.txt │ │ ├── kln.txt │ │ ├── km.txt │ │ ├── kn.txt │ │ ├── ko.txt │ │ ├── kok.txt │ │ ├── kok_Latn.txt │ │ ├── kpe.txt │ │ ├── ks.txt │ │ ├── ks_Arab.txt │ │ ├── ks_Aran.txt │ │ ├── ks_Aran_IN.txt │ │ ├── ks_Deva.txt │ │ ├── ks_IN.txt │ │ ├── ksb.txt │ │ ├── ksf.txt │ │ ├── ksh.txt │ │ ├── ku.txt │ │ ├── kw.txt │ │ ├── kxv.txt │ │ ├── kxv_Deva.txt │ │ ├── kxv_IN.txt │ │ ├── kxv_Latn.txt │ │ ├── kxv_Latn_IN.txt │ │ ├── kxv_Orya.txt │ │ ├── kxv_Telu.txt │ │ ├── ky.txt │ │ ├── lag.txt │ │ ├── lb.txt │ │ ├── lg.txt │ │ ├── lij.txt │ │ ├── lkt.txt │ │ ├── lmo.txt │ │ ├── ln.txt │ │ ├── lo.txt │ │ ├── lrc.txt │ │ ├── lt.txt │ │ ├── lu.txt │ │ ├── luo.txt │ │ ├── lut.txt │ │ ├── luy.txt │ │ ├── lv.txt │ │ ├── mai.txt │ │ ├── mas.txt │ │ ├── mer.txt │ │ ├── mfe.txt │ │ ├── mg.txt │ │ ├── mgh.txt │ │ ├── mgo.txt │ │ ├── mi.txt │ │ ├── mic.txt │ │ ├── mid.txt │ │ ├── mk.txt │ │ ├── ml.txt │ │ ├── mn.txt │ │ ├── mni.txt │ │ ├── mni_Beng.txt │ │ ├── mni_Beng_IN.txt │ │ ├── mni_IN.txt │ │ ├── mni_Mtei.txt │ │ ├── mo.txt │ │ ├── moh.txt │ │ ├── mr.txt │ │ ├── ms.txt │ │ ├── ms_Arab.txt │ │ ├── mt.txt │ │ ├── mua.txt │ │ ├── mus.txt │ │ ├── my.txt │ │ ├── myv.txt │ │ ├── mzn.txt │ │ ├── naq.txt │ │ ├── nb.txt │ │ ├── nd.txt │ │ ├── nds.txt │ │ ├── ne.txt │ │ ├── nez.txt │ │ ├── nl.txt │ │ ├── nmg.txt │ │ ├── nn.txt │ │ ├── nn_NO.txt │ │ ├── nnh.txt │ │ ├── nnp.txt │ │ ├── no.txt │ │ ├── no_NO.txt │ │ ├── no_NO_NY.txt │ │ ├── nqo.txt │ │ ├── nr.txt │ │ ├── nso.txt │ │ ├── nus.txt │ │ ├── nv.txt │ │ ├── ny.txt │ │ ├── nyn.txt │ │ ├── oc.txt │ │ ├── om.txt │ │ ├── or.txt │ │ ├── os.txt │ │ ├── osa.txt │ │ ├── pa.txt │ │ ├── pa_Arab.txt │ │ ├── pa_Aran.txt │ │ ├── pa_Aran_PK.txt │ │ ├── pa_Guru.txt │ │ ├── pa_Guru_IN.txt │ │ ├── pa_IN.txt │ │ ├── pa_PK.txt │ │ ├── pcm.txt │ │ ├── pl.txt │ │ ├── pqm.txt │ │ ├── prg.txt │ │ ├── ps.txt │ │ ├── ps_PK.txt │ │ ├── pt.txt │ │ ├── pt_AO.txt │ │ ├── pt_CH.txt │ │ ├── pt_CV.txt │ │ ├── pt_FR.txt │ │ ├── pt_GQ.txt │ │ ├── pt_GW.txt │ │ ├── pt_LU.txt │ │ ├── pt_MO.txt │ │ ├── pt_MZ.txt │ │ ├── pt_PT.txt │ │ ├── pt_ST.txt │ │ ├── pt_TL.txt │ │ ├── qu.txt │ │ ├── raj.txt │ │ ├── rej.txt │ │ ├── rej_Rjng.txt │ │ ├── rhg.txt │ │ ├── rm.txt │ │ ├── rn.txt │ │ ├── ro.txt │ │ ├── ro_MD.txt │ │ ├── rof.txt │ │ ├── root.txt │ │ ├── ru.txt │ │ ├── rw.txt │ │ ├── rwk.txt │ │ ├── sa.txt │ │ ├── sah.txt │ │ ├── saq.txt │ │ ├── sat.txt │ │ ├── sat_Deva.txt │ │ ├── sat_IN.txt │ │ ├── sat_Olck.txt │ │ ├── sat_Olck_IN.txt │ │ ├── sbp.txt │ │ ├── sc.txt │ │ ├── scn.txt │ │ ├── sd.txt │ │ ├── sd_Arab.txt │ │ ├── sd_Arab_PK.txt │ │ ├── sd_Deva.txt │ │ ├── sd_Deva_IN.txt │ │ ├── sd_IN.txt │ │ ├── sd_PK.txt │ │ ├── se.txt │ │ ├── seh.txt │ │ ├── ses.txt │ │ ├── sg.txt │ │ ├── sh.txt │ │ ├── sh_BA.txt │ │ ├── sh_CS.txt │ │ ├── sh_YU.txt │ │ ├── shi.txt │ │ ├── shi_Latn.txt │ │ ├── shi_MA.txt │ │ ├── shi_Tfng.txt │ │ ├── shi_Tfng_MA.txt │ │ ├── shp.txt │ │ ├── si.txt │ │ ├── sjd.txt │ │ ├── sje.txt │ │ ├── sju.txt │ │ ├── sk.txt │ │ ├── sl.txt │ │ ├── sm.txt │ │ ├── smn.txt │ │ ├── sn.txt │ │ ├── so.txt │ │ ├── sq.txt │ │ ├── sr.txt │ │ ├── sr_BA.txt │ │ ├── sr_CS.txt │ │ ├── sr_Cyrl.txt │ │ ├── sr_Cyrl_BA.txt │ │ ├── sr_Cyrl_CS.txt │ │ ├── sr_Cyrl_RS.txt │ │ ├── sr_Cyrl_XK.txt │ │ ├── sr_Cyrl_YU.txt │ │ ├── sr_Latn.txt │ │ ├── sr_Latn_BA.txt │ │ ├── sr_Latn_CS.txt │ │ ├── sr_Latn_ME.txt │ │ ├── sr_Latn_RS.txt │ │ ├── sr_Latn_YU.txt │ │ ├── sr_ME.txt │ │ ├── sr_RS.txt │ │ ├── sr_XK.txt │ │ ├── sr_YU.txt │ │ ├── ss.txt │ │ ├── st.txt │ │ ├── su.txt │ │ ├── su_ID.txt │ │ ├── su_Latn.txt │ │ ├── su_Latn_ID.txt │ │ ├── sv.txt │ │ ├── sv_FI.txt │ │ ├── sw.txt │ │ ├── sw_KE.txt │ │ ├── syr.txt │ │ ├── szl.txt │ │ ├── ta.txt │ │ ├── te.txt │ │ ├── teo.txt │ │ ├── tg.txt │ │ ├── th.txt │ │ ├── ti.txt │ │ ├── tig.txt │ │ ├── tk.txt │ │ ├── tl.txt │ │ ├── tl_PH.txt │ │ ├── tn.txt │ │ ├── to.txt │ │ ├── tok.txt │ │ ├── tr.txt │ │ ├── trv.txt │ │ ├── ts.txt │ │ ├── tt.txt │ │ ├── twq.txt │ │ ├── tzm.txt │ │ ├── ug.txt │ │ ├── uk.txt │ │ ├── ur.txt │ │ ├── ur_Arab.txt │ │ ├── ur_Arab_IN.txt │ │ ├── ur_Aran.txt │ │ ├── ur_Aran_IN.txt │ │ ├── ur_Aran_PK.txt │ │ ├── ur_IN.txt │ │ ├── ur_PK.txt │ │ ├── uz.txt │ │ ├── uz_AF.txt │ │ ├── uz_Arab.txt │ │ ├── uz_Arab_AF.txt │ │ ├── uz_Cyrl.txt │ │ ├── uz_Latn.txt │ │ ├── uz_Latn_UZ.txt │ │ ├── uz_UZ.txt │ │ ├── vai.txt │ │ ├── vai_LR.txt │ │ ├── vai_Latn.txt │ │ ├── vai_Vaii.txt │ │ ├── vai_Vaii_LR.txt │ │ ├── ve.txt │ │ ├── vec.txt │ │ ├── vi.txt │ │ ├── vmw.txt │ │ ├── vun.txt │ │ ├── wa.txt │ │ ├── wae.txt │ │ ├── wal.txt │ │ ├── wo.txt │ │ ├── wuu.txt │ │ ├── xh.txt │ │ ├── xnr.txt │ │ ├── xog.txt │ │ ├── yav.txt │ │ ├── yi.txt │ │ ├── yo.txt │ │ ├── yo_BJ.txt │ │ ├── yrl.txt │ │ ├── yrl_CO.txt │ │ ├── yrl_VE.txt │ │ ├── yue.txt │ │ ├── yue_CN.txt │ │ ├── yue_HK.txt │ │ ├── yue_Hans.txt │ │ ├── yue_Hans_CN.txt │ │ ├── yue_Hant.txt │ │ ├── yue_Hant_HK.txt │ │ ├── za.txt │ │ ├── zgh.txt │ │ ├── zh.txt │ │ ├── zh_CN.txt │ │ ├── zh_HK.txt │ │ ├── zh_Hans.txt │ │ ├── zh_Hans_CN.txt │ │ ├── zh_Hans_HK.txt │ │ ├── zh_Hans_JP.txt │ │ ├── zh_Hans_MO.txt │ │ ├── zh_Hans_SG.txt │ │ ├── zh_Hant.txt │ │ ├── zh_Hant_HK.txt │ │ ├── zh_Hant_MO.txt │ │ ├── zh_Hant_TW.txt │ │ ├── zh_JP.txt │ │ ├── zh_MO.txt │ │ ├── zh_SG.txt │ │ ├── zh_TW.txt │ │ └── zu.txt │ ├── xml │ │ ├── brkitr │ │ │ ├── de.xml │ │ │ ├── el.xml │ │ │ ├── en.xml │ │ │ ├── en_US.xml │ │ │ ├── en_US_POSIX.xml │ │ │ ├── es.xml │ │ │ ├── fi.xml │ │ │ ├── fr.xml │ │ │ ├── it.xml │ │ │ ├── ja.xml │ │ │ ├── ko.xml │ │ │ ├── pt.xml │ │ │ ├── root.xml │ │ │ ├── ru.xml │ │ │ ├── sv.xml │ │ │ ├── zh.xml │ │ │ └── zh_Hant.xml │ │ ├── collation │ │ │ └── root.xml │ │ ├── main │ │ │ └── root.xml │ │ └── rbnf │ │ │ ├── be.xml │ │ │ ├── bg.xml │ │ │ ├── ca.xml │ │ │ ├── cy.xml │ │ │ ├── da.xml │ │ │ ├── de.xml │ │ │ ├── en.xml │ │ │ ├── fo.xml │ │ │ ├── ga.xml │ │ │ ├── is.xml │ │ │ ├── mk.xml │ │ │ ├── mt.xml │ │ │ ├── no.xml │ │ │ ├── root.xml │ │ │ ├── ru.xml │ │ │ ├── sr.xml │ │ │ └── uk.xml │ └── zone │ │ ├── LOCALE_DEPS.json │ │ ├── af.txt │ │ ├── agq.txt │ │ ├── ain.txt │ │ ├── ak.txt │ │ ├── am.txt │ │ ├── apw.txt │ │ ├── ar.txt │ │ ├── ar_SA.txt │ │ ├── arn.txt │ │ ├── ars.txt │ │ ├── as.txt │ │ ├── asa.txt │ │ ├── ast.txt │ │ ├── az.txt │ │ ├── az_AZ.txt │ │ ├── az_Cyrl.txt │ │ ├── az_Latn.txt │ │ ├── az_Latn_AZ.txt │ │ ├── ba.txt │ │ ├── bas.txt │ │ ├── be.txt │ │ ├── bem.txt │ │ ├── ber.txt │ │ ├── ber_Latn.txt │ │ ├── bez.txt │ │ ├── bg.txt │ │ ├── bgc.txt │ │ ├── bho.txt │ │ ├── blo.txt │ │ ├── bm.txt │ │ ├── bn.txt │ │ ├── bo.txt │ │ ├── br.txt │ │ ├── brx.txt │ │ ├── bs.txt │ │ ├── bs_BA.txt │ │ ├── bs_Cyrl.txt │ │ ├── bs_Latn.txt │ │ ├── bs_Latn_BA.txt │ │ ├── byn.txt │ │ ├── ca.txt │ │ ├── ccp.txt │ │ ├── ce.txt │ │ ├── ceb.txt │ │ ├── cgg.txt │ │ ├── cho.txt │ │ ├── chr.txt │ │ ├── cic.txt │ │ ├── ckb.txt │ │ ├── co.txt │ │ ├── cs.txt │ │ ├── cst.txt │ │ ├── csw.txt │ │ ├── cv.txt │ │ ├── cy.txt │ │ ├── da.txt │ │ ├── dav.txt │ │ ├── de.txt │ │ ├── de_CH.txt │ │ ├── dje.txt │ │ ├── doi.txt │ │ ├── dsb.txt │ │ ├── dua.txt │ │ ├── dv.txt │ │ ├── dyo.txt │ │ ├── dz.txt │ │ ├── ebu.txt │ │ ├── ee.txt │ │ ├── el.txt │ │ ├── en.txt │ │ ├── en_001.txt │ │ ├── en_150.txt │ │ ├── en_AE.txt │ │ ├── en_AG.txt │ │ ├── en_AI.txt │ │ ├── en_AL.txt │ │ ├── en_AR.txt │ │ ├── en_AT.txt │ │ ├── en_AU.txt │ │ ├── en_BB.txt │ │ ├── en_BD.txt │ │ ├── en_BE.txt │ │ ├── en_BG.txt │ │ ├── en_BM.txt │ │ ├── en_BN.txt │ │ ├── en_BR.txt │ │ ├── en_BS.txt │ │ ├── en_BW.txt │ │ ├── en_BZ.txt │ │ ├── en_CA.txt │ │ ├── en_CC.txt │ │ ├── en_CH.txt │ │ ├── en_CK.txt │ │ ├── en_CM.txt │ │ ├── en_CN.txt │ │ ├── en_CV.txt │ │ ├── en_CX.txt │ │ ├── en_CY.txt │ │ ├── en_CZ.txt │ │ ├── en_DE.txt │ │ ├── en_DG.txt │ │ ├── en_DK.txt │ │ ├── en_DM.txt │ │ ├── en_EE.txt │ │ ├── en_ER.txt │ │ ├── en_FI.txt │ │ ├── en_FJ.txt │ │ ├── en_FK.txt │ │ ├── en_FM.txt │ │ ├── en_FR.txt │ │ ├── en_GB.txt │ │ ├── en_GD.txt │ │ ├── en_GG.txt │ │ ├── en_GH.txt │ │ ├── en_GI.txt │ │ ├── en_GM.txt │ │ ├── en_GR.txt │ │ ├── en_GU.txt │ │ ├── en_GY.txt │ │ ├── en_HK.txt │ │ ├── en_HU.txt │ │ ├── en_ID.txt │ │ ├── en_IE.txt │ │ ├── en_IL.txt │ │ ├── en_IM.txt │ │ ├── en_IN.txt │ │ ├── en_IO.txt │ │ ├── en_JE.txt │ │ ├── en_JM.txt │ │ ├── en_JP.txt │ │ ├── en_KE.txt │ │ ├── en_KI.txt │ │ ├── en_KN.txt │ │ ├── en_KY.txt │ │ ├── en_LC.txt │ │ ├── en_LR.txt │ │ ├── en_LS.txt │ │ ├── en_LT.txt │ │ ├── en_LV.txt │ │ ├── en_MG.txt │ │ ├── en_MH.txt │ │ ├── en_MM.txt │ │ ├── en_MO.txt │ │ ├── en_MP.txt │ │ ├── en_MS.txt │ │ ├── en_MT.txt │ │ ├── en_MU.txt │ │ ├── en_MV.txt │ │ ├── en_MW.txt │ │ ├── en_MY.txt │ │ ├── en_NA.txt │ │ ├── en_NF.txt │ │ ├── en_NG.txt │ │ ├── en_NH.txt │ │ ├── en_NL.txt │ │ ├── en_NO.txt │ │ ├── en_NR.txt │ │ ├── en_NU.txt │ │ ├── en_NZ.txt │ │ ├── en_PG.txt │ │ ├── en_PK.txt │ │ ├── en_PL.txt │ │ ├── en_PN.txt │ │ ├── en_PT.txt │ │ ├── en_PW.txt │ │ ├── en_RH.txt │ │ ├── en_RU.txt │ │ ├── en_RW.txt │ │ ├── en_SB.txt │ │ ├── en_SC.txt │ │ ├── en_SD.txt │ │ ├── en_SE.txt │ │ ├── en_SG.txt │ │ ├── en_SH.txt │ │ ├── en_SI.txt │ │ ├── en_SK.txt │ │ ├── en_SL.txt │ │ ├── en_SS.txt │ │ ├── en_SX.txt │ │ ├── en_SZ.txt │ │ ├── en_TC.txt │ │ ├── en_TH.txt │ │ ├── en_TK.txt │ │ ├── en_TO.txt │ │ ├── en_TR.txt │ │ ├── en_TT.txt │ │ ├── en_TV.txt │ │ ├── en_TW.txt │ │ ├── en_TZ.txt │ │ ├── en_UA.txt │ │ ├── en_UG.txt │ │ ├── en_VC.txt │ │ ├── en_VG.txt │ │ ├── en_VU.txt │ │ ├── en_WS.txt │ │ ├── en_ZA.txt │ │ ├── en_ZM.txt │ │ ├── en_ZW.txt │ │ ├── eo.txt │ │ ├── es.txt │ │ ├── es_419.txt │ │ ├── es_AG.txt │ │ ├── es_AR.txt │ │ ├── es_BB.txt │ │ ├── es_BM.txt │ │ ├── es_BO.txt │ │ ├── es_BQ.txt │ │ ├── es_BR.txt │ │ ├── es_BS.txt │ │ ├── es_BZ.txt │ │ ├── es_CA.txt │ │ ├── es_CL.txt │ │ ├── es_CO.txt │ │ ├── es_CR.txt │ │ ├── es_CU.txt │ │ ├── es_CW.txt │ │ ├── es_DM.txt │ │ ├── es_DO.txt │ │ ├── es_EC.txt │ │ ├── es_GD.txt │ │ ├── es_GT.txt │ │ ├── es_GY.txt │ │ ├── es_HN.txt │ │ ├── es_HT.txt │ │ ├── es_KN.txt │ │ ├── es_KY.txt │ │ ├── es_LC.txt │ │ ├── es_MX.txt │ │ ├── es_NI.txt │ │ ├── es_PA.txt │ │ ├── es_PE.txt │ │ ├── es_PR.txt │ │ ├── es_PY.txt │ │ ├── es_SV.txt │ │ ├── es_TC.txt │ │ ├── es_TT.txt │ │ ├── es_US.txt │ │ ├── es_UY.txt │ │ ├── es_VC.txt │ │ ├── es_VE.txt │ │ ├── es_VG.txt │ │ ├── es_VI.txt │ │ ├── et.txt │ │ ├── eu.txt │ │ ├── ewo.txt │ │ ├── fa.txt │ │ ├── ff.txt │ │ ├── ff_Adlm.txt │ │ ├── ff_CM.txt │ │ ├── ff_GN.txt │ │ ├── ff_Latn.txt │ │ ├── ff_Latn_CM.txt │ │ ├── ff_Latn_GN.txt │ │ ├── ff_Latn_MR.txt │ │ ├── ff_Latn_SN.txt │ │ ├── ff_MR.txt │ │ ├── ff_SN.txt │ │ ├── fi.txt │ │ ├── fil.txt │ │ ├── fil_PH.txt │ │ ├── fo.txt │ │ ├── fr.txt │ │ ├── fr_CA.txt │ │ ├── fr_GF.txt │ │ ├── fr_HT.txt │ │ ├── fur.txt │ │ ├── fy.txt │ │ ├── ga.txt │ │ ├── gaa.txt │ │ ├── gd.txt │ │ ├── gez.txt │ │ ├── gl.txt │ │ ├── gn.txt │ │ ├── gsw.txt │ │ ├── gu.txt │ │ ├── guz.txt │ │ ├── gv.txt │ │ ├── ha.txt │ │ ├── haw.txt │ │ ├── hch.txt │ │ ├── he.txt │ │ ├── he_IL.txt │ │ ├── hi.txt │ │ ├── hi_Latn.txt │ │ ├── hmn.txt │ │ ├── hr.txt │ │ ├── hsb.txt │ │ ├── ht.txt │ │ ├── hu.txt │ │ ├── hy.txt │ │ ├── ia.txt │ │ ├── id.txt │ │ ├── id_ID.txt │ │ ├── ie.txt │ │ ├── ig.txt │ │ ├── ii.txt │ │ ├── in.txt │ │ ├── in_ID.txt │ │ ├── inh.txt │ │ ├── io.txt │ │ ├── is.txt │ │ ├── isc.txt │ │ ├── it.txt │ │ ├── iu.txt │ │ ├── iw.txt │ │ ├── iw_IL.txt │ │ ├── ja.txt │ │ ├── jbo.txt │ │ ├── jgo.txt │ │ ├── jmc.txt │ │ ├── jv.txt │ │ ├── ka.txt │ │ ├── kab.txt │ │ ├── kaj.txt │ │ ├── kam.txt │ │ ├── kcg.txt │ │ ├── kde.txt │ │ ├── kea.txt │ │ ├── kgp.txt │ │ ├── khq.txt │ │ ├── ki.txt │ │ ├── kk.txt │ │ ├── kkj.txt │ │ ├── kl.txt │ │ ├── kln.txt │ │ ├── km.txt │ │ ├── kn.txt │ │ ├── ko.txt │ │ ├── ko_KP.txt │ │ ├── kok.txt │ │ ├── kok_Latn.txt │ │ ├── kpe.txt │ │ ├── ks.txt │ │ ├── ks_Arab.txt │ │ ├── ks_Aran.txt │ │ ├── ks_Aran_IN.txt │ │ ├── ks_Deva.txt │ │ ├── ks_IN.txt │ │ ├── ksb.txt │ │ ├── ksf.txt │ │ ├── ksh.txt │ │ ├── ku.txt │ │ ├── kw.txt │ │ ├── kxv.txt │ │ ├── kxv_Deva.txt │ │ ├── kxv_IN.txt │ │ ├── kxv_Latn.txt │ │ ├── kxv_Latn_IN.txt │ │ ├── kxv_Orya.txt │ │ ├── kxv_Telu.txt │ │ ├── ky.txt │ │ ├── lag.txt │ │ ├── lb.txt │ │ ├── lg.txt │ │ ├── lij.txt │ │ ├── lkt.txt │ │ ├── lmo.txt │ │ ├── ln.txt │ │ ├── lo.txt │ │ ├── lrc.txt │ │ ├── lt.txt │ │ ├── lu.txt │ │ ├── luo.txt │ │ ├── lut.txt │ │ ├── luy.txt │ │ ├── lv.txt │ │ ├── mai.txt │ │ ├── mas.txt │ │ ├── mer.txt │ │ ├── mfe.txt │ │ ├── mg.txt │ │ ├── mgh.txt │ │ ├── mgo.txt │ │ ├── mi.txt │ │ ├── mic.txt │ │ ├── mid.txt │ │ ├── mk.txt │ │ ├── ml.txt │ │ ├── mn.txt │ │ ├── mni.txt │ │ ├── mni_Beng.txt │ │ ├── mni_Beng_IN.txt │ │ ├── mni_IN.txt │ │ ├── mni_Mtei.txt │ │ ├── mo.txt │ │ ├── moh.txt │ │ ├── mr.txt │ │ ├── ms.txt │ │ ├── ms_Arab.txt │ │ ├── ms_ID.txt │ │ ├── mt.txt │ │ ├── mua.txt │ │ ├── mus.txt │ │ ├── my.txt │ │ ├── myv.txt │ │ ├── mzn.txt │ │ ├── naq.txt │ │ ├── nb.txt │ │ ├── nd.txt │ │ ├── nds.txt │ │ ├── ne.txt │ │ ├── ne_IN.txt │ │ ├── nez.txt │ │ ├── nl.txt │ │ ├── nl_SR.txt │ │ ├── nmg.txt │ │ ├── nn.txt │ │ ├── nn_NO.txt │ │ ├── nnh.txt │ │ ├── nnp.txt │ │ ├── no.txt │ │ ├── no_NO.txt │ │ ├── no_NO_NY.txt │ │ ├── nqo.txt │ │ ├── nr.txt │ │ ├── nso.txt │ │ ├── nus.txt │ │ ├── nv.txt │ │ ├── ny.txt │ │ ├── nyn.txt │ │ ├── oc.txt │ │ ├── om.txt │ │ ├── or.txt │ │ ├── os.txt │ │ ├── osa.txt │ │ ├── pa.txt │ │ ├── pa_Arab.txt │ │ ├── pa_Aran.txt │ │ ├── pa_Aran_PK.txt │ │ ├── pa_Guru.txt │ │ ├── pa_Guru_IN.txt │ │ ├── pa_IN.txt │ │ ├── pa_PK.txt │ │ ├── pcm.txt │ │ ├── pl.txt │ │ ├── pqm.txt │ │ ├── prg.txt │ │ ├── ps.txt │ │ ├── ps_PK.txt │ │ ├── pt.txt │ │ ├── pt_AO.txt │ │ ├── pt_CH.txt │ │ ├── pt_CV.txt │ │ ├── pt_FR.txt │ │ ├── pt_GQ.txt │ │ ├── pt_GW.txt │ │ ├── pt_LU.txt │ │ ├── pt_MO.txt │ │ ├── pt_MZ.txt │ │ ├── pt_PT.txt │ │ ├── pt_ST.txt │ │ ├── pt_TL.txt │ │ ├── qu.txt │ │ ├── qu_BO.txt │ │ ├── qu_EC.txt │ │ ├── raj.txt │ │ ├── rej.txt │ │ ├── rej_Rjng.txt │ │ ├── rhg.txt │ │ ├── rm.txt │ │ ├── rn.txt │ │ ├── ro.txt │ │ ├── rof.txt │ │ ├── root.txt │ │ ├── ru.txt │ │ ├── rw.txt │ │ ├── rwk.txt │ │ ├── sa.txt │ │ ├── sah.txt │ │ ├── saq.txt │ │ ├── sat.txt │ │ ├── sat_Deva.txt │ │ ├── sat_IN.txt │ │ ├── sat_Olck.txt │ │ ├── sat_Olck_IN.txt │ │ ├── sbp.txt │ │ ├── sc.txt │ │ ├── scn.txt │ │ ├── sd.txt │ │ ├── sd_Arab.txt │ │ ├── sd_Arab_PK.txt │ │ ├── sd_Deva.txt │ │ ├── sd_Deva_IN.txt │ │ ├── sd_IN.txt │ │ ├── sd_PK.txt │ │ ├── se.txt │ │ ├── se_FI.txt │ │ ├── seh.txt │ │ ├── ses.txt │ │ ├── sg.txt │ │ ├── sh.txt │ │ ├── sh_BA.txt │ │ ├── sh_CS.txt │ │ ├── sh_YU.txt │ │ ├── shi.txt │ │ ├── shi_Latn.txt │ │ ├── shi_MA.txt │ │ ├── shi_Tfng.txt │ │ ├── shi_Tfng_MA.txt │ │ ├── shp.txt │ │ ├── si.txt │ │ ├── sjd.txt │ │ ├── sje.txt │ │ ├── sju.txt │ │ ├── sk.txt │ │ ├── sl.txt │ │ ├── sm.txt │ │ ├── smn.txt │ │ ├── sn.txt │ │ ├── so.txt │ │ ├── sq.txt │ │ ├── sr.txt │ │ ├── sr_BA.txt │ │ ├── sr_CS.txt │ │ ├── sr_Cyrl.txt │ │ ├── sr_Cyrl_BA.txt │ │ ├── sr_Cyrl_CS.txt │ │ ├── sr_Cyrl_RS.txt │ │ ├── sr_Cyrl_XK.txt │ │ ├── sr_Cyrl_YU.txt │ │ ├── sr_Latn.txt │ │ ├── sr_Latn_BA.txt │ │ ├── sr_Latn_CS.txt │ │ ├── sr_Latn_ME.txt │ │ ├── sr_Latn_RS.txt │ │ ├── sr_Latn_YU.txt │ │ ├── sr_ME.txt │ │ ├── sr_RS.txt │ │ ├── sr_XK.txt │ │ ├── sr_YU.txt │ │ ├── ss.txt │ │ ├── st.txt │ │ ├── su.txt │ │ ├── su_ID.txt │ │ ├── su_Latn.txt │ │ ├── su_Latn_ID.txt │ │ ├── sv.txt │ │ ├── sw.txt │ │ ├── sw_KE.txt │ │ ├── syr.txt │ │ ├── szl.txt │ │ ├── ta.txt │ │ ├── ta_MY.txt │ │ ├── ta_SG.txt │ │ ├── te.txt │ │ ├── teo.txt │ │ ├── tg.txt │ │ ├── th.txt │ │ ├── ti.txt │ │ ├── tig.txt │ │ ├── tk.txt │ │ ├── tl.txt │ │ ├── tl_PH.txt │ │ ├── tn.txt │ │ ├── to.txt │ │ ├── tok.txt │ │ ├── tr.txt │ │ ├── trv.txt │ │ ├── ts.txt │ │ ├── tt.txt │ │ ├── twq.txt │ │ ├── tzdbNames.txt │ │ ├── tzm.txt │ │ ├── ug.txt │ │ ├── uk.txt │ │ ├── ur.txt │ │ ├── ur_Arab.txt │ │ ├── ur_Arab_IN.txt │ │ ├── ur_Aran.txt │ │ ├── ur_Aran_IN.txt │ │ ├── ur_Aran_PK.txt │ │ ├── ur_IN.txt │ │ ├── ur_PK.txt │ │ ├── uz.txt │ │ ├── uz_AF.txt │ │ ├── uz_Arab.txt │ │ ├── uz_Arab_AF.txt │ │ ├── uz_Cyrl.txt │ │ ├── uz_Latn.txt │ │ ├── uz_Latn_UZ.txt │ │ ├── uz_UZ.txt │ │ ├── vai.txt │ │ ├── vai_LR.txt │ │ ├── vai_Latn.txt │ │ ├── vai_Vaii.txt │ │ ├── vai_Vaii_LR.txt │ │ ├── ve.txt │ │ ├── vec.txt │ │ ├── vi.txt │ │ ├── vmw.txt │ │ ├── vun.txt │ │ ├── wa.txt │ │ ├── wae.txt │ │ ├── wal.txt │ │ ├── wo.txt │ │ ├── wuu.txt │ │ ├── xh.txt │ │ ├── xnr.txt │ │ ├── xog.txt │ │ ├── yav.txt │ │ ├── yi.txt │ │ ├── yo.txt │ │ ├── yo_BJ.txt │ │ ├── yrl.txt │ │ ├── yrl_CO.txt │ │ ├── yrl_VE.txt │ │ ├── yue.txt │ │ ├── yue_CN.txt │ │ ├── yue_HK.txt │ │ ├── yue_Hans.txt │ │ ├── yue_Hans_CN.txt │ │ ├── yue_Hant.txt │ │ ├── yue_Hant_HK.txt │ │ ├── za.txt │ │ ├── zgh.txt │ │ ├── zh.txt │ │ ├── zh_CN.txt │ │ ├── zh_HK.txt │ │ ├── zh_Hans.txt │ │ ├── zh_Hans_CN.txt │ │ ├── zh_Hans_JP.txt │ │ ├── zh_Hans_SG.txt │ │ ├── zh_Hant.txt │ │ ├── zh_Hant_HK.txt │ │ ├── zh_Hant_MO.txt │ │ ├── zh_Hant_TW.txt │ │ ├── zh_JP.txt │ │ ├── zh_MO.txt │ │ ├── zh_SG.txt │ │ ├── zh_TW.txt │ │ └── zu.txt │ ├── extra │ ├── Makefile.in │ ├── scrptrun │ │ ├── Makefile.in │ │ ├── readme.html │ │ ├── scrptrun.cpp │ │ ├── scrptrun.h │ │ ├── sources.txt │ │ ├── srtest.cpp │ │ ├── srtest.dsp │ │ └── srtest.dsw │ └── uconv │ │ ├── Makefile.in │ │ ├── README │ │ ├── makedata.mak │ │ ├── pkgdata.inc.in │ │ ├── pkgdataMakefile.in │ │ ├── resfiles.mk │ │ ├── resources │ │ ├── fr.txt │ │ └── root.txt │ │ ├── samples │ │ ├── ISO-8859-2.txt │ │ ├── ISO-8859-3.txt │ │ ├── danish-ISO-8859-1.txt │ │ ├── eucJP.txt │ │ ├── hangul-eucKR.txt │ │ ├── hania-eucKR.txt │ │ ├── ibm-37-test.txt │ │ ├── iso8859-1.txt │ │ ├── koi8r.txt │ │ └── utf8 │ │ │ ├── armenian.txt │ │ │ ├── banviet.txt │ │ │ ├── chinese-ulysses.txt │ │ │ ├── croat.txt │ │ │ ├── danish.txt │ │ │ ├── greek.txt │ │ │ ├── hangul.txt │ │ │ ├── hania.txt │ │ │ ├── jap.txt │ │ │ ├── korean.txt │ │ │ ├── linji.txt │ │ │ ├── many.txt │ │ │ ├── maopoem.txt │ │ │ ├── russian.txt │ │ │ ├── simplechinese.txt │ │ │ ├── turkish.txt │ │ │ └── utf-8-demo.txt │ │ ├── sources.txt │ │ ├── uconv.1.in │ │ ├── uconv.cpp │ │ ├── uconv.vcxproj │ │ ├── uconv.vcxproj.filters │ │ ├── unicode │ │ └── uwmsg.h │ │ └── uwmsg.c │ ├── i18n │ ├── BUILD.bazel │ ├── Makefile.in │ ├── Makefile.local │ ├── alphaindex.cpp │ ├── anytrans.cpp │ ├── anytrans.h │ ├── astro.cpp │ ├── astro.h │ ├── basictz.cpp │ ├── bocsu.cpp │ ├── bocsu.h │ ├── brktrans.cpp │ ├── brktrans.h │ ├── buddhcal.cpp │ ├── buddhcal.h │ ├── calendar.cpp │ ├── casetrn.cpp │ ├── casetrn.h │ ├── cecal.cpp │ ├── cecal.h │ ├── chnsecal.cpp │ ├── chnsecal.h │ ├── choicfmt.cpp │ ├── coleitr.cpp │ ├── coll.cpp │ ├── collation.cpp │ ├── collation.h │ ├── collationbuilder.cpp │ ├── collationbuilder.h │ ├── collationcompare.cpp │ ├── collationcompare.h │ ├── collationdata.cpp │ ├── collationdata.h │ ├── collationdatabuilder.cpp │ ├── collationdatabuilder.h │ ├── collationdatareader.cpp │ ├── collationdatareader.h │ ├── collationdatawriter.cpp │ ├── collationdatawriter.h │ ├── collationfastlatin.cpp │ ├── collationfastlatin.h │ ├── collationfastlatinbuilder.cpp │ ├── collationfastlatinbuilder.h │ ├── collationfcd.cpp │ ├── collationfcd.h │ ├── collationiterator.cpp │ ├── collationiterator.h │ ├── collationkeys.cpp │ ├── collationkeys.h │ ├── collationroot.cpp │ ├── collationroot.h │ ├── collationrootelements.cpp │ ├── collationrootelements.h │ ├── collationruleparser.cpp │ ├── collationruleparser.h │ ├── collationsets.cpp │ ├── collationsets.h │ ├── collationsettings.cpp │ ├── collationsettings.h │ ├── collationtailoring.cpp │ ├── collationtailoring.h │ ├── collationweights.cpp │ ├── collationweights.h │ ├── collunsafe.h │ ├── compactdecimalformat.cpp │ ├── coptccal.cpp │ ├── coptccal.h │ ├── cpdtrans.cpp │ ├── cpdtrans.h │ ├── csdetect.cpp │ ├── csdetect.h │ ├── csmatch.cpp │ ├── csmatch.h │ ├── csr2022.cpp │ ├── csr2022.h │ ├── csrecog.cpp │ ├── csrecog.h │ ├── csrmbcs.cpp │ ├── csrmbcs.h │ ├── csrsbcs.cpp │ ├── csrsbcs.h │ ├── csrucode.cpp │ ├── csrucode.h │ ├── csrutf8.cpp │ ├── csrutf8.h │ ├── curramt.cpp │ ├── currfmt.cpp │ ├── currfmt.h │ ├── currpinf.cpp │ ├── currunit.cpp │ ├── dangical.cpp │ ├── dangical.h │ ├── datefmt.cpp │ ├── dayperiodrules.cpp │ ├── dayperiodrules.h │ ├── dcfmtsym.cpp │ ├── decContext.cpp │ ├── decContext.h │ ├── decNumber.cpp │ ├── decNumber.h │ ├── decNumberLocal.h │ ├── decimfmt.cpp │ ├── displayoptions.cpp │ ├── double-conversion-bignum-dtoa.cpp │ ├── double-conversion-bignum-dtoa.h │ ├── double-conversion-bignum.cpp │ ├── double-conversion-bignum.h │ ├── double-conversion-cached-powers.cpp │ ├── double-conversion-cached-powers.h │ ├── double-conversion-diy-fp.h │ ├── double-conversion-double-to-string.cpp │ ├── double-conversion-double-to-string.h │ ├── double-conversion-fast-dtoa.cpp │ ├── double-conversion-fast-dtoa.h │ ├── double-conversion-ieee.h │ ├── double-conversion-string-to-double.cpp │ ├── double-conversion-string-to-double.h │ ├── double-conversion-strtod.cpp │ ├── double-conversion-strtod.h │ ├── double-conversion-utils.h │ ├── double-conversion.h │ ├── dt_impl.h │ ├── dtfmtsym.cpp │ ├── dtitv_impl.h │ ├── dtitvfmt.cpp │ ├── dtitvinf.cpp │ ├── dtptngen.cpp │ ├── dtptngen_impl.h │ ├── dtrule.cpp │ ├── erarules.cpp │ ├── erarules.h │ ├── esctrn.cpp │ ├── esctrn.h │ ├── ethpccal.cpp │ ├── ethpccal.h │ ├── fmtable.cpp │ ├── fmtable_cnv.cpp │ ├── fmtableimp.h │ ├── format.cpp │ ├── formatted_string_builder.cpp │ ├── formatted_string_builder.h │ ├── formattedval_impl.h │ ├── formattedval_iterimpl.cpp │ ├── formattedval_sbimpl.cpp │ ├── formattedvalue.cpp │ ├── fphdlimp.cpp │ ├── fphdlimp.h │ ├── fpositer.cpp │ ├── funcrepl.cpp │ ├── funcrepl.h │ ├── gender.cpp │ ├── gregocal.cpp │ ├── gregoimp.cpp │ ├── gregoimp.h │ ├── hebrwcal.cpp │ ├── hebrwcal.h │ ├── hinducal.cpp │ ├── hinducal.h │ ├── i18n.rc │ ├── i18n.vcxproj │ ├── i18n.vcxproj.filters │ ├── i18n_uwp.vcxproj │ ├── icuin40shim.cpp │ ├── icuin40shim.rc │ ├── indiancal.cpp │ ├── indiancal.h │ ├── inputext.cpp │ ├── inputext.h │ ├── islamcal.cpp │ ├── islamcal.h │ ├── iso8601cal.cpp │ ├── iso8601cal.h │ ├── japancal.cpp │ ├── japancal.h │ ├── libicuin.rc │ ├── listformatter.cpp │ ├── measfmt.cpp │ ├── measunit.cpp │ ├── measunit_extra.cpp │ ├── measunit_impl.h │ ├── measure.cpp │ ├── messageformat2.cpp │ ├── messageformat2_allocation.h │ ├── messageformat2_arguments.cpp │ ├── messageformat2_checker.cpp │ ├── messageformat2_checker.h │ ├── messageformat2_data_model.cpp │ ├── messageformat2_errors.cpp │ ├── messageformat2_errors.h │ ├── messageformat2_evaluation.cpp │ ├── messageformat2_evaluation.h │ ├── messageformat2_formattable.cpp │ ├── messageformat2_formatter.cpp │ ├── messageformat2_function_registry.cpp │ ├── messageformat2_function_registry_internal.h │ ├── messageformat2_macros.h │ ├── messageformat2_parser.cpp │ ├── messageformat2_parser.h │ ├── messageformat2_serializer.cpp │ ├── messageformat2_serializer.h │ ├── msgfmt.cpp │ ├── msgfmt_impl.h │ ├── name2uni.cpp │ ├── name2uni.h │ ├── nfrlist.h │ ├── nfrs.cpp │ ├── nfrs.h │ ├── nfrule.cpp │ ├── nfrule.h │ ├── nfsubs.cpp │ ├── nfsubs.h │ ├── nortrans.cpp │ ├── nortrans.h │ ├── nultrans.cpp │ ├── nultrans.h │ ├── number_affixutils.cpp │ ├── number_affixutils.h │ ├── number_asformat.cpp │ ├── number_asformat.h │ ├── number_capi.cpp │ ├── number_compact.cpp │ ├── number_compact.h │ ├── number_currencysymbols.cpp │ ├── number_currencysymbols.h │ ├── number_decimalquantity.cpp │ ├── number_decimalquantity.h │ ├── number_decimfmtprops.cpp │ ├── number_decimfmtprops.h │ ├── number_decnum.h │ ├── number_fluent.cpp │ ├── number_formatimpl.cpp │ ├── number_formatimpl.h │ ├── number_grouping.cpp │ ├── number_integerwidth.cpp │ ├── number_longnames.cpp │ ├── number_longnames.h │ ├── number_mapper.cpp │ ├── number_mapper.h │ ├── number_microprops.h │ ├── number_modifiers.cpp │ ├── number_modifiers.h │ ├── number_multiplier.cpp │ ├── number_multiplier.h │ ├── number_notation.cpp │ ├── number_output.cpp │ ├── number_padding.cpp │ ├── number_patternmodifier.cpp │ ├── number_patternmodifier.h │ ├── number_patternstring.cpp │ ├── number_patternstring.h │ ├── number_rounding.cpp │ ├── number_roundingutils.h │ ├── number_scientific.cpp │ ├── number_scientific.h │ ├── number_simple.cpp │ ├── number_skeletons.cpp │ ├── number_skeletons.h │ ├── number_symbolswrapper.cpp │ ├── number_types.h │ ├── number_usageprefs.cpp │ ├── number_usageprefs.h │ ├── number_utils.cpp │ ├── number_utils.h │ ├── number_utypes.h │ ├── numfmt.cpp │ ├── numparse_affixes.cpp │ ├── numparse_affixes.h │ ├── numparse_compositions.cpp │ ├── numparse_compositions.h │ ├── numparse_currency.cpp │ ├── numparse_currency.h │ ├── numparse_decimal.cpp │ ├── numparse_decimal.h │ ├── numparse_impl.cpp │ ├── numparse_impl.h │ ├── numparse_parsednumber.cpp │ ├── numparse_scientific.cpp │ ├── numparse_scientific.h │ ├── numparse_symbols.cpp │ ├── numparse_symbols.h │ ├── numparse_types.h │ ├── numparse_utils.h │ ├── numparse_validators.cpp │ ├── numparse_validators.h │ ├── numrange_capi.cpp │ ├── numrange_fluent.cpp │ ├── numrange_impl.cpp │ ├── numrange_impl.h │ ├── numsys.cpp │ ├── numsys_impl.h │ ├── olsontz.cpp │ ├── olsontz.h │ ├── persncal.cpp │ ├── persncal.h │ ├── pluralranges.cpp │ ├── pluralranges.h │ ├── plurfmt.cpp │ ├── plurrule.cpp │ ├── plurrule_impl.h │ ├── quant.cpp │ ├── quant.h │ ├── quantityformatter.cpp │ ├── quantityformatter.h │ ├── rbnf.cpp │ ├── rbt.cpp │ ├── rbt.h │ ├── rbt_data.cpp │ ├── rbt_data.h │ ├── rbt_pars.cpp │ ├── rbt_pars.h │ ├── rbt_rule.cpp │ ├── rbt_rule.h │ ├── rbt_set.cpp │ ├── rbt_set.h │ ├── rbtz.cpp │ ├── regexcmp.cpp │ ├── regexcmp.h │ ├── regexcst.h │ ├── regexcst.pl │ ├── regexcst.txt │ ├── regeximp.cpp │ ├── regeximp.h │ ├── regexst.cpp │ ├── regexst.h │ ├── regextxt.cpp │ ├── regextxt.h │ ├── region.cpp │ ├── region_impl.h │ ├── reldatefmt.cpp │ ├── reldtfmt.cpp │ ├── reldtfmt.h │ ├── rematch.cpp │ ├── remtrans.cpp │ ├── remtrans.h │ ├── repattrn.cpp │ ├── rulebasedcollator.cpp │ ├── scientificnumberformatter.cpp │ ├── scriptset.cpp │ ├── scriptset.h │ ├── search.cpp │ ├── selfmt.cpp │ ├── selfmtimpl.h │ ├── sharedbreakiterator.cpp │ ├── sharedbreakiterator.h │ ├── sharedcalendar.h │ ├── shareddateformatsymbols.h │ ├── sharednumberformat.h │ ├── sharedpluralrules.h │ ├── simpletz.cpp │ ├── smpdtfmt.cpp │ ├── smpdtfst.cpp │ ├── smpdtfst.h │ ├── sortkey.cpp │ ├── sources.txt │ ├── standardplural.cpp │ ├── standardplural.h │ ├── string_segment.cpp │ ├── string_segment.h │ ├── strmatch.cpp │ ├── strmatch.h │ ├── strrepl.cpp │ ├── strrepl.h │ ├── stsearch.cpp │ ├── taiwncal.cpp │ ├── taiwncal.h │ ├── timezone.cpp │ ├── titletrn.cpp │ ├── titletrn.h │ ├── tmunit.cpp │ ├── tmutamt.cpp │ ├── tmutfmt.cpp │ ├── tolowtrn.cpp │ ├── tolowtrn.h │ ├── toupptrn.cpp │ ├── toupptrn.h │ ├── translit.cpp │ ├── transreg.cpp │ ├── transreg.h │ ├── tridpars.cpp │ ├── tridpars.h │ ├── tzfmt.cpp │ ├── tzgnames.cpp │ ├── tzgnames.h │ ├── tznames.cpp │ ├── tznames_impl.cpp │ ├── tznames_impl.h │ ├── tzrule.cpp │ ├── tztrans.cpp │ ├── uameasureformat.cpp │ ├── uatimeunitformat.cpp │ ├── uatimezone.cpp │ ├── ucal.cpp │ ├── ucln_in.cpp │ ├── ucln_in.h │ ├── ucol.cpp │ ├── ucol_imp.h │ ├── ucol_res.cpp │ ├── ucol_sit.cpp │ ├── ucoleitr.cpp │ ├── ucsdet.cpp │ ├── udat.cpp │ ├── udateintervalformat.cpp │ ├── udatintv.cpp │ ├── udatpg.cpp │ ├── ufieldpositer.cpp │ ├── uitercollationiterator.cpp │ ├── uitercollationiterator.h │ ├── ulistformatter.cpp │ ├── umsg.cpp │ ├── umsg_imp.h │ ├── unesctrn.cpp │ ├── unesctrn.h │ ├── uni2name.cpp │ ├── uni2name.h │ ├── unicode │ │ ├── alphaindex.h │ │ ├── basictz.h │ │ ├── calendar.h │ │ ├── choicfmt.h │ │ ├── coleitr.h │ │ ├── coll.h │ │ ├── compactdecimalformat.h │ │ ├── curramt.h │ │ ├── currpinf.h │ │ ├── currunit.h │ │ ├── datefmt.h │ │ ├── dcfmtsym.h │ │ ├── decimfmt.h │ │ ├── displayoptions.h │ │ ├── dtfmtsym.h │ │ ├── dtitvfmt.h │ │ ├── dtitvinf.h │ │ ├── dtptngen.h │ │ ├── dtrule.h │ │ ├── fieldpos.h │ │ ├── fmtable.h │ │ ├── format.h │ │ ├── formattednumber.h │ │ ├── formattedvalue.h │ │ ├── fpositer.h │ │ ├── gender.h │ │ ├── gregocal.h │ │ ├── listformatter.h │ │ ├── measfmt.h │ │ ├── measunit.h │ │ ├── measure.h │ │ ├── messageformat2.h │ │ ├── messageformat2_arguments.h │ │ ├── messageformat2_data_model.h │ │ ├── messageformat2_data_model_names.h │ │ ├── messageformat2_formattable.h │ │ ├── messageformat2_function_registry.h │ │ ├── msgfmt.h │ │ ├── nounit.h │ │ ├── numberformatter.h │ │ ├── numberrangeformatter.h │ │ ├── numfmt.h │ │ ├── numsys.h │ │ ├── plurfmt.h │ │ ├── plurrule.h │ │ ├── rbnf.h │ │ ├── rbtz.h │ │ ├── regex.h │ │ ├── region.h │ │ ├── reldatefmt.h │ │ ├── scientificnumberformatter.h │ │ ├── search.h │ │ ├── selfmt.h │ │ ├── simplenumberformatter.h │ │ ├── simpletz.h │ │ ├── smpdtfmt.h │ │ ├── sortkey.h │ │ ├── stsearch.h │ │ ├── tblcoll.h │ │ ├── timezone.h │ │ ├── tmunit.h │ │ ├── tmutamt.h │ │ ├── tmutfmt.h │ │ ├── translit.h │ │ ├── tzfmt.h │ │ ├── tznames.h │ │ ├── tzrule.h │ │ ├── tztrans.h │ │ ├── uameasureformat.h │ │ ├── uameasureunit.h │ │ ├── uatimeunitformat.h │ │ ├── uatimezone.h │ │ ├── ucal.h │ │ ├── ucol.h │ │ ├── ucoleitr.h │ │ ├── ucsdet.h │ │ ├── udat.h │ │ ├── udateintervalformat.h │ │ ├── udatintv.h │ │ ├── udatpg.h │ │ ├── udisplayoptions.h │ │ ├── ufieldpositer.h │ │ ├── uformattable.h │ │ ├── uformattednumber.h │ │ ├── uformattedvalue.h │ │ ├── ugender.h │ │ ├── ulistformatter.h │ │ ├── umsg.h │ │ ├── unirepl.h │ │ ├── unum.h │ │ ├── unumberformatter.h │ │ ├── unumberoptions.h │ │ ├── unumberrangeformatter.h │ │ ├── unumsys.h │ │ ├── uplrule.h │ │ ├── upluralrules.h │ │ ├── uregex.h │ │ ├── uregion.h │ │ ├── ureldatefmt.h │ │ ├── usearch.h │ │ ├── usimplenumberformatter.h │ │ ├── uspoof.h │ │ ├── utmscale.h │ │ ├── utrans.h │ │ └── vtzone.h │ ├── units_complexconverter.cpp │ ├── units_complexconverter.h │ ├── units_converter.cpp │ ├── units_converter.h │ ├── units_data.cpp │ ├── units_data.h │ ├── units_router.cpp │ ├── units_router.h │ ├── unum.cpp │ ├── unumsys.cpp │ ├── uplrule.cpp │ ├── upluralrules.cpp │ ├── uregex.cpp │ ├── uregexc.cpp │ ├── uregion.cpp │ ├── usearch.cpp │ ├── uspoof.cpp │ ├── uspoof_build.cpp │ ├── uspoof_conf.cpp │ ├── uspoof_conf.h │ ├── uspoof_impl.cpp │ ├── uspoof_impl.h │ ├── usrchimp.h │ ├── utf16collationiterator.cpp │ ├── utf16collationiterator.h │ ├── utf8collationiterator.cpp │ ├── utf8collationiterator.h │ ├── utmscale.cpp │ ├── utrans.cpp │ ├── vietnamesecal.cpp │ ├── vietnamesecal.h │ ├── vtzone.cpp │ ├── vzone.cpp │ ├── vzone.h │ ├── windtfmt.cpp │ ├── windtfmt.h │ ├── winnmfmt.cpp │ ├── winnmfmt.h │ ├── wintzimpl.cpp │ ├── wintzimpl.h │ ├── zonemeta.cpp │ ├── zonemeta.h │ ├── zrule.cpp │ ├── zrule.h │ ├── ztrans.cpp │ └── ztrans.h │ ├── icudefs.mk.in │ ├── install-sh │ ├── io │ ├── Makefile.in │ ├── io.rc │ ├── io.vcxproj │ ├── io.vcxproj.filters │ ├── locbund.cpp │ ├── locbund.h │ ├── sources.txt │ ├── sprintf.cpp │ ├── sscanf.cpp │ ├── ucln_io.cpp │ ├── ucln_io.h │ ├── ufile.cpp │ ├── ufile.h │ ├── ufmt_cmn.cpp │ ├── ufmt_cmn.h │ ├── unicode │ │ ├── ustdio.h │ │ └── ustream.h │ ├── uprintf.cpp │ ├── uprintf.h │ ├── uprntf_p.cpp │ ├── uscanf.cpp │ ├── uscanf.h │ ├── uscanf_p.cpp │ ├── ustdio.cpp │ └── ustream.cpp │ ├── layoutex │ ├── LXUtilities.cpp │ ├── LXUtilities.h │ ├── Makefile.in │ ├── ParagraphLayout.cpp │ ├── RunArrays.cpp │ ├── layout │ │ ├── ParagraphLayout.h │ │ ├── RunArrays.h │ │ ├── playout.h │ │ └── plruns.h │ ├── layoutex.rc │ ├── layoutex.vcxproj │ ├── layoutex.vcxproj.filters │ ├── playout.cpp │ ├── plruns.cpp │ └── sources.txt │ ├── mkinstalldirs │ ├── python │ └── icutools │ │ ├── __init__.py │ │ └── databuilder │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── comment_stripper.py │ │ ├── filtration.py │ │ ├── filtration_schema.json │ │ ├── locale_dependencies.py │ │ ├── renderers │ │ ├── __init__.py │ │ ├── common_exec.py │ │ └── makefile.py │ │ ├── request_types.py │ │ ├── test │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── filtration_test.py │ │ └── sample_data │ │ │ ├── brkitr │ │ │ └── LOCALE_DEPS.json │ │ │ ├── locales │ │ │ └── LOCALE_DEPS.json │ │ │ └── rbnf │ │ │ └── LOCALE_DEPS.json │ │ └── utils.py │ ├── runConfigureICU │ ├── samples │ ├── Makefile.in │ ├── all │ │ ├── all.sln │ │ └── samplecheck.bat │ ├── coll │ │ ├── Makefile │ │ ├── coll.cpp │ │ ├── coll.sln │ │ ├── coll.vcxproj │ │ ├── coll.vcxproj.filters │ │ └── readme.txt │ ├── defs.mk │ ├── readme.txt │ ├── rules.mk │ ├── strsrch │ │ ├── Makefile │ │ ├── readme.txt │ │ ├── strsrch.cpp │ │ ├── strsrch.sln │ │ ├── strsrch.vcxproj │ │ └── strsrch.vcxproj.filters │ ├── translit │ │ ├── Makefile │ │ ├── README.TXT │ │ ├── answers │ │ │ ├── main_1.cpp │ │ │ ├── main_2.cpp │ │ │ ├── main_3.cpp │ │ │ ├── main_4.cpp │ │ │ ├── unaccent.cpp │ │ │ └── unaccent.h │ │ ├── main.cpp │ │ ├── translit.sln │ │ ├── translit.vcxproj │ │ ├── translit.vcxproj.filters │ │ ├── unaccent.cpp │ │ ├── unaccent.h │ │ ├── util.cpp │ │ └── util.h │ └── ugrep │ │ ├── Makefile │ │ ├── readme.txt │ │ ├── ugrep.cpp │ │ ├── ugrep.sln │ │ ├── ugrep.vcxproj │ │ └── ugrep.vcxproj.filters │ ├── stubdata │ ├── BUILD.bazel │ ├── Makefile.in │ ├── sources.txt │ ├── stubdata.cpp │ ├── stubdata.h │ ├── stubdata.vcxproj │ └── stubdata.vcxproj.filters │ ├── test │ ├── Makefile.in │ ├── cintltst │ │ ├── Makefile.in │ │ ├── bocu1tst.c │ │ ├── callcoll.c │ │ ├── callcoll.h │ │ ├── calldata.h │ │ ├── calltest.c │ │ ├── capitst.c │ │ ├── capitst.h │ │ ├── cbiapts.c │ │ ├── cbiapts.h │ │ ├── cbididat.c │ │ ├── cbiditransformtst.c │ │ ├── cbiditst.c │ │ ├── cbiditst.h │ │ ├── cbkittst.c │ │ ├── ccaltst.c │ │ ├── ccaltst.h │ │ ├── ccapitst.c │ │ ├── ccapitst.h │ │ ├── ccolltst.c │ │ ├── ccolltst.h │ │ ├── cconvtst.c │ │ ├── cctest.c │ │ ├── ccurrtst.c │ │ ├── ccurrtst.h │ │ ├── cdateintervalformattest.c │ │ ├── cdattst.c │ │ ├── cdattst.h │ │ ├── cdetst.c │ │ ├── cdetst.h │ │ ├── cdtdptst.c │ │ ├── cdtdptst.h │ │ ├── cdtrgtst.c │ │ ├── cdtrgtst.h │ │ ├── cestst.c │ │ ├── cestst.h │ │ ├── cfintst.c │ │ ├── cfintst.h │ │ ├── cformtst.c │ │ ├── cformtst.h │ │ ├── cfrtst.c │ │ ├── cfrtst.h │ │ ├── cg7coll.c │ │ ├── cg7coll.h │ │ ├── cgendtst.c │ │ ├── chashtst.c │ │ ├── cintltst.c │ │ ├── cintltst.h │ │ ├── cintltst.vcxproj │ │ ├── cintltst.vcxproj.filters │ │ ├── citertst.c │ │ ├── citertst.h │ │ ├── cjaptst.c │ │ ├── cjaptst.h │ │ ├── cldrtest.c │ │ ├── cloctst.c │ │ ├── cloctst.h │ │ ├── cmeasureformattest.c │ │ ├── cmsccoll.c │ │ ├── cmsgtst.c │ │ ├── cmsgtst.h │ │ ├── cnmdptst.c │ │ ├── cnmdptst.h │ │ ├── cnormtst.c │ │ ├── cnormtst.h │ │ ├── cnumtst.c │ │ ├── cnumtst.h │ │ ├── cpluralrulestest.c │ │ ├── cposxtst.c │ │ ├── crelativedateformattest.c │ │ ├── crestst.c │ │ ├── crestst.h │ │ ├── creststn.c │ │ ├── creststn.h │ │ ├── cstrcase.c │ │ ├── cstrtest.c │ │ ├── cturtst.c │ │ ├── cturtst.h │ │ ├── cucdapi.c │ │ ├── cucdapi.h │ │ ├── cucdtst.c │ │ ├── currtest.c │ │ ├── custrtrn.c │ │ ├── custrtst.c │ │ ├── cutiltst.c │ │ ├── encoll.c │ │ ├── encoll.h │ │ ├── eurocreg.c │ │ ├── hpmufn.c │ │ ├── idnatest.c │ │ ├── nccbtst.c │ │ ├── nccbtst.h │ │ ├── ncnvfbts.c │ │ ├── ncnvfbts.h │ │ ├── ncnvtst.c │ │ ├── nfsprep.c │ │ ├── nfsprep.h │ │ ├── nucnvtst.c │ │ ├── nucnvtst.h │ │ ├── putiltst.c │ │ ├── reapits.c │ │ ├── sorttest.c │ │ ├── spooftest.c │ │ ├── spreptst.c │ │ ├── sprpdata.c │ │ ├── stdnmtst.c │ │ ├── tracetst.c │ │ ├── trie2test.c │ │ ├── trietest.c │ │ ├── uadatadumper.c │ │ ├── uatimezonetest.c │ │ ├── ucnvseltst.c │ │ ├── ucnvseltst.h │ │ ├── ucptrietest.c │ │ ├── ucsdetst.c │ │ ├── udatatst.c │ │ ├── udatpg_test.c │ │ ├── uenumtst.c │ │ ├── uformattedvaluetst.c │ │ ├── ulistfmttest.c │ │ ├── ulocaletst.c │ │ ├── ulocbuildertst.c │ │ ├── unumberformattertst.c │ │ ├── unumberrangeformattertst.c │ │ ├── uregiontest.c │ │ ├── usettest.c │ │ ├── usrchdat.inc │ │ ├── usrchtst.c │ │ ├── utexttst.c │ │ ├── utf16tst.c │ │ ├── utf8tst.c │ │ ├── utmstest.c │ │ └── utransts.c │ ├── compat │ │ ├── Makefile.in │ │ ├── readme.txt │ │ ├── tzdate.c │ │ └── tzone.pl │ ├── depstest │ │ ├── dependencies.py │ │ ├── dependencies.txt │ │ ├── depstest.py │ │ └── icu-dependencies-mode.el │ ├── fuzzer │ │ ├── Makefile.in │ │ ├── break_iterator_fuzzer.cpp │ │ ├── calendar_fuzzer.cpp │ │ ├── collator_compare_fuzzer.cpp │ │ ├── collator_compare_fuzzer_seed_corpus.txt │ │ ├── collator_rulebased_ICU-21041.fuzz │ │ ├── collator_rulebased_fuzzer.cpp │ │ ├── collator_rulebased_fuzzer_seed_corpus.txt │ │ ├── converter_fuzzer.cpp │ │ ├── date_format_fuzzer.cpp │ │ ├── date_time_pattern_generator_fuzzer.cpp │ │ ├── dtfmtsym_fuzzer.cpp │ │ ├── fuzzer_driver.cpp │ │ ├── fuzzer_utils.h │ │ ├── list_format_fuzzer.cpp │ │ ├── locale_fuzzer.cpp │ │ ├── locale_morph_fuzzer.cpp │ │ ├── locale_morph_fuzzer_seed_corpus.txt │ │ ├── locale_util.cpp │ │ ├── locale_util.h │ │ ├── message_formatter_fuzzer.cpp │ │ ├── normalizer2_fuzzer.cpp │ │ ├── number_format_fuzzer.cpp │ │ ├── number_formatter_fuzzer.cpp │ │ ├── plurrule_fuzzer.cpp │ │ ├── relative_date_time_formatter_fuzzer.cpp │ │ ├── rule_based_break_iterator_fuzzer.cpp │ │ ├── time_zone_names_fuzzer.cpp │ │ ├── timezone_create_fuzzer.cpp │ │ ├── ubidi_fuzzer.cpp │ │ ├── ucasemap_fuzzer.cpp │ │ ├── uloc_canonicalize_fuzzer.cpp │ │ ├── uloc_canonicalize_fuzzer_seed_corpus.txt │ │ ├── uloc_for_language_tag_fuzzer.cpp │ │ ├── uloc_for_language_tag_fuzzer_seed_corpus.txt │ │ ├── uloc_get_name_fuzzer.cpp │ │ ├── uloc_get_name_fuzzer_seed_corpus.txt │ │ ├── uloc_is_right_to_left_fuzzer.cpp │ │ ├── uloc_is_right_to_left_fuzzer_seed_corpus.txt │ │ ├── uloc_open_keywords_fuzzer.cpp │ │ ├── uloc_open_keywords_fuzzer_seed_corpus.txt │ │ ├── unicode_string_codepage_create_fuzzer.cpp │ │ ├── unicodeset_fuzzer.cpp │ │ ├── uprop_fuzzer.cpp │ │ ├── uregex_match_fuzzer.cpp │ │ ├── uregex_open_fuzzer.cpp │ │ └── uregex_open_fuzzer.dict │ ├── hdrtst │ │ ├── Makefile.in │ │ ├── dfiles.txt │ │ ├── testinternalheaders.sh │ │ └── testtagsguards.sh │ ├── intltest │ │ ├── Makefile.in │ │ ├── aliastst.cpp │ │ ├── aliastst.h │ │ ├── allcoll.cpp │ │ ├── allcoll.h │ │ ├── alphaindextst.cpp │ │ ├── alphaindextst.h │ │ ├── apicoll.cpp │ │ ├── apicoll.h │ │ ├── astrotst.cpp │ │ ├── astrotst.h │ │ ├── bidiconf.cpp │ │ ├── bytestrietest.cpp │ │ ├── calcasts.cpp │ │ ├── calcasts.h │ │ ├── callimts.cpp │ │ ├── callimts.h │ │ ├── calregts.cpp │ │ ├── calregts.h │ │ ├── caltest.cpp │ │ ├── caltest.h │ │ ├── caltestdata.h │ │ ├── caltztst.cpp │ │ ├── caltztst.h │ │ ├── canittst.cpp │ │ ├── canittst.h │ │ ├── citrtest.cpp │ │ ├── citrtest.h │ │ ├── collationtest.cpp │ │ ├── colldata.cpp │ │ ├── colldata.h │ │ ├── compactdecimalformattest.cpp │ │ ├── convtest.cpp │ │ ├── convtest.h │ │ ├── cpdtrtst.cpp │ │ ├── cpdtrtst.h │ │ ├── csdetest.cpp │ │ ├── csdetest.h │ │ ├── currcoll.cpp │ │ ├── currcoll.h │ │ ├── dadrcal.cpp │ │ ├── dadrcal.h │ │ ├── dadrfmt.cpp │ │ ├── dadrfmt.h │ │ ├── datadrivennumberformattestsuite.cpp │ │ ├── datadrivennumberformattestsuite.h │ │ ├── dcfmapts.cpp │ │ ├── dcfmapts.h │ │ ├── dcfmtest.cpp │ │ ├── dcfmtest.h │ │ ├── decoll.cpp │ │ ├── decoll.h │ │ ├── displayoptions_test.cpp │ │ ├── dtfmapts.cpp │ │ ├── dtfmapts.h │ │ ├── dtfmrgts.cpp │ │ ├── dtfmrgts.h │ │ ├── dtfmtrtts.cpp │ │ ├── dtfmtrtts.h │ │ ├── dtfmttst.cpp │ │ ├── dtfmttst.h │ │ ├── dtifmtts.cpp │ │ ├── dtifmtts.h │ │ ├── dtptngts.cpp │ │ ├── dtptngts.h │ │ ├── encoll.cpp │ │ ├── encoll.h │ │ ├── erarulestest.cpp │ │ ├── erarulestest.h │ │ ├── escoll.cpp │ │ ├── escoll.h │ │ ├── ficoll.cpp │ │ ├── ficoll.h │ │ ├── fldset.cpp │ │ ├── fldset.h │ │ ├── formatted_string_builder_test.cpp │ │ ├── formattedvaluetest.cpp │ │ ├── frcoll.cpp │ │ ├── frcoll.h │ │ ├── g7coll.cpp │ │ ├── g7coll.h │ │ ├── genderinfotest.cpp │ │ ├── icusvtst.cpp │ │ ├── icusvtst.h │ │ ├── idnaconf.cpp │ │ ├── idnaconf.h │ │ ├── idnaref.cpp │ │ ├── idnaref.h │ │ ├── incaltst.cpp │ │ ├── incaltst.h │ │ ├── intltest.cpp │ │ ├── intltest.h │ │ ├── intltest.vcxproj │ │ ├── intltest.vcxproj.filters │ │ ├── itercoll.cpp │ │ ├── itercoll.h │ │ ├── itformat.cpp │ │ ├── itformat.h │ │ ├── itmajor.cpp │ │ ├── itmajor.h │ │ ├── itrbbi.cpp │ │ ├── itrbbi.h │ │ ├── itrbnf.cpp │ │ ├── itrbnf.h │ │ ├── itrbnfp.cpp │ │ ├── itrbnfp.h │ │ ├── itrbnfrt.cpp │ │ ├── itrbnfrt.h │ │ ├── itspoof.cpp │ │ ├── itspoof.h │ │ ├── ittrans.cpp │ │ ├── ittrans.h │ │ ├── itutil.cpp │ │ ├── itutil.h │ │ ├── jacoll.cpp │ │ ├── jacoll.h │ │ ├── jamotest.cpp │ │ ├── jamotest.h │ │ ├── lcukocol.cpp │ │ ├── lcukocol.h │ │ ├── listformattertest.cpp │ │ ├── listformattertest.h │ │ ├── localebuildertest.cpp │ │ ├── localebuildertest.h │ │ ├── localematchertest.cpp │ │ ├── locnmtst.cpp │ │ ├── locnmtst.h │ │ ├── loctest.cpp │ │ ├── loctest.h │ │ ├── lstmbetst.cpp │ │ ├── lstmbetst.h │ │ ├── measfmttest.cpp │ │ ├── messageformat2test.cpp │ │ ├── messageformat2test.h │ │ ├── messageformat2test_custom.cpp │ │ ├── messageformat2test_icu.cpp │ │ ├── messageformat2test_read_json.cpp │ │ ├── messageformat2test_utils.h │ │ ├── miscdtfm.cpp │ │ ├── miscdtfm.h │ │ ├── mnkytst.cpp │ │ ├── mnkytst.h │ │ ├── msfmrgts.cpp │ │ ├── msfmrgts.h │ │ ├── nmfmapts.cpp │ │ ├── nmfmapts.h │ │ ├── nmfmtrt.cpp │ │ ├── nmfmtrt.h │ │ ├── normconf.cpp │ │ ├── normconf.h │ │ ├── nptrans.cpp │ │ ├── nptrans.h │ │ ├── numberformattesttuple.cpp │ │ ├── numberformattesttuple.h │ │ ├── numbertest.h │ │ ├── numbertest_affixutils.cpp │ │ ├── numbertest_api.cpp │ │ ├── numbertest_decimalquantity.cpp │ │ ├── numbertest_doubleconversion.cpp │ │ ├── numbertest_modifiers.cpp │ │ ├── numbertest_parse.cpp │ │ ├── numbertest_patternmodifier.cpp │ │ ├── numbertest_patternstring.cpp │ │ ├── numbertest_permutation.cpp │ │ ├── numbertest_range.cpp │ │ ├── numbertest_simple.cpp │ │ ├── numbertest_skeletons.cpp │ │ ├── numfmtdatadriventest.cpp │ │ ├── numfmtspectest.cpp │ │ ├── numfmtst.cpp │ │ ├── numfmtst.h │ │ ├── numrgts.cpp │ │ ├── numrgts.h │ │ ├── pluralmaptest.cpp │ │ ├── plurfmts.cpp │ │ ├── plurfmts.h │ │ ├── plurults.cpp │ │ ├── plurults.h │ │ ├── pptest.cpp │ │ ├── pptest.h │ │ ├── punyref.cpp │ │ ├── punyref.h │ │ ├── quantityformattertest.cpp │ │ ├── rbbiapts.cpp │ │ ├── rbbiapts.h │ │ ├── rbbimonkeytest.cpp │ │ ├── rbbimonkeytest.h │ │ ├── rbbitst.cpp │ │ ├── rbbitst.h │ │ ├── regcoll.cpp │ │ ├── regcoll.h │ │ ├── regextst.cpp │ │ ├── regextst.h │ │ ├── regiontst.cpp │ │ ├── regiontst.h │ │ ├── reldatefmttest.cpp │ │ ├── reptest.cpp │ │ ├── reptest.h │ │ ├── restest.cpp │ │ ├── restest.h │ │ ├── restsnew.cpp │ │ ├── restsnew.h │ │ ├── scientificnumberformattertest.cpp │ │ ├── sdtfmtts.cpp │ │ ├── sdtfmtts.h │ │ ├── selfmts.cpp │ │ ├── selfmts.h │ │ ├── sfwdchit.cpp │ │ ├── sfwdchit.h │ │ ├── simpleformattertest.cpp │ │ ├── simplethread.cpp │ │ ├── simplethread.h │ │ ├── srchtest.cpp │ │ ├── srchtest.h │ │ ├── ssearch.cpp │ │ ├── ssearch.h │ │ ├── static_unisets_test.cpp │ │ ├── strcase.cpp │ │ ├── string_segment_test.cpp │ │ ├── strtest.cpp │ │ ├── strtest.h │ │ ├── svccoll.cpp │ │ ├── svccoll.h │ │ ├── tchcfmt.cpp │ │ ├── tchcfmt.h │ │ ├── testidn.cpp │ │ ├── testidna.cpp │ │ ├── testidna.h │ │ ├── testutil.cpp │ │ ├── testutil.h │ │ ├── textfile.cpp │ │ ├── textfile.h │ │ ├── tfsmalls.cpp │ │ ├── tfsmalls.h │ │ ├── thcoll.cpp │ │ ├── thcoll.h │ │ ├── tmsgfmt.cpp │ │ ├── tmsgfmt.h │ │ ├── tokiter.cpp │ │ ├── tokiter.h │ │ ├── transapi.cpp │ │ ├── transapi.h │ │ ├── transrt.cpp │ │ ├── transrt.h │ │ ├── transtst.cpp │ │ ├── transtst.h │ │ ├── trcoll.cpp │ │ ├── trcoll.h │ │ ├── trnserr.cpp │ │ ├── trnserr.h │ │ ├── tscoll.cpp │ │ ├── tscoll.h │ │ ├── tsdate.cpp │ │ ├── tsdate.h │ │ ├── tsdcfmsy.cpp │ │ ├── tsdcfmsy.h │ │ ├── tsdtfmsy.cpp │ │ ├── tsdtfmsy.h │ │ ├── tsmthred.cpp │ │ ├── tsmthred.h │ │ ├── tsnmfmt.cpp │ │ ├── tsnmfmt.h │ │ ├── tsputil.cpp │ │ ├── tsputil.h │ │ ├── tstnorm.cpp │ │ ├── tstnorm.h │ │ ├── tstnrapi.cpp │ │ ├── tufmtts.cpp │ │ ├── tzbdtest.cpp │ │ ├── tzbdtest.h │ │ ├── tzfmttst.cpp │ │ ├── tzfmttst.h │ │ ├── tzoffloc.cpp │ │ ├── tzoffloc.h │ │ ├── tzregts.cpp │ │ ├── tzregts.h │ │ ├── tzrulets.cpp │ │ ├── tzrulets.h │ │ ├── tztest.cpp │ │ ├── tztest.h │ │ ├── ucaconf.cpp │ │ ├── ucaconf.h │ │ ├── ucdtest.cpp │ │ ├── ucdtest.h │ │ ├── uchar_type_build_test.cpp │ │ ├── ucharstrietest.cpp │ │ ├── unifiedcachetest.cpp │ │ ├── units_data_test.cpp │ │ ├── units_router_test.cpp │ │ ├── units_test.cpp │ │ ├── uobjtest.cpp │ │ ├── uobjtest.h │ │ ├── usettest.cpp │ │ ├── usettest.h │ │ ├── ustrtest.cpp │ │ ├── ustrtest.h │ │ ├── uts46test.cpp │ │ ├── utxttest.cpp │ │ ├── utxttest.h │ │ ├── uvectest.cpp │ │ ├── uvectest.h │ │ ├── v32test.cpp │ │ ├── v32test.h │ │ ├── windttst.cpp │ │ ├── windttst.h │ │ ├── winnmtst.cpp │ │ ├── winnmtst.h │ │ ├── winutil.cpp │ │ └── winutil.h │ ├── iotest │ │ ├── Makefile.in │ │ ├── filetst.c │ │ ├── iotest.cpp │ │ ├── iotest.h │ │ ├── iotest.vcxproj │ │ ├── iotest.vcxproj.filters │ │ ├── stream.cpp │ │ ├── strtst.c │ │ └── trnstst.c │ ├── letest │ │ ├── FontObject.cpp │ │ ├── FontObject.h │ │ ├── FontTableCache.cpp │ │ ├── FontTableCache.h │ │ ├── Makefile.in │ │ ├── PortableFontInstance.cpp │ │ ├── PortableFontInstance.h │ │ ├── SimpleFontInstance.cpp │ │ ├── SimpleFontInstance.h │ │ ├── cfonts.cpp │ │ ├── cfonts.h │ │ ├── cletest.c │ │ ├── cletest.sln │ │ ├── cletest.vcxproj │ │ ├── cletest.vcxproj.filters │ │ ├── cmaps.cpp │ │ ├── cmaps.h │ │ ├── gendata.cpp │ │ ├── gendata.sln │ │ ├── gendata.vcxproj │ │ ├── gendata.vcxproj.filters │ │ ├── gendata.xml │ │ ├── letest.cpp │ │ ├── letest.h │ │ ├── letest.sln │ │ ├── letest.vcxproj │ │ ├── letest.vcxproj.filters │ │ ├── letsutil.cpp │ │ ├── letsutil.h │ │ ├── readme.html │ │ ├── sfnt.h │ │ ├── testdata.cpp │ │ ├── xmlreader.cpp │ │ └── xmlreader.h │ ├── perf │ │ ├── DateFmtPerf │ │ │ ├── DateFmtPerf.cpp │ │ │ ├── DateFmtPerf.h │ │ │ ├── DateFmtPerf.vcxproj │ │ │ ├── DateFmtPerf.vcxproj.filters │ │ │ ├── Makefile.in │ │ │ ├── ReadMe.txt │ │ │ ├── breakdata.h │ │ │ ├── collationdata.h │ │ │ └── datedata.h │ │ ├── Makefile.in │ │ ├── README │ │ ├── charperf │ │ │ ├── CharPerf.pl │ │ │ ├── CharPerf_r.pl │ │ │ ├── Makefile.in │ │ │ ├── charperf.cpp │ │ │ ├── charperf.h │ │ │ ├── charperf.vcxproj │ │ │ └── charperf.vcxproj.filters │ │ ├── collationperf │ │ │ ├── CollPerf.pl │ │ │ ├── Makefile.in │ │ │ ├── collperf.cpp │ │ │ └── readme.html │ │ ├── collperf │ │ │ ├── CollPerf.pl │ │ │ ├── CollPerf_r.pl │ │ │ ├── Makefile.in │ │ │ ├── collperf.cpp │ │ │ ├── collperf.vcxproj │ │ │ └── collperf.vcxproj.filters │ │ ├── collperf2 │ │ │ ├── CollPerf2_r.pl │ │ │ ├── Makefile.in │ │ │ ├── collperf2.cpp │ │ │ ├── collperf2.vcxproj │ │ │ └── collperf2.vcxproj.filters │ │ ├── convperf │ │ │ ├── ConvPerf_r.pl │ │ │ ├── Makefile.in │ │ │ ├── convperf.cpp │ │ │ ├── convperf.h │ │ │ ├── convperf.vcxproj │ │ │ ├── convperf.vcxproj.filters │ │ │ ├── convperf_ansi.pl │ │ │ ├── convperf_iml.pl │ │ │ └── data.h │ │ ├── dicttrieperf │ │ │ ├── Makefile.in │ │ │ └── dicttrieperf.cpp │ │ ├── howExpensiveIs │ │ │ ├── Makefile.in │ │ │ ├── howExpensiveIs.cpp │ │ │ ├── readme.txt │ │ │ ├── sieve.cpp │ │ │ └── sieve.h │ │ ├── icuperf2report.xsl │ │ ├── leperf │ │ │ ├── FontObject.cpp │ │ │ ├── FontObject.h │ │ │ ├── FontTableCache.cpp │ │ │ ├── FontTableCache.h │ │ │ ├── Makefile.in │ │ │ ├── PortableFontInstance.cpp │ │ │ ├── PortableFontInstance.h │ │ │ ├── SimpleFontInstance.cpp │ │ │ ├── SimpleFontInstance.h │ │ │ ├── cfonts.cpp │ │ │ ├── cfonts.h │ │ │ ├── cmaps.cpp │ │ │ ├── cmaps.h │ │ │ ├── leperf.cpp │ │ │ ├── sfnt.h │ │ │ ├── xmlreader.cpp │ │ │ └── xmlreader.h │ │ ├── localecanperf │ │ │ ├── Makefile.in │ │ │ ├── localecanperf.cpp │ │ │ └── runTest.sh │ │ ├── normperf │ │ │ ├── Makefile.in │ │ │ ├── NormPerf.pl │ │ │ ├── NormPerf_r.pl │ │ │ ├── dtfmtrtperf.cpp │ │ │ ├── dtfmtrtperf.h │ │ │ ├── dtfmtrtperf.vcxproj │ │ │ ├── dtfmtrtperf.vcxproj.filters │ │ │ ├── normperf.cpp │ │ │ ├── normperf.h │ │ │ ├── normperf.vcxproj │ │ │ ├── normperf.vcxproj.filters │ │ │ └── simplenormperf.cpp │ │ ├── perf.sln │ │ ├── perldriver │ │ │ ├── Common.pl.template │ │ │ ├── Dataset.pm │ │ │ ├── Format.pm │ │ │ ├── Output.pm │ │ │ └── PerfFramework.pm │ │ ├── strsrchperf │ │ │ ├── Makefile.in │ │ │ ├── StrSrchPerf_r.pl │ │ │ ├── strsrchperf.cpp │ │ │ ├── strsrchperf.h │ │ │ ├── strsrchperf.vcxproj │ │ │ └── strsrchperf.vcxproj.filters │ │ ├── ubrkperf │ │ │ ├── Makefile.in │ │ │ ├── UBrkPerf_r.pl │ │ │ ├── ubrkperf.cpp │ │ │ ├── ubrkperf.dsp │ │ │ ├── ubrkperf.h │ │ │ ├── ubrkperf.vcxproj │ │ │ ├── ubrkperf.vcxproj.filters │ │ │ └── ubrkperf20.dsp │ │ ├── ucnvavailperf │ │ │ ├── ucnvavailperf.cpp │ │ │ └── ucnvavailperf.vcxproj │ │ ├── unisetperf │ │ │ ├── Makefile.in │ │ │ ├── draft │ │ │ │ ├── bitset.cpp │ │ │ │ ├── contperf.bat │ │ │ │ ├── contperf.sh │ │ │ │ ├── span16perf.bat │ │ │ │ ├── span16perf.sh │ │ │ │ ├── span8perf.bat │ │ │ │ ├── span8perf.sh │ │ │ │ ├── trieset.cpp │ │ │ │ └── unicont.h │ │ │ ├── unisetperf.cpp │ │ │ ├── unisetperf.pl │ │ │ └── unisetperf.vcxproj │ │ ├── usetperf │ │ │ ├── Makefile.in │ │ │ ├── UsetPerf.pl │ │ │ ├── bitset.cpp │ │ │ ├── bitset.h │ │ │ ├── usetperf.cpp │ │ │ ├── usetperf.vcxproj │ │ │ └── usetperf.vcxproj.filters │ │ ├── ustrperf │ │ │ ├── Makefile.in │ │ │ ├── StringPerf.pl │ │ │ ├── StringPerf_r.pl │ │ │ ├── stringperf.cpp │ │ │ ├── stringperf.h │ │ │ ├── stringperf.vcxproj │ │ │ └── stringperf.vcxproj.filters │ │ ├── utfperf │ │ │ ├── Makefile.in │ │ │ ├── UtfPerf.pl │ │ │ ├── utfperf.cpp │ │ │ ├── utfperf.vcxproj │ │ │ └── utfperf.vcxproj.filters │ │ └── utrie2perf │ │ │ ├── Makefile.in │ │ │ ├── utrie2perf.bat │ │ │ ├── utrie2perf.cpp │ │ │ ├── utrie2perf.sh │ │ │ └── utrie2perf.vcxproj │ ├── testdata │ │ ├── BUILDRULES.py │ │ ├── BidiCharacterTest.txt │ │ ├── BidiTest.txt │ │ ├── Burmese_graphclust_model5_heavy.txt │ │ ├── Burmese_graphclust_model5_heavy_Test.txt │ │ ├── CollationTest_NON_IGNORABLE_SHORT.txt │ │ ├── CollationTest_SHIFTED_SHORT.txt │ │ ├── ConverterSelectorTestUTF8.txt │ │ ├── GraphemeBreakTest.txt │ │ ├── IdnaTestV2.txt │ │ ├── LineBreakTest.txt │ │ ├── Makefile.in │ │ ├── NormalizationTest-3.2.0.txt │ │ ├── NumberFormatTestCases.txt │ │ ├── SentenceBreakTest.txt │ │ ├── TestFont1.otf │ │ ├── Thai_codepoints_exclusive_model5_heavy.txt │ │ ├── Thai_codepoints_exclusive_model5_heavy_Test.txt │ │ ├── Thai_graphclust_model4_heavy.txt │ │ ├── Thai_graphclust_model4_heavy_Test.txt │ │ ├── WordBreakTest.txt │ │ ├── break_rules │ │ │ ├── README.md │ │ │ ├── grapheme.txt │ │ │ ├── line.txt │ │ │ ├── line_cj.txt │ │ │ ├── line_loose.txt │ │ │ ├── line_loose_cj.txt │ │ │ ├── line_normal.txt │ │ │ ├── line_normal_cj.txt │ │ │ ├── sentence.txt │ │ │ ├── word.txt │ │ │ └── word_POSIX.txt │ │ ├── calendar.txt │ │ ├── casing.txt │ │ ├── cldr │ │ │ ├── localeIdentifiers │ │ │ │ ├── _readme.txt │ │ │ │ ├── likelySubtags.txt │ │ │ │ ├── localeCanonicalization.txt │ │ │ │ └── localeDisplayName.txt │ │ │ ├── personNameTest │ │ │ │ ├── _header.txt │ │ │ │ ├── _readme.txt │ │ │ │ ├── af.txt │ │ │ │ ├── ak.txt │ │ │ │ ├── am.txt │ │ │ │ ├── ar.txt │ │ │ │ ├── as.txt │ │ │ │ ├── az.txt │ │ │ │ ├── bal_Latn.txt │ │ │ │ ├── be.txt │ │ │ │ ├── bg.txt │ │ │ │ ├── bn.txt │ │ │ │ ├── bs.txt │ │ │ │ ├── ca.txt │ │ │ │ ├── catalog.txt │ │ │ │ ├── chr.txt │ │ │ │ ├── cs.txt │ │ │ │ ├── cy.txt │ │ │ │ ├── da.txt │ │ │ │ ├── de.txt │ │ │ │ ├── dsb.txt │ │ │ │ ├── el.txt │ │ │ │ ├── en.txt │ │ │ │ ├── es.txt │ │ │ │ ├── et.txt │ │ │ │ ├── eu.txt │ │ │ │ ├── fa.txt │ │ │ │ ├── fi.txt │ │ │ │ ├── fil.txt │ │ │ │ ├── fr.txt │ │ │ │ ├── ga.txt │ │ │ │ ├── gd.txt │ │ │ │ ├── gl.txt │ │ │ │ ├── gu.txt │ │ │ │ ├── ha.txt │ │ │ │ ├── he.txt │ │ │ │ ├── hi.txt │ │ │ │ ├── hi_Latn.txt │ │ │ │ ├── hr.txt │ │ │ │ ├── hsb.txt │ │ │ │ ├── hu.txt │ │ │ │ ├── hy.txt │ │ │ │ ├── id.txt │ │ │ │ ├── ig.txt │ │ │ │ ├── is.txt │ │ │ │ ├── it.txt │ │ │ │ ├── ja.txt │ │ │ │ ├── jv.txt │ │ │ │ ├── ka.txt │ │ │ │ ├── kk.txt │ │ │ │ ├── km.txt │ │ │ │ ├── kn.txt │ │ │ │ ├── ko.txt │ │ │ │ ├── kok.txt │ │ │ │ ├── ky.txt │ │ │ │ ├── lo.txt │ │ │ │ ├── lt.txt │ │ │ │ ├── lv.txt │ │ │ │ ├── mk.txt │ │ │ │ ├── ml.txt │ │ │ │ ├── mn.txt │ │ │ │ ├── mr.txt │ │ │ │ ├── ms.txt │ │ │ │ ├── my.txt │ │ │ │ ├── ne.txt │ │ │ │ ├── nl.txt │ │ │ │ ├── nn.txt │ │ │ │ ├── no.txt │ │ │ │ ├── or.txt │ │ │ │ ├── pa.txt │ │ │ │ ├── pcm.txt │ │ │ │ ├── pl.txt │ │ │ │ ├── ps.txt │ │ │ │ ├── pt.txt │ │ │ │ ├── qu.txt │ │ │ │ ├── ro.txt │ │ │ │ ├── ru.txt │ │ │ │ ├── sc.txt │ │ │ │ ├── sd.txt │ │ │ │ ├── si.txt │ │ │ │ ├── sk.txt │ │ │ │ ├── sl.txt │ │ │ │ ├── so.txt │ │ │ │ ├── sq.txt │ │ │ │ ├── sr.txt │ │ │ │ ├── sr_Latn.txt │ │ │ │ ├── sv.txt │ │ │ │ ├── sw.txt │ │ │ │ ├── ta.txt │ │ │ │ ├── te.txt │ │ │ │ ├── tg.txt │ │ │ │ ├── th.txt │ │ │ │ ├── ti.txt │ │ │ │ ├── tk.txt │ │ │ │ ├── tr.txt │ │ │ │ ├── uk.txt │ │ │ │ ├── ur.txt │ │ │ │ ├── uz.txt │ │ │ │ ├── vi.txt │ │ │ │ ├── wo.txt │ │ │ │ ├── yo.txt │ │ │ │ ├── yue.txt │ │ │ │ ├── yue_Hans.txt │ │ │ │ ├── zh.txt │ │ │ │ ├── zh_Hant.txt │ │ │ │ └── zu.txt │ │ │ └── units │ │ │ │ ├── _readme.txt │ │ │ │ ├── unitLocalePreferencesTest.txt │ │ │ │ ├── unitPreferencesTest.txt │ │ │ │ └── unitsTest.txt │ │ ├── codepointtrie │ │ │ ├── free-blocks.16.toml │ │ │ ├── free-blocks.32.toml │ │ │ ├── free-blocks.8.toml │ │ │ ├── free-blocks.small16.toml │ │ │ ├── grow-data.16.toml │ │ │ ├── grow-data.32.toml │ │ │ ├── grow-data.8.toml │ │ │ ├── grow-data.small16.toml │ │ │ ├── set-empty.16.toml │ │ │ ├── set-empty.32.toml │ │ │ ├── set-empty.8.toml │ │ │ ├── set-empty.small16.toml │ │ │ ├── set-single-value.16.toml │ │ │ ├── set-single-value.32.toml │ │ │ ├── set-single-value.8.toml │ │ │ ├── set-single-value.small16.toml │ │ │ ├── set1.16.toml │ │ │ ├── set1.32.toml │ │ │ ├── set1.8.toml │ │ │ ├── set1.small16.toml │ │ │ ├── set2-overlap.16.toml │ │ │ ├── set2-overlap.32.toml │ │ │ ├── set2-overlap.small16.toml │ │ │ ├── set3-initial-9.16.toml │ │ │ ├── set3-initial-9.32.toml │ │ │ ├── set3-initial-9.8.toml │ │ │ ├── set3-initial-9.small16.toml │ │ │ ├── short-all-same.8.toml │ │ │ ├── short-all-same.small16.toml │ │ │ ├── small0-in-fast.16.toml │ │ │ ├── small0-in-fast.32.toml │ │ │ ├── small0-in-fast.8.toml │ │ │ └── small0-in-fast.small16.toml │ │ ├── collationtest.txt │ │ ├── conversion.txt │ │ ├── csdetest.xml │ │ ├── dcfmtest.txt │ │ ├── default.txt │ │ ├── emoji-test.txt │ │ ├── encoded.utf16be │ │ ├── encodingSamples │ │ │ ├── mailExample_Latin1Esc_2.txt │ │ │ ├── mailExample_Latin1Esc_3.txt │ │ │ ├── mailExample_Latin1Esc_4.txt │ │ │ ├── mailExample_Latin1Esc_6.txt │ │ │ ├── mailExample_Latin1Esc_7.txt │ │ │ ├── mailExample_Latin1Esc_8.txt │ │ │ ├── mailExample_Latin1Esc_9.txt │ │ │ ├── mailExample_Latin1_11.txt │ │ │ ├── mailExample_Latin1_2.txt │ │ │ ├── mailExample_Latin1_3.txt │ │ │ ├── mailExample_Latin1_4.txt │ │ │ ├── mailExample_Latin1_6.txt │ │ │ ├── mailExample_Latin1_7.txt │ │ │ ├── mailExample_Latin1_8.txt │ │ │ └── mailExample_Latin1_9.txt │ │ ├── filters │ │ │ └── filtertest.txt │ │ ├── filtertest.txt │ │ ├── format.txt │ │ ├── ibm9027.ucm │ │ ├── icuio.txt │ │ ├── idna_conf.txt │ │ ├── idna_rules.txt │ │ ├── importtest.bin │ │ ├── inputFiles.xcfilelist │ │ ├── letest.xml │ │ ├── localeCanonicalization.txt │ │ ├── localeMatcherTest.txt │ │ ├── mc.txt │ │ ├── message2 │ │ │ └── icu4j │ │ │ │ ├── icu-test-functions.json │ │ │ │ └── icu-test-selectors.json │ │ ├── metaZones.txt │ │ ├── nfs4_cis_prep.txt │ │ ├── nfs4_cs_prep_ci.txt │ │ ├── nfs4_cs_prep_cs.txt │ │ ├── nfs4_mixed_prep_p.txt │ │ ├── nfs4_mixed_prep_s.txt │ │ ├── numberformattestspecification.txt │ │ ├── numberpermutationtest.txt │ │ ├── old_e_testtypes.res │ │ ├── old_l_testtypes.res │ │ ├── pkgdata.inc.in │ │ ├── pkgdataMakefile.in │ │ ├── ra.txt │ │ ├── ra.xlf │ │ ├── rbbitst.txt │ │ ├── re_tests.txt │ │ ├── readme.txt │ │ ├── regextst.txt │ │ ├── riwords.txt │ │ ├── root.txt │ │ ├── sh.txt │ │ ├── sh_YU.txt │ │ ├── ssearch.xml │ │ ├── structLocale.txt │ │ ├── te.txt │ │ ├── te_IN.txt │ │ ├── te_IN_REVISED.txt │ │ ├── test1.ucm │ │ ├── test1bmp.ucm │ │ ├── test2.ucm │ │ ├── test3.ucm │ │ ├── test4.ucm │ │ ├── test4x.ucm │ │ ├── test5.ucm │ │ ├── testaliases.txt │ │ ├── testdata.mak │ │ ├── testempty.txt │ │ ├── testnorm.txt │ │ ├── testtypes.txt │ │ ├── timezoneTypes.txt │ │ ├── tokCFSTrules.txt │ │ ├── tokCFSTrulesLE_icu57.data │ │ ├── tokCFSTrulesLE_icu60.data │ │ ├── translit_rules.txt │ │ ├── uni-text.bin │ │ ├── windowsZones.txt │ │ ├── wordNLLT_icu57.dat │ │ ├── wordNLLT_icu60.dat │ │ ├── wordNLLTu6.txt │ │ ├── wordNLLTu8.txt │ │ ├── wordNLLTu9.txt │ │ └── zoneinfo64.txt │ ├── testmap │ │ ├── Makefile.in │ │ ├── readme.txt │ │ ├── testmap.c │ │ └── testmap.dsp │ └── thaitest │ │ ├── Makefile.in │ │ ├── space.txt │ │ ├── thaitest.cpp │ │ └── thaitest.dsp │ ├── tools │ ├── Makefile.in │ ├── ctestfw │ │ ├── Makefile.in │ │ ├── ctest.c │ │ ├── ctestfw.vcxproj │ │ ├── ctestfw.vcxproj.filters │ │ ├── datamap.cpp │ │ ├── sources.txt │ │ ├── testdata.cpp │ │ ├── tstdtmod.cpp │ │ ├── ucln_ct.c │ │ ├── unicode │ │ │ ├── ctest.h │ │ │ ├── datamap.h │ │ │ ├── testdata.h │ │ │ ├── testlog.h │ │ │ ├── testtype.h │ │ │ ├── tstdtmod.h │ │ │ ├── uperf.h │ │ │ └── utimer.h │ │ └── uperf.cpp │ ├── escapesrc │ │ ├── Makefile.in │ │ ├── cptbl.h │ │ ├── escapesrc.cpp │ │ ├── expect-simple.cpp │ │ ├── tblgen.cpp │ │ ├── test-nochange.cpp │ │ └── test-simple.cpp │ ├── genbrk │ │ ├── Makefile.in │ │ ├── genbrk.1.in │ │ ├── genbrk.cpp │ │ ├── genbrk.vcxproj │ │ ├── genbrk.vcxproj.filters │ │ └── sources.txt │ ├── genccode │ │ ├── Makefile.in │ │ ├── genccode.8.in │ │ ├── genccode.c │ │ ├── genccode.vcxproj │ │ ├── genccode.vcxproj.filters │ │ └── sources.txt │ ├── gencfu │ │ ├── Makefile.in │ │ ├── gencfu.1.in │ │ ├── gencfu.cpp │ │ ├── gencfu.vcxproj │ │ ├── gencfu.vcxproj.filters │ │ └── sources.txt │ ├── gencmn │ │ ├── Makefile.in │ │ ├── gencmn.8.in │ │ ├── gencmn.c │ │ ├── gencmn.vcxproj │ │ ├── gencmn.vcxproj.filters │ │ └── sources.txt │ ├── gencnval │ │ ├── Makefile.in │ │ ├── gencnval.1.in │ │ ├── gencnval.c │ │ ├── gencnval.vcxproj │ │ ├── gencnval.vcxproj.filters │ │ └── sources.txt │ ├── gencolusb │ │ ├── Makefile │ │ ├── README.md │ │ ├── extract_unsafe_backwards.cpp │ │ └── verify_uset.cpp │ ├── gendict │ │ ├── Makefile.in │ │ ├── gendict.1.in │ │ ├── gendict.cpp │ │ ├── gendict.vcxproj │ │ ├── gendict.vcxproj.filters │ │ └── sources.txt │ ├── gennorm2 │ │ ├── BUILD.bazel │ │ ├── Makefile.in │ │ ├── extradata.cpp │ │ ├── extradata.h │ │ ├── gennorm2.cpp │ │ ├── gennorm2.vcxproj │ │ ├── n2builder.cpp │ │ ├── n2builder.h │ │ ├── norms.cpp │ │ ├── norms.h │ │ └── sources.txt │ ├── genrb │ │ ├── Makefile.in │ │ ├── derb.1.in │ │ ├── derb.cpp │ │ ├── derb.vcxproj │ │ ├── derb.vcxproj.filters │ │ ├── errmsg.c │ │ ├── errmsg.h │ │ ├── filterrb.cpp │ │ ├── filterrb.h │ │ ├── genrb.1.in │ │ ├── genrb.cpp │ │ ├── genrb.h │ │ ├── genrb.vcxproj │ │ ├── genrb.vcxproj.filters │ │ ├── parse.cpp │ │ ├── parse.h │ │ ├── prscmnts.cpp │ │ ├── prscmnts.h │ │ ├── rbutil.c │ │ ├── rbutil.h │ │ ├── read.c │ │ ├── read.h │ │ ├── reslist.cpp │ │ ├── reslist.h │ │ ├── rle.c │ │ ├── rle.h │ │ ├── sources.txt │ │ ├── ustr.c │ │ ├── ustr.h │ │ ├── wrtjava.cpp │ │ └── wrtxml.cpp │ ├── genren │ │ ├── Makefile │ │ ├── README │ │ └── genren.pl │ ├── gensprep │ │ ├── Makefile.in │ │ ├── filterRFC3454.pl │ │ ├── gensprep.8.in │ │ ├── gensprep.c │ │ ├── gensprep.h │ │ ├── gensprep.vcxproj │ │ ├── gensprep.vcxproj.filters │ │ ├── sources.txt │ │ └── store.c │ ├── gentest │ │ ├── Makefile.in │ │ ├── genres32.c │ │ ├── gentest.c │ │ ├── gentest.h │ │ ├── gentest.vcxproj │ │ ├── gentest.vcxproj.filters │ │ └── sources.txt │ ├── icuexportdata │ │ ├── Makefile.in │ │ ├── icuexportdata.1.in │ │ ├── icuexportdata.cpp │ │ ├── icuexportdata.vcxproj │ │ ├── icuexportdata.vcxproj.filters │ │ └── sources.txt │ ├── icuinfo │ │ ├── Makefile.in │ │ ├── icuinfo.cpp │ │ ├── icuinfo.vcxproj │ │ ├── icuplugins_windows_sample.txt │ │ ├── plugin_sources.txt │ │ ├── sources.txt │ │ ├── testplug.c │ │ ├── testplug.vcxproj │ │ └── testplug.vcxproj.filters │ ├── icupkg │ │ ├── Makefile.in │ │ ├── icupkg.8.in │ │ ├── icupkg.cpp │ │ ├── icupkg.vcxproj │ │ └── sources.txt │ ├── icuswap │ │ ├── Makefile.in │ │ ├── icuswap.cpp │ │ ├── icuswap.vcxproj │ │ └── sources.txt │ ├── makeconv │ │ ├── Makefile.in │ │ ├── gencnvex.c │ │ ├── genmbcs.cpp │ │ ├── genmbcs.h │ │ ├── makeconv.1.in │ │ ├── makeconv.cpp │ │ ├── makeconv.h │ │ ├── makeconv.vcxproj │ │ ├── makeconv.vcxproj.filters │ │ ├── sources.txt │ │ └── ucnvstat.c │ ├── memcheck │ │ └── ICUMemCheck.pl │ ├── pkgdata │ │ ├── Makefile.in │ │ ├── pkgdata.1.in │ │ ├── pkgdata.cpp │ │ ├── pkgdata.vcxproj │ │ ├── pkgdata.vcxproj.filters │ │ ├── pkgtypes.c │ │ ├── pkgtypes.h │ │ └── sources.txt │ ├── toolutil │ │ ├── BUILD.bazel │ │ ├── Makefile.in │ │ ├── collationinfo.cpp │ │ ├── collationinfo.h │ │ ├── dbgutil.cpp │ │ ├── dbgutil.h │ │ ├── denseranges.cpp │ │ ├── denseranges.h │ │ ├── filestrm.cpp │ │ ├── filestrm.h │ │ ├── filetools.cpp │ │ ├── filetools.h │ │ ├── flagparser.cpp │ │ ├── flagparser.h │ │ ├── json-json.hpp │ │ ├── package.cpp │ │ ├── package.h │ │ ├── pkg_genc.cpp │ │ ├── pkg_genc.h │ │ ├── pkg_gencmn.cpp │ │ ├── pkg_gencmn.h │ │ ├── pkg_icu.cpp │ │ ├── pkg_icu.h │ │ ├── pkg_imp.h │ │ ├── pkgitems.cpp │ │ ├── ppucd.cpp │ │ ├── ppucd.h │ │ ├── sources.txt │ │ ├── swapimpl.cpp │ │ ├── swapimpl.h │ │ ├── toolutil.cpp │ │ ├── toolutil.h │ │ ├── toolutil.vcxproj │ │ ├── ucbuf.cpp │ │ ├── ucbuf.h │ │ ├── ucln_tu.cpp │ │ ├── ucm.cpp │ │ ├── ucm.h │ │ ├── ucmstate.cpp │ │ ├── udbgutil.cpp │ │ ├── udbgutil.h │ │ ├── ujson.h │ │ ├── unewdata.cpp │ │ ├── unewdata.h │ │ ├── uoptions.cpp │ │ ├── uoptions.h │ │ ├── uparse.cpp │ │ ├── uparse.h │ │ ├── writesrc.cpp │ │ ├── writesrc.h │ │ ├── xmlparser.cpp │ │ └── xmlparser.h │ └── tzcode │ │ ├── Makefile.in │ │ ├── asctime.c │ │ ├── ialloc.c │ │ ├── icuregions │ │ ├── icuzdump.cpp │ │ ├── icuzdump.vcxproj │ │ ├── icuzdump.vcxproj.filters │ │ ├── icuzones │ │ ├── localtime.c │ │ ├── private.h │ │ ├── readme.txt │ │ ├── scheck.c │ │ ├── tz2icu.cpp │ │ ├── tz2icu.h │ │ ├── tzfile.h │ │ ├── tzselect.ksh │ │ ├── zdump.c │ │ └── zic.c │ ├── xc_cintltst.xctestplan │ ├── xc_cintltst │ └── xc_cintltst.m │ ├── xc_intltest.xctestplan │ ├── xc_intltest │ └── xc_intltest.m │ ├── xc_iotest.xctestplan │ └── xc_iotest │ └── xc_iotest.m └── makefile /ICU.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/ICU.plist -------------------------------------------------------------------------------- /ICU_embedded.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/ICU_embedded.order -------------------------------------------------------------------------------- /apple/BuildICUForAAS_script.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/apple/BuildICUForAAS_script.bat -------------------------------------------------------------------------------- /apple/featureFlags/ICU.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/apple/featureFlags/ICU.plist -------------------------------------------------------------------------------- /apple/generate_json_for_tapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/apple/generate_json_for_tapi.py -------------------------------------------------------------------------------- /apple/makefile.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/apple/makefile.old -------------------------------------------------------------------------------- /apple/minimalapis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/apple/minimalapis.txt -------------------------------------------------------------------------------- /apple/minimalapisTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/apple/minimalapisTest.c -------------------------------------------------------------------------------- /apple/modules/unicode.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/apple/modules/unicode.modulemap -------------------------------------------------------------------------------- /apple/scripts/add-locale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/apple/scripts/add-locale.md -------------------------------------------------------------------------------- /apple/scripts/add-locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/apple/scripts/add-locale.py -------------------------------------------------------------------------------- /apple/scripts/build-icu-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/apple/scripts/build-icu-data.sh -------------------------------------------------------------------------------- /apple/scripts/cldr-inheritance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/apple/scripts/cldr-inheritance.md -------------------------------------------------------------------------------- /apple/scripts/cldr-inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/apple/scripts/cldr-inheritance.py -------------------------------------------------------------------------------- /apple/scripts/coverity-scan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/apple/scripts/coverity-scan.sh -------------------------------------------------------------------------------- /apple/swift/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/apple/swift/Package.swift -------------------------------------------------------------------------------- /apple/swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/apple/swift/README.md -------------------------------------------------------------------------------- /apple/swift/api-common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/apple/swift/api-common.txt -------------------------------------------------------------------------------- /apple/swift/api-i18n.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/apple/swift/api-i18n.txt -------------------------------------------------------------------------------- /apple/swift/api-io.txt: -------------------------------------------------------------------------------- 1 | ustdio.h 2 | ustream.h 3 | -------------------------------------------------------------------------------- /icu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/LICENSE -------------------------------------------------------------------------------- /icu/icu4c/source/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/.clang-format -------------------------------------------------------------------------------- /icu/icu4c/source/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/Doxyfile.in -------------------------------------------------------------------------------- /icu/icu4c/source/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/Makefile.in -------------------------------------------------------------------------------- /icu/icu4c/source/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/acinclude.m4 -------------------------------------------------------------------------------- /icu/icu4c/source/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/aclocal.m4 -------------------------------------------------------------------------------- /icu/icu4c/source/common/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/BUILD.bazel -------------------------------------------------------------------------------- /icu/icu4c/source/common/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/Makefile.in -------------------------------------------------------------------------------- /icu/icu4c/source/common/aaplbfct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/aaplbfct.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/bmpset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/bmpset.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/bmpset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/bmpset.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/brkeng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/brkeng.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/brkeng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/brkeng.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/brkiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/brkiter.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/caniter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/caniter.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/charstr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/charstr.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/charstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/charstr.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/cmemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/cmemory.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/cmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/cmemory.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/common.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/common.rc -------------------------------------------------------------------------------- /icu/icu4c/source/common/cpputils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/cpputils.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/cstr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/cstr.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/cstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/cstr.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/cstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/cstring.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/cstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/cstring.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/cwchar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/cwchar.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/cwchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/cwchar.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/dictbe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/dictbe.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/dictbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/dictbe.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/dtintrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/dtintrv.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/edits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/edits.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/hash.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/icuplug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/icuplug.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/libicuuc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/libicuuc.rc -------------------------------------------------------------------------------- /icu/icu4c/source/common/localsvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/localsvc.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/locbased.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/locbased.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/locid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/locid.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/locmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/locmap.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/locmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/locmap.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/locutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/locutil.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/locutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/locutil.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/lsr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/lsr.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/lsr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/lsr.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/lstmbe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/lstmbe.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/lstmbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/lstmbe.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/mlbe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/mlbe.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/mlbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/mlbe.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/msvcres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/msvcres.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/mutex.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/normlzr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/normlzr.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/pluralmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/pluralmap.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/propname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/propname.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/propsvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/propsvec.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/punycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/punycode.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/putil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/putil.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/putilimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/putilimp.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/rbbi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/rbbi.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/rbbi57.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/rbbi57.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/rbbi57.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/rbbi57.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/rbbicst.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/rbbicst.pl -------------------------------------------------------------------------------- /icu/icu4c/source/common/rbbidata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/rbbidata.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/rbbinode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/rbbinode.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/rbbirb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/rbbirb.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/rbbirb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/rbbirb.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/rbbirb57.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/rbbirb57.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/rbbirpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/rbbirpt.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/rbbirpt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/rbbirpt.txt -------------------------------------------------------------------------------- /icu/icu4c/source/common/rbbiscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/rbbiscan.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/rbbisetb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/rbbisetb.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/rbbitblb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/rbbitblb.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/rbtok.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/rbtok.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/rbtok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/rbtok.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/resbund.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/resbund.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/resource.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/restrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/restrace.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/ruleiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ruleiter.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/serv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/serv.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/serv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/serv.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/servlk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/servlk.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/servlkf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/servlkf.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/servloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/servloc.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/servls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/servls.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/servnotf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/servnotf.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/servrbf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/servrbf.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/sources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/sources.txt -------------------------------------------------------------------------------- /icu/icu4c/source/common/sprpimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/sprpimpl.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/ualoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ualoc.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/uarrsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uarrsort.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/uassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uassert.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/ubidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ubidi.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/ubidiimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ubidiimp.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/ubidiln.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ubidiln.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/ubrk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ubrk.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/ubrkimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ubrkimpl.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucase.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucase.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucat.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/uchar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uchar.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucln.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucln_cmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucln_cmn.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucln_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucln_imp.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucmndata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucmndata.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucnv.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucnv_bld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucnv_bld.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucnv_cb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucnv_cb.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucnv_cnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucnv_cnv.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucnv_ct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucnv_ct.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucnv_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucnv_ext.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucnv_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucnv_imp.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucnv_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucnv_io.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucnv_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucnv_io.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucnv_u7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucnv_u7.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucnv_u8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucnv_u8.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucnvhz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucnvhz.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucnvmbcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucnvmbcs.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucnvsel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucnvsel.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucol_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucol_data.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucol_swp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucol_swp.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucptrie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucptrie.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucurr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucurr.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/ucurrimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ucurrimp.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/udata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/udata.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/udatamem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/udatamem.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/udataswp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/udataswp.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/uelement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uelement.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/uenum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uenum.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/uenumimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uenumimp.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/uhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uhash.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/uhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uhash.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/uidna.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uidna.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/uinit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uinit.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/uinvchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uinvchar.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/uiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uiter.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/ulist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ulist.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/ulist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ulist.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/uloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uloc.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/ulocale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ulocale.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/ulocimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ulocimp.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/umapfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/umapfile.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/umath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/umath.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/umutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/umutex.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/umutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/umutex.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/unames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/unames.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/unifilt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/unifilt.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/uniset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uniset.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/unistr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/unistr.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/unorm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/unorm.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/unormimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/unormimp.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/uobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uobject.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/uprops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uprops.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/uprops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uprops.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/urbtok.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/urbtok.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/uresdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uresdata.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/uresimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uresimp.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/ureslocs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ureslocs.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/usc_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/usc_impl.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/uscript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uscript.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/uset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uset.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/uset_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uset_imp.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/ushape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ushape.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/usprep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/usprep.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/ustack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ustack.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/ustr_cnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ustr_cnv.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/ustr_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ustr_imp.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/ustrenum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ustrenum.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/ustrfmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ustrfmt.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/ustrfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ustrfmt.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/ustring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/ustring.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/utext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/utext.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/util.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/util.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/utrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/utrace.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/utracimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/utracimp.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/utrie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/utrie.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/utrie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/utrie.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/utrie2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/utrie2.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/utrie2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/utrie2.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/uts46.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uts46.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/utypeinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/utypeinfo.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/utypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/utypes.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/uvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uvector.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/uvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uvector.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/uvectr32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uvectr32.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/uvectr64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/uvectr64.h -------------------------------------------------------------------------------- /icu/icu4c/source/common/wintz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/wintz.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/common/wintz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/common/wintz.h -------------------------------------------------------------------------------- /icu/icu4c/source/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config.guess -------------------------------------------------------------------------------- /icu/icu4c/source/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config.sub -------------------------------------------------------------------------------- /icu/icu4c/source/config/dist.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config/dist.mk -------------------------------------------------------------------------------- /icu/icu4c/source/config/gmakever.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config/gmakever.mk -------------------------------------------------------------------------------- /icu/icu4c/source/config/icu.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config/icu.pc.in -------------------------------------------------------------------------------- /icu/icu4c/source/config/make2sh.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config/make2sh.sed -------------------------------------------------------------------------------- /icu/icu4c/source/config/mh-aix-gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config/mh-aix-gcc -------------------------------------------------------------------------------- /icu/icu4c/source/config/mh-aix-va: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config/mh-aix-va -------------------------------------------------------------------------------- /icu/icu4c/source/config/mh-beos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config/mh-beos -------------------------------------------------------------------------------- /icu/icu4c/source/config/mh-bsd-gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config/mh-bsd-gcc -------------------------------------------------------------------------------- /icu/icu4c/source/config/mh-cygwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config/mh-cygwin -------------------------------------------------------------------------------- /icu/icu4c/source/config/mh-cygwin64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config/mh-cygwin64 -------------------------------------------------------------------------------- /icu/icu4c/source/config/mh-darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config/mh-darwin -------------------------------------------------------------------------------- /icu/icu4c/source/config/mh-haiku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config/mh-haiku -------------------------------------------------------------------------------- /icu/icu4c/source/config/mh-hpux-acc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config/mh-hpux-acc -------------------------------------------------------------------------------- /icu/icu4c/source/config/mh-hpux-gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config/mh-hpux-gcc -------------------------------------------------------------------------------- /icu/icu4c/source/config/mh-irix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config/mh-irix -------------------------------------------------------------------------------- /icu/icu4c/source/config/mh-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config/mh-linux -------------------------------------------------------------------------------- /icu/icu4c/source/config/mh-linux-va: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config/mh-linux-va -------------------------------------------------------------------------------- /icu/icu4c/source/config/mh-mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config/mh-mingw -------------------------------------------------------------------------------- /icu/icu4c/source/config/mh-mingw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config/mh-mingw64 -------------------------------------------------------------------------------- /icu/icu4c/source/config/mh-mpras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config/mh-mpras -------------------------------------------------------------------------------- /icu/icu4c/source/config/mh-os390: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config/mh-os390 -------------------------------------------------------------------------------- /icu/icu4c/source/config/mh-os400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config/mh-os400 -------------------------------------------------------------------------------- /icu/icu4c/source/config/mh-qnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config/mh-qnx -------------------------------------------------------------------------------- /icu/icu4c/source/config/mh-solaris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config/mh-solaris -------------------------------------------------------------------------------- /icu/icu4c/source/config/mh-unknown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/config/mh-unknown -------------------------------------------------------------------------------- /icu/icu4c/source/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/configure -------------------------------------------------------------------------------- /icu/icu4c/source/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/configure.ac -------------------------------------------------------------------------------- /icu/icu4c/source/data/BUILDRULES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/BUILDRULES.py -------------------------------------------------------------------------------- /icu/icu4c/source/data/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/Makefile.in -------------------------------------------------------------------------------- /icu/icu4c/source/data/brkitr/de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/brkitr/de.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/brkitr/el.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/brkitr/el.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/brkitr/en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/brkitr/en.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/brkitr/es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/brkitr/es.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/brkitr/fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/brkitr/fi.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/brkitr/fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/brkitr/fr.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/brkitr/it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/brkitr/it.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/brkitr/ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/brkitr/ja.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/brkitr/ko.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/brkitr/ko.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/brkitr/pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/brkitr/pt.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/brkitr/ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/brkitr/ru.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/brkitr/sv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/brkitr/sv.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/brkitr/zh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/brkitr/zh.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/build.xml -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/af.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/af.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/am.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/am.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/ar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/ar.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/ars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/ars.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/as.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/as.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/az.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/az.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/be.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/be.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/bg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/bg.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/bn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/bn.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/bo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/bo.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/br.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/br.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/bs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/bs.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/ca.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/ceb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/ceb.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/chr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/chr.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/cs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/cs.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/cy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/cy.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/da.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/da.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/de.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/de_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/de_.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/dsb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/dsb.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/dz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/dz.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/ee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/ee.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/el.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/el.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/en.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/eo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/eo.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/es.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/es_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/es_.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/et.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/et.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/fa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/fa.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/ff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/ff.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/fi.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/fil.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/fil.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/fo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/fo.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/fr.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/fy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/fy.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/ga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/ga.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/gl.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/gu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/gu.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/ha.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/ha.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/haw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/haw.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/he.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/he.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/hi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/hi.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/hr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/hr.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/hsb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/hsb.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/hu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/hu.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/hy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/hy.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/id.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/ig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/ig.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/in.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/is.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/is.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/it.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/iw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/iw.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/ja.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/ka.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/ka.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/kk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/kk.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/kl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/kl.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/km.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/km.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/kn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/kn.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/ko.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/ko.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/kok.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/kok.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/ku.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/ku.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/ky.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/ky.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/lb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/lb.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/lij.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/lij.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/lkt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/lkt.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/ln.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/ln.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/lo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/lo.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/lt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/lt.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/lv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/lv.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/mk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/mk.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/ml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/ml.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/mn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/mn.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/mo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/mo.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/mr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/mr.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/ms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/ms.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/mt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/mt.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/my.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/my.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/nb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/nb.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/ne.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/ne.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/nl.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/nn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/nn.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/no.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/no.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/nso.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/nso.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/om.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/om.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/or.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/or.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/pa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/pa.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/pl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/pl.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/ps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/ps.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/pt.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/ro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/ro.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/root.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/ru.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/sa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/sa.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/se.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/se.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/sh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/sh.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/si.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/si.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/sk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/sk.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/sl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/sl.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/smn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/smn.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/sq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/sq.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/sr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/sr.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/st.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/st.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/sv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/sv.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/sw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/sw.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/ta.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/ta.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/te.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/te.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/th.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/th.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/tk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/tk.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/tn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/tn.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/to.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/to.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/tr.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/ug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/ug.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/uk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/uk.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/ur.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/ur.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/uz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/uz.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/vi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/vi.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/wae.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/wae.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/wo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/wo.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/wuu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/wuu.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/xh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/xh.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/yi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/yi.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/yo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/yo.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/yue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/yue.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/zh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/zh.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/coll/zu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/coll/zu.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/af.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/af.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/agq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/agq.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ain.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ak.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ak.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/am.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/am.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/apw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/apw.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ar.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/arn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/arn.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ars.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/as.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/as.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/asa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/asa.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ast.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/az.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/az.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ba.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ba.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/bas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/bas.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/be.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/be.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/bem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/bem.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ber.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ber.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/bez.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/bez.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/bg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/bg.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/bgc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/bgc.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/bho.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/bho.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/blo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/blo.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/bm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/bm.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/bn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/bn.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/bo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/bo.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/br.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/br.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/brx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/brx.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/bs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/bs.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/byn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/byn.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ca.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ccp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ccp.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ce.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ce.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ceb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ceb.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/cgg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/cgg.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/cho.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/cho.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/chr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/chr.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/cic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/cic.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ckb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ckb.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/co.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/co.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/cs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/cs.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/cst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/cst.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/csw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/csw.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/cv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/cv.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/cy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/cy.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/da.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/da.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/dav.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/dav.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/de.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/dje.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/dje.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/doi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/doi.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/dsb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/dsb.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/dua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/dua.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/dv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/dv.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/dyo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/dyo.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/dz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/dz.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ebu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ebu.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ee.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/el.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/el.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/en.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/eo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/eo.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/es.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/et.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/et.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/eu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/eu.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ewo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ewo.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/fa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/fa.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ff.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/fi.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/fil.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/fil.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/fo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/fo.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/fr.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/fur.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/fur.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/fy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/fy.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ga.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/gaa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/gaa.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/gd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/gd.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/gez.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/gez.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/gl.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/gn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/gn.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/gsw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/gsw.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/gu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/gu.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/guz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/guz.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/gv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/gv.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ha.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ha.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/haw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/haw.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/hch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/hch.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/he.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/he.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/hi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/hi.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/hmn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/hmn.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/hr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/hr.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/hsb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/hsb.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ht.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ht.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/hu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/hu.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/hy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/hy.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ia.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/id.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ie.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ig.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ii.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ii.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/in.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/inh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/inh.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/io.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/io.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/is.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/is.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/isc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/isc.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/it.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/iu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/iu.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/iw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/iw.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ja.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/jbo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/jbo.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/jgo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/jgo.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/jmc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/jmc.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/jv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/jv.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ka.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ka.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/kab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/kab.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/kaj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/kaj.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/kam.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/kam.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/kcg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/kcg.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/kde.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/kde.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/kea.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/kea.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/kgp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/kgp.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/khq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/khq.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ki.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ki.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/kk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/kk.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/kkj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/kkj.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/kl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/kl.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/kln.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/kln.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/km.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/km.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/kn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/kn.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ko.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ko.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/kok.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/kok.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/kpe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/kpe.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ks.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ksb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ksb.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ksf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ksf.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ksh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ksh.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ku.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ku.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/kw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/kw.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/kxv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/kxv.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ky.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ky.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/lag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/lag.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/lb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/lb.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/lg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/lg.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/lij.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/lij.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/lkt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/lkt.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/lmo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/lmo.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ln.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ln.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/lo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/lo.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/lrc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/lrc.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/lt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/lt.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/lu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/lu.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/luo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/luo.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/lut.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/lut.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/luy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/luy.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/lv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/lv.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/mai.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/mai.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/mas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/mas.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/mer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/mer.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/mfe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/mfe.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/mg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/mg.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/mgh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/mgh.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/mgo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/mgo.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/mi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/mi.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/mic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/mic.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/mid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/mid.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/mk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/mk.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ml.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/mn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/mn.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/mni.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/mni.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/mo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/mo.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/moh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/moh.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/mr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/mr.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ms.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/mt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/mt.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/mua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/mua.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/mus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/mus.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/my.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/my.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/myv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/myv.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/mzn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/mzn.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/naq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/naq.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/nb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/nb.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/nd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/nd.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/nds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/nds.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ne.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ne.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/nez.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/nez.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/nl.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/nmg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/nmg.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/nn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/nn.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/nnh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/nnh.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/nnp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/nnp.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/no.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/no.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/nqo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/nqo.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/nr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/nr.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/nso.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/nso.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/nus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/nus.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/nv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/nv.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ny.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ny.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/nyn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/nyn.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/oc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/oc.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/om.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/om.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/or.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/or.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/os.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/os.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/osa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/osa.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/pa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/pa.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/pcm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/pcm.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/pl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/pl.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/pqm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/pqm.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/prg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/prg.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ps.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/pt.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/qu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/qu.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/raj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/raj.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/rej.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/rej.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/rhg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/rhg.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/rm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/rm.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/rn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/rn.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ro.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/rof.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/rof.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/root.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ru.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/rw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/rw.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/rwk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/rwk.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/sa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/sa.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/sah.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/sah.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/saq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/saq.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/sat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/sat.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/sbp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/sbp.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/sc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/sc.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/scn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/scn.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/sd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/sd.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/se.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/se.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/seh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/seh.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ses.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/sg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/sg.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/sh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/sh.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/shi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/shi.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/shp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/shp.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/si.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/si.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/sjd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/sjd.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/sje.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/sje.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/sju.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/sju.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/sk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/sk.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/sl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/sl.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/sm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/sm.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/smn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/smn.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/sn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/sn.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/so.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/so.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/sq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/sq.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/sr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/sr.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ss.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/st.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/st.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/su.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/su.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/sv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/sv.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/sw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/sw.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/syr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/syr.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/szl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/szl.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ta.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ta.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/te.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/te.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/teo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/teo.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/tg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/tg.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/th.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/th.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ti.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ti.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/tig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/tig.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/tk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/tk.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/tl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/tl.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/tn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/tn.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/to.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/to.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/tok.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/tok.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/tr.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/trv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/trv.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ts.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/tt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/tt.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/twq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/twq.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/tzm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/tzm.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ug.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/uk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/uk.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ur.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ur.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/uz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/uz.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/vai.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/vai.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/ve.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/ve.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/vec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/vec.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/vi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/vi.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/vmw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/vmw.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/vun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/vun.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/wa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/wa.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/wae.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/wae.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/wal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/wal.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/wo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/wo.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/wuu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/wuu.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/xh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/xh.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/curr/xnr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/curr/xnr.txt -------------------------------------------------------------------------------- /icu/icu4c/source/data/in/nfc.nrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/data/in/nfc.nrm -------------------------------------------------------------------------------- /icu/icu4c/source/extra/uconv/samples/utf8/hangul.txt: -------------------------------------------------------------------------------- 1 | 도서관 2 | 한국 3 | -------------------------------------------------------------------------------- /icu/icu4c/source/extra/uconv/samples/utf8/hania.txt: -------------------------------------------------------------------------------- 1 | 圖書館 2 | 韓國 -------------------------------------------------------------------------------- /icu/icu4c/source/extra/uconv/sources.txt: -------------------------------------------------------------------------------- 1 | uconv.cpp 2 | uwmsg.c 3 | -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/anytrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/anytrans.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/astro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/astro.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/astro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/astro.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/bocsu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/bocsu.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/bocsu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/bocsu.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/brktrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/brktrans.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/buddhcal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/buddhcal.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/casetrn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/casetrn.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/cecal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/cecal.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/cecal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/cecal.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/chnsecal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/chnsecal.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/coll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/coll.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/coptccal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/coptccal.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/cpdtrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/cpdtrans.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/csdetect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/csdetect.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/csmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/csmatch.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/csr2022.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/csr2022.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/csrecog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/csrecog.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/csrmbcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/csrmbcs.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/csrsbcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/csrsbcs.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/csrucode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/csrucode.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/csrutf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/csrutf8.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/currfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/currfmt.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/dangical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/dangical.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/dt_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/dt_impl.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/dtrule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/dtrule.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/erarules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/erarules.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/esctrn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/esctrn.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/esctrn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/esctrn.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/ethpccal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/ethpccal.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/format.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/fphdlimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/fphdlimp.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/funcrepl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/funcrepl.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/gender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/gender.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/gregoimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/gregoimp.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/hebrwcal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/hebrwcal.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/hinducal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/hinducal.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/i18n.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/i18n.rc -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/inputext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/inputext.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/islamcal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/islamcal.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/japancal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/japancal.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/msgfmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/msgfmt.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/name2uni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/name2uni.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/nfrlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/nfrlist.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/nfrs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/nfrs.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/nfrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/nfrs.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/nfrule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/nfrule.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/nfrule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/nfrule.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/nfsubs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/nfsubs.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/nfsubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/nfsubs.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/nortrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/nortrans.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/nultrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/nultrans.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/numfmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/numfmt.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/numsys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/numsys.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/olsontz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/olsontz.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/persncal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/persncal.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/quant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/quant.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/quant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/quant.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/rbnf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/rbnf.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/rbt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/rbt.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/rbt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/rbt.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/rbt_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/rbt_data.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/rbt_pars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/rbt_pars.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/rbt_rule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/rbt_rule.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/rbt_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/rbt_set.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/rbtz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/rbtz.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/regexcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/regexcmp.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/regexcst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/regexcst.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/regeximp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/regeximp.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/regexst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/regexst.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/regextxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/regextxt.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/region.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/reldtfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/reldtfmt.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/remtrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/remtrans.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/search.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/selfmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/selfmt.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/smpdtfst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/smpdtfst.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/strmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/strmatch.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/strrepl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/strrepl.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/taiwncal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/taiwncal.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/titletrn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/titletrn.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/tmunit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/tmunit.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/tolowtrn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/tolowtrn.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/toupptrn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/toupptrn.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/transreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/transreg.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/tridpars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/tridpars.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/tzfmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/tzfmt.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/tzgnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/tzgnames.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/tzrule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/tzrule.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/ucal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/ucal.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/ucln_in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/ucln_in.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/ucol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/ucol.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/ucol_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/ucol_imp.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/ucsdet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/ucsdet.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/udat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/udat.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/udatpg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/udatpg.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/umsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/umsg.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/umsg_imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/umsg_imp.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/unesctrn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/unesctrn.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/uni2name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/uni2name.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/unum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/unum.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/uregex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/uregex.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/uspoof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/uspoof.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/usrchimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/usrchimp.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/utrans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/utrans.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/vtzone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/vtzone.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/vzone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/vzone.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/vzone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/vzone.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/windtfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/windtfmt.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/winnmfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/winnmfmt.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/zonemeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/zonemeta.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/zrule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/zrule.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/zrule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/zrule.h -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/ztrans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/ztrans.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/i18n/ztrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/i18n/ztrans.h -------------------------------------------------------------------------------- /icu/icu4c/source/icudefs.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/icudefs.mk.in -------------------------------------------------------------------------------- /icu/icu4c/source/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/install-sh -------------------------------------------------------------------------------- /icu/icu4c/source/io/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/io/Makefile.in -------------------------------------------------------------------------------- /icu/icu4c/source/io/io.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/io/io.rc -------------------------------------------------------------------------------- /icu/icu4c/source/io/io.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/io/io.vcxproj -------------------------------------------------------------------------------- /icu/icu4c/source/io/locbund.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/io/locbund.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/io/locbund.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/io/locbund.h -------------------------------------------------------------------------------- /icu/icu4c/source/io/sources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/io/sources.txt -------------------------------------------------------------------------------- /icu/icu4c/source/io/sprintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/io/sprintf.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/io/sscanf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/io/sscanf.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/io/ucln_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/io/ucln_io.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/io/ucln_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/io/ucln_io.h -------------------------------------------------------------------------------- /icu/icu4c/source/io/ufile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/io/ufile.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/io/ufile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/io/ufile.h -------------------------------------------------------------------------------- /icu/icu4c/source/io/ufmt_cmn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/io/ufmt_cmn.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/io/ufmt_cmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/io/ufmt_cmn.h -------------------------------------------------------------------------------- /icu/icu4c/source/io/uprintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/io/uprintf.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/io/uprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/io/uprintf.h -------------------------------------------------------------------------------- /icu/icu4c/source/io/uprntf_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/io/uprntf_p.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/io/uscanf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/io/uscanf.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/io/uscanf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/io/uscanf.h -------------------------------------------------------------------------------- /icu/icu4c/source/io/uscanf_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/io/uscanf_p.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/io/ustdio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/io/ustdio.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/io/ustream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/io/ustream.cpp -------------------------------------------------------------------------------- /icu/icu4c/source/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/mkinstalldirs -------------------------------------------------------------------------------- /icu/icu4c/source/runConfigureICU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/runConfigureICU -------------------------------------------------------------------------------- /icu/icu4c/source/samples/defs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/icu/icu4c/source/samples/defs.mk -------------------------------------------------------------------------------- /icu/icu4c/source/stubdata/sources.txt: -------------------------------------------------------------------------------- 1 | stubdata.cpp 2 | -------------------------------------------------------------------------------- /icu/icu4c/source/test/testdata/importtest.bin: -------------------------------------------------------------------------------- 1 |  2 |  -------------------------------------------------------------------------------- /icu/icu4c/source/tools/genbrk/sources.txt: -------------------------------------------------------------------------------- 1 | genbrk.cpp 2 | -------------------------------------------------------------------------------- /icu/icu4c/source/tools/genccode/sources.txt: -------------------------------------------------------------------------------- 1 | genccode.c 2 | -------------------------------------------------------------------------------- /icu/icu4c/source/tools/gencfu/sources.txt: -------------------------------------------------------------------------------- 1 | gencfu.cpp 2 | -------------------------------------------------------------------------------- /icu/icu4c/source/tools/gencmn/sources.txt: -------------------------------------------------------------------------------- 1 | gencmn.c 2 | -------------------------------------------------------------------------------- /icu/icu4c/source/tools/gencnval/sources.txt: -------------------------------------------------------------------------------- 1 | gencnval.c 2 | -------------------------------------------------------------------------------- /icu/icu4c/source/tools/gendict/sources.txt: -------------------------------------------------------------------------------- 1 | gendict.cpp 2 | -------------------------------------------------------------------------------- /icu/icu4c/source/tools/gensprep/sources.txt: -------------------------------------------------------------------------------- 1 | gensprep.c 2 | store.c 3 | -------------------------------------------------------------------------------- /icu/icu4c/source/tools/gentest/sources.txt: -------------------------------------------------------------------------------- 1 | genres32.c 2 | gentest.c 3 | -------------------------------------------------------------------------------- /icu/icu4c/source/tools/icuexportdata/sources.txt: -------------------------------------------------------------------------------- 1 | icuexportdata.cpp 2 | -------------------------------------------------------------------------------- /icu/icu4c/source/tools/icuinfo/plugin_sources.txt: -------------------------------------------------------------------------------- 1 | testplug.c 2 | -------------------------------------------------------------------------------- /icu/icu4c/source/tools/icuinfo/sources.txt: -------------------------------------------------------------------------------- 1 | icuinfo.cpp 2 | -------------------------------------------------------------------------------- /icu/icu4c/source/tools/icupkg/sources.txt: -------------------------------------------------------------------------------- 1 | icupkg.cpp 2 | -------------------------------------------------------------------------------- /icu/icu4c/source/tools/icuswap/sources.txt: -------------------------------------------------------------------------------- 1 | icuswap.cpp 2 | -------------------------------------------------------------------------------- /icu/icu4c/source/tools/pkgdata/sources.txt: -------------------------------------------------------------------------------- 1 | pkgdata.cpp 2 | pkgtypes.c 3 | -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/ICU/HEAD/makefile --------------------------------------------------------------------------------