├── .gitignore ├── LICENSE ├── README.md ├── apk.png ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ └── babynames_original.csv │ ├── kotlin │ └── fr │ │ └── hnit │ │ └── babyname │ │ ├── AboutActivity.kt │ │ ├── BabyName.kt │ │ ├── BabyNameDatabase.kt │ │ ├── BabyNameProject.kt │ │ ├── BabyNameSettings.kt │ │ ├── DatabaseActivity.kt │ │ ├── EditActivity.kt │ │ ├── FlipSearchActivity.kt │ │ ├── Log.kt │ │ ├── MainActivity.kt │ │ ├── OriginAdapter.kt │ │ ├── Origins.kt │ │ ├── ProjectListAdapter.kt │ │ ├── ScrollSearchActivity.kt │ │ ├── ScrollSearchAdapter.kt │ │ └── SettingsActivity.kt │ └── res │ ├── drawable │ ├── cog.xml │ ├── delete.xml │ ├── edit_text_border.xml │ ├── filter.xml │ ├── flip_search.xml │ ├── information.xml │ ├── scroll_search.xml │ ├── trophy.xml │ ├── tuxbaby.png │ └── tuxbaby2.png │ ├── layout │ ├── activity_about.xml │ ├── activity_database.xml │ ├── activity_edit.xml │ ├── activity_flip_search.xml │ ├── activity_main.xml │ ├── activity_scroll_search.xml │ ├── activity_settings.xml │ ├── item_origin.xml │ ├── item_project.xml │ └── item_scroll.xml │ ├── menu │ ├── edit.xml │ └── menu_list.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── values-fr │ └── strings.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── fdroid.png ├── gradle.properties ├── metadata └── en-US │ ├── changelogs │ ├── 100.txt │ ├── 121.txt │ ├── 122.txt │ ├── 123.txt │ ├── 124.txt │ ├── 125.txt │ ├── 130.txt │ ├── 131.txt │ ├── 132.txt │ ├── 133.txt │ ├── 200.txt │ ├── 201.txt │ ├── 202.txt │ ├── 203.txt │ ├── 204.txt │ ├── 5.txt │ └── 6.txt │ ├── images │ ├── icon.png │ └── phoneScreenshots │ │ ├── edit_screen.png │ │ ├── flip_search_screen.png │ │ ├── main_screen.png │ │ └── scroll_search_screen.png │ └── short_description.txt ├── obtainium.png ├── settings.gradle └── tools ├── Prenoms.py ├── Prenoms.txt ├── README.md ├── common-forenames-by-country.csv ├── common-forenames-by-country.py ├── nam_dict.py └── nam_dict.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/README.md -------------------------------------------------------------------------------- /apk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/apk.png -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/babynames_original.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/assets/babynames_original.csv -------------------------------------------------------------------------------- /app/src/main/kotlin/fr/hnit/babyname/AboutActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/kotlin/fr/hnit/babyname/AboutActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/fr/hnit/babyname/BabyName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/kotlin/fr/hnit/babyname/BabyName.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/fr/hnit/babyname/BabyNameDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/kotlin/fr/hnit/babyname/BabyNameDatabase.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/fr/hnit/babyname/BabyNameProject.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/kotlin/fr/hnit/babyname/BabyNameProject.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/fr/hnit/babyname/BabyNameSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/kotlin/fr/hnit/babyname/BabyNameSettings.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/fr/hnit/babyname/DatabaseActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/kotlin/fr/hnit/babyname/DatabaseActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/fr/hnit/babyname/EditActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/kotlin/fr/hnit/babyname/EditActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/fr/hnit/babyname/FlipSearchActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/kotlin/fr/hnit/babyname/FlipSearchActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/fr/hnit/babyname/Log.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/kotlin/fr/hnit/babyname/Log.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/fr/hnit/babyname/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/kotlin/fr/hnit/babyname/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/fr/hnit/babyname/OriginAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/kotlin/fr/hnit/babyname/OriginAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/fr/hnit/babyname/Origins.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/kotlin/fr/hnit/babyname/Origins.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/fr/hnit/babyname/ProjectListAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/kotlin/fr/hnit/babyname/ProjectListAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/fr/hnit/babyname/ScrollSearchActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/kotlin/fr/hnit/babyname/ScrollSearchActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/fr/hnit/babyname/ScrollSearchAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/kotlin/fr/hnit/babyname/ScrollSearchAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/fr/hnit/babyname/SettingsActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/kotlin/fr/hnit/babyname/SettingsActivity.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/cog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/drawable/cog.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/drawable/delete.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/edit_text_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/drawable/edit_text_border.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/drawable/filter.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/flip_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/drawable/flip_search.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/information.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/drawable/information.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/scroll_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/drawable/scroll_search.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/trophy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/drawable/trophy.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/tuxbaby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/drawable/tuxbaby.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/tuxbaby2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/drawable/tuxbaby2.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/layout/activity_about.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_database.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/layout/activity_database.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/layout/activity_edit.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_flip_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/layout/activity_flip_search.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_scroll_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/layout/activity_scroll_search.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/layout/activity_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_origin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/layout/item_origin.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/layout/item_project.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_scroll.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/layout/item_scroll.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/menu/edit.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/menu/menu_list.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /fdroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/fdroid.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/gradle.properties -------------------------------------------------------------------------------- /metadata/en-US/changelogs/100.txt: -------------------------------------------------------------------------------- 1 | * switch to semantic versioning -------------------------------------------------------------------------------- /metadata/en-US/changelogs/121.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/metadata/en-US/changelogs/121.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/122.txt: -------------------------------------------------------------------------------- 1 | * avoid inclusion of apk signing blobs 2 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/123.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/metadata/en-US/changelogs/123.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/124.txt: -------------------------------------------------------------------------------- 1 | * fix project overview refresh 2 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/125.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/metadata/en-US/changelogs/125.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/130.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/metadata/en-US/changelogs/130.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/131.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/metadata/en-US/changelogs/131.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/132.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/metadata/en-US/changelogs/132.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/133.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/metadata/en-US/changelogs/133.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/200.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/metadata/en-US/changelogs/200.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/201.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/metadata/en-US/changelogs/201.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/202.txt: -------------------------------------------------------------------------------- 1 | * prevent projects fromn being lost 2 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/203.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/metadata/en-US/changelogs/203.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/204.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/metadata/en-US/changelogs/204.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/metadata/en-US/changelogs/5.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/metadata/en-US/changelogs/6.txt -------------------------------------------------------------------------------- /metadata/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/metadata/en-US/images/icon.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/edit_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/metadata/en-US/images/phoneScreenshots/edit_screen.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/flip_search_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/metadata/en-US/images/phoneScreenshots/flip_search_screen.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/main_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/metadata/en-US/images/phoneScreenshots/main_screen.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/scroll_search_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/metadata/en-US/images/phoneScreenshots/scroll_search_screen.png -------------------------------------------------------------------------------- /metadata/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/metadata/en-US/short_description.txt -------------------------------------------------------------------------------- /obtainium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/obtainium.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /tools/Prenoms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/tools/Prenoms.py -------------------------------------------------------------------------------- /tools/Prenoms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/tools/Prenoms.txt -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/common-forenames-by-country.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/tools/common-forenames-by-country.csv -------------------------------------------------------------------------------- /tools/common-forenames-by-country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/tools/common-forenames-by-country.py -------------------------------------------------------------------------------- /tools/nam_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/tools/nam_dict.py -------------------------------------------------------------------------------- /tools/nam_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdecorde/BabyName/HEAD/tools/nam_dict.txt --------------------------------------------------------------------------------