From 816b2e33733288df214d317f4a61304ca70b879c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Beno=C3=AEt=20Harrault?= <benoit@harrault.fr>
Date: Fri, 24 Jan 2025 16:31:54 +0100
Subject: [PATCH] First game release

---
 .editorconfig                                 |  18 +
 .gitignore                                    |  46 ++
 .gitlab-ci.yml                                | 135 ++++
 .metadata                                     |  10 +
 LICENSE                                       | 674 ++++++++++++++++++
 README.md                                     |  91 ---
 analysis_options.yaml                         |   1 +
 android/.gitignore                            |  13 +
 android/app/build.gradle                      |  79 ++
 android/app/src/debug/AndroidManifest.xml     |   3 +
 android/app/src/main/AndroidManifest.xml      |  38 +
 .../org/benoitharrault/sudoku/MainActivity.kt |   5 +
 .../res/drawable-v21/launch_background.xml    |  10 +
 .../main/res/drawable/launch_background.xml   |  10 +
 .../src/main/res/mipmap-hdpi/ic_launcher.png  | Bin 0 -> 1759 bytes
 .../src/main/res/mipmap-hdpi/launch_image.png | Bin 0 -> 1759 bytes
 .../src/main/res/mipmap-mdpi/ic_launcher.png  | Bin 0 -> 1082 bytes
 .../src/main/res/mipmap-mdpi/launch_image.png | Bin 0 -> 1082 bytes
 .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 2014 bytes
 .../main/res/mipmap-xhdpi/launch_image.png    | Bin 0 -> 2014 bytes
 .../main/res/mipmap-xxhdpi/ic_launcher.png    | Bin 0 -> 3275 bytes
 .../main/res/mipmap-xxhdpi/launch_image.png   | Bin 0 -> 3275 bytes
 .../main/res/mipmap-xxxhdpi/ic_launcher.png   | Bin 0 -> 4459 bytes
 .../main/res/mipmap-xxxhdpi/launch_image.png  | Bin 0 -> 4459 bytes
 .../app/src/main/res/values-night/styles.xml  |   9 +
 android/app/src/main/res/values/styles.xml    |   9 +
 android/app/src/profile/AndroidManifest.xml   |   3 +
 android/build.gradle                          |  18 +
 android/gradle.properties                     |   3 +
 .../gradle/wrapper/gradle-wrapper.properties  |   5 +
 android/settings.gradle                       |  25 +
 assets/skins/digits_1.png                     | Bin 0 -> 1202 bytes
 assets/skins/digits_2.png                     | Bin 0 -> 2663 bytes
 assets/skins/digits_3.png                     | Bin 0 -> 3030 bytes
 assets/skins/digits_4.png                     | Bin 0 -> 1620 bytes
 assets/skins/digits_5.png                     | Bin 0 -> 2813 bytes
 assets/skins/digits_6.png                     | Bin 0 -> 3220 bytes
 assets/skins/digits_7.png                     | Bin 0 -> 1911 bytes
 assets/skins/digits_8.png                     | Bin 0 -> 3206 bytes
 assets/skins/digits_9.png                     | Bin 0 -> 3217 bytes
 assets/translations/en.json                   |  15 +
 assets/translations/fr.json                   |  15 +
 assets/ui/button_help.png                     | Bin 0 -> 4778 bytes
 assets/ui/button_show_conflicts.png           | Bin 0 -> 3088 bytes
 assets/ui/cell_empty.png                      | Bin 0 -> 170 bytes
 assets/ui/game_win.png                        | Bin 0 -> 7937 bytes
 assets/ui/placeholder.png                     | Bin 0 -> 170 bytes
 assets/ui/skin_digits.png                     | Bin 0 -> 3659 bytes
 .../metadata/android/en-US/changelogs/1.txt   |   1 +
 .../android/en-US/full_description.txt        |  17 +
 .../android/en-US/images/featureGraphic.png   | Bin 0 -> 214 bytes
 .../metadata/android/en-US/images/icon.png    | Bin 0 -> 14980 bytes
 .../android/en-US/short_description.txt       |   1 +
 fastlane/metadata/android/en-US/title.txt     |   1 +
 .../metadata/android/fr-FR/changelogs/1.txt   |   1 +
 .../android/fr-FR/full_description.txt        |  17 +
 .../android/fr-FR/short_description.txt       |   1 +
 fastlane/metadata/android/fr-FR/title.txt     |   1 +
 fdroid_metadata.yml                           |  34 +
 gradle/wrapper/gradle-wrapper.jar             | Bin 0 -> 59203 bytes
 gradle/wrapper/gradle-wrapper.properties      |   5 +
 gradlew                                       | 185 +++++
 gradlew.bat                                   |  89 +++
 lib/config/application_config.dart            | 178 +++++
 lib/cubit/activity/activity_cubit.dart        | 189 +++++
 lib/cubit/activity/activity_state.dart        |  15 +
 lib/data/game_data.dart                       |  51 ++
 lib/main.dart                                 | 116 +++
 lib/models/activity/activity.dart             | 430 +++++++++++
 lib/models/activity/board.dart                | 619 ++++++++++++++++
 lib/models/activity/cell.dart                 |  46 ++
 lib/models/activity/cell_location.dart        |  34 +
 lib/models/activity/types.dart                |   6 +
 lib/ui/game/game_bottom.dart                  |  23 +
 lib/ui/game/game_end.dart                     |  69 ++
 lib/ui/game/game_top.dart                     |  34 +
 lib/ui/pages/game.dart                        |  45 ++
 .../parameter_painter_board_size.dart         |  73 ++
 .../parameter_painter_difficulty_level.dart   |  76 ++
 lib/ui/skeleton.dart                          |  55 ++
 .../widgets/game/bar_select_cell_value.dart   |  56 ++
 .../widgets/game/button_show_conflicts.dart   |  29 +
 lib/ui/widgets/game/button_show_tip.dart      |  54 ++
 lib/ui/widgets/game/cell.dart                 | 182 +++++
 lib/ui/widgets/game/cell_update.dart          |  74 ++
 lib/ui/widgets/game/game_board.dart           |  87 +++
 lib/utils/board_animate.dart                  | 107 +++
 pubspec.lock                                  | 458 ++++++++++++
 pubspec.yaml                                  |  43 ++
 resources/app/build_application_resources.sh  | 127 ++++
 resources/app/featureGraphic.svg              |   2 +
 resources/app/icon.svg                        |  92 +++
 resources/build_resources.sh                  |   6 +
 resources/ui/build_ui_resources.sh            | 115 +++
 resources/ui/images/button_help.svg           |   2 +
 resources/ui/images/button_show_conflicts.svg |   2 +
 resources/ui/images/cell_empty.svg            |   2 +
 resources/ui/images/game_win.svg              |   2 +
 resources/ui/images/placeholder.svg           |   2 +
 resources/ui/images/skin_digits.svg           |   2 +
 resources/ui/skins/digits/1.svg               |   4 +
 resources/ui/skins/digits/2.svg               |   2 +
 resources/ui/skins/digits/3.svg               |   2 +
 resources/ui/skins/digits/4.svg               |   2 +
 resources/ui/skins/digits/5.svg               |   2 +
 resources/ui/skins/digits/6.svg               |   2 +
 resources/ui/skins/digits/7.svg               |   2 +
 resources/ui/skins/digits/8.svg               |   2 +
 resources/ui/skins/digits/9.svg               |   2 +
 109 files changed, 5020 insertions(+), 91 deletions(-)
 create mode 100644 .editorconfig
 create mode 100644 .gitignore
 create mode 100644 .gitlab-ci.yml
 create mode 100644 .metadata
 create mode 100644 LICENSE
 create mode 100644 analysis_options.yaml
 create mode 100644 android/.gitignore
 create mode 100644 android/app/build.gradle
 create mode 100644 android/app/src/debug/AndroidManifest.xml
 create mode 100644 android/app/src/main/AndroidManifest.xml
 create mode 100644 android/app/src/main/kotlin/org/benoitharrault/sudoku/MainActivity.kt
 create mode 100644 android/app/src/main/res/drawable-v21/launch_background.xml
 create mode 100644 android/app/src/main/res/drawable/launch_background.xml
 create mode 100644 android/app/src/main/res/mipmap-hdpi/ic_launcher.png
 create mode 100644 android/app/src/main/res/mipmap-hdpi/launch_image.png
 create mode 100644 android/app/src/main/res/mipmap-mdpi/ic_launcher.png
 create mode 100644 android/app/src/main/res/mipmap-mdpi/launch_image.png
 create mode 100644 android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
 create mode 100644 android/app/src/main/res/mipmap-xhdpi/launch_image.png
 create mode 100644 android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
 create mode 100644 android/app/src/main/res/mipmap-xxhdpi/launch_image.png
 create mode 100644 android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
 create mode 100644 android/app/src/main/res/mipmap-xxxhdpi/launch_image.png
 create mode 100644 android/app/src/main/res/values-night/styles.xml
 create mode 100644 android/app/src/main/res/values/styles.xml
 create mode 100644 android/app/src/profile/AndroidManifest.xml
 create mode 100644 android/build.gradle
 create mode 100644 android/gradle.properties
 create mode 100644 android/gradle/wrapper/gradle-wrapper.properties
 create mode 100644 android/settings.gradle
 create mode 100644 assets/skins/digits_1.png
 create mode 100644 assets/skins/digits_2.png
 create mode 100644 assets/skins/digits_3.png
 create mode 100644 assets/skins/digits_4.png
 create mode 100644 assets/skins/digits_5.png
 create mode 100644 assets/skins/digits_6.png
 create mode 100644 assets/skins/digits_7.png
 create mode 100644 assets/skins/digits_8.png
 create mode 100644 assets/skins/digits_9.png
 create mode 100644 assets/translations/en.json
 create mode 100644 assets/translations/fr.json
 create mode 100644 assets/ui/button_help.png
 create mode 100644 assets/ui/button_show_conflicts.png
 create mode 100644 assets/ui/cell_empty.png
 create mode 100644 assets/ui/game_win.png
 create mode 100644 assets/ui/placeholder.png
 create mode 100644 assets/ui/skin_digits.png
 create mode 100644 fastlane/metadata/android/en-US/changelogs/1.txt
 create mode 100644 fastlane/metadata/android/en-US/full_description.txt
 create mode 100644 fastlane/metadata/android/en-US/images/featureGraphic.png
 create mode 100644 fastlane/metadata/android/en-US/images/icon.png
 create mode 100644 fastlane/metadata/android/en-US/short_description.txt
 create mode 100644 fastlane/metadata/android/en-US/title.txt
 create mode 100644 fastlane/metadata/android/fr-FR/changelogs/1.txt
 create mode 100644 fastlane/metadata/android/fr-FR/full_description.txt
 create mode 100644 fastlane/metadata/android/fr-FR/short_description.txt
 create mode 100644 fastlane/metadata/android/fr-FR/title.txt
 create mode 100644 fdroid_metadata.yml
 create mode 100644 gradle/wrapper/gradle-wrapper.jar
 create mode 100644 gradle/wrapper/gradle-wrapper.properties
 create mode 100755 gradlew
 create mode 100644 gradlew.bat
 create mode 100644 lib/config/application_config.dart
 create mode 100644 lib/cubit/activity/activity_cubit.dart
 create mode 100644 lib/cubit/activity/activity_state.dart
 create mode 100644 lib/data/game_data.dart
 create mode 100644 lib/main.dart
 create mode 100644 lib/models/activity/activity.dart
 create mode 100644 lib/models/activity/board.dart
 create mode 100644 lib/models/activity/cell.dart
 create mode 100644 lib/models/activity/cell_location.dart
 create mode 100644 lib/models/activity/types.dart
 create mode 100644 lib/ui/game/game_bottom.dart
 create mode 100644 lib/ui/game/game_end.dart
 create mode 100644 lib/ui/game/game_top.dart
 create mode 100644 lib/ui/pages/game.dart
 create mode 100644 lib/ui/parameters/parameter_painter_board_size.dart
 create mode 100644 lib/ui/parameters/parameter_painter_difficulty_level.dart
 create mode 100644 lib/ui/skeleton.dart
 create mode 100644 lib/ui/widgets/game/bar_select_cell_value.dart
 create mode 100644 lib/ui/widgets/game/button_show_conflicts.dart
 create mode 100644 lib/ui/widgets/game/button_show_tip.dart
 create mode 100644 lib/ui/widgets/game/cell.dart
 create mode 100644 lib/ui/widgets/game/cell_update.dart
 create mode 100644 lib/ui/widgets/game/game_board.dart
 create mode 100644 lib/utils/board_animate.dart
 create mode 100644 pubspec.lock
 create mode 100644 pubspec.yaml
 create mode 100755 resources/app/build_application_resources.sh
 create mode 100644 resources/app/featureGraphic.svg
 create mode 100644 resources/app/icon.svg
 create mode 100755 resources/build_resources.sh
 create mode 100755 resources/ui/build_ui_resources.sh
 create mode 100644 resources/ui/images/button_help.svg
 create mode 100644 resources/ui/images/button_show_conflicts.svg
 create mode 100644 resources/ui/images/cell_empty.svg
 create mode 100644 resources/ui/images/game_win.svg
 create mode 100644 resources/ui/images/placeholder.svg
 create mode 100644 resources/ui/images/skin_digits.svg
 create mode 100644 resources/ui/skins/digits/1.svg
 create mode 100644 resources/ui/skins/digits/2.svg
 create mode 100644 resources/ui/skins/digits/3.svg
 create mode 100644 resources/ui/skins/digits/4.svg
 create mode 100644 resources/ui/skins/digits/5.svg
 create mode 100644 resources/ui/skins/digits/6.svg
 create mode 100644 resources/ui/skins/digits/7.svg
 create mode 100644 resources/ui/skins/digits/8.svg
 create mode 100644 resources/ui/skins/digits/9.svg

diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..b0b3e1f
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,18 @@
+root = true
+
+[*]
+indent_style = space
+indent_size = 4
+end_of_line = lf
+charset = utf-8
+trim_trailing_whitespace = true
+insert_final_newline = true
+
+[*.json]
+indent_size = 2
+
+[*.yaml]
+indent_size = 2
+
+[*.md]
+trim_trailing_whitespace = false
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..54ae022
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,46 @@
+# Miscellaneous
+*.class
+*.log
+*.pyc
+*.swp
+.DS_Store
+.atom/
+.buildlog/
+.history
+.svn/
+migrate_working_dir/
+
+# IntelliJ related
+*.iml
+*.ipr
+*.iws
+.idea/
+
+# The .vscode folder contains launch configuration and tasks you configure in
+# VS Code which you may wish to be included in version control, so this line
+# is commented out by default.
+#.vscode/
+
+# Flutter/Dart/Pub related
+**/doc/api/
+.dart_tool/
+.flutter-plugins
+.flutter-plugins-dependencies
+.packages
+.pub-cache/
+.pub/
+/build/
+
+# Web related
+lib/generated_plugin_registrant.dart
+
+# Symbolication related
+app.*.symbols
+
+# Obfuscation related
+app.*.map.json
+
+# Android Studio will place build artifacts here
+/android/app/debug
+/android/app/profile
+/android/app/release
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..8160b8f
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,135 @@
+image: ghcr.io/cirruslabs/flutter:latest
+
+stages:
+  - build-debug
+  - build-release
+  - release
+  - deploy
+
+android:build-debug:
+  stage: build-debug
+  except:
+    - tags
+    - master
+  script:
+    # Flutter local configuration
+    - echo flutter.sdk=$FLUTTER_PATH > android/local.properties
+    - echo sdk.dir=$ANDROID_SDK_PATH >> android/local.properties
+    - echo flutter.buildMode=debug >> android/local.properties
+    # Android signing
+    - echo "$ANDROID_DEBUG_KEYSTORE_FILE" | base64 -d > android/app/my.keystore
+    - echo storeFile=my.keystore > android/key.properties
+    - echo storePassword=$ANDROID_DEBUG_KEYSTORE_PASSWORD >> android/key.properties
+    - echo keyAlias=$ANDROID_DEBUG_KEY_ALIAS >> android/key.properties
+    - echo keyPassword=$ANDROID_DEBUG_KEY_PASSWORD >> android/key.properties
+    # build flutter app
+    - VERSION_NAME="$(grep '^version:' pubspec.yaml | cut -d' ' -f2 | cut -d'+' -f1)"
+    - echo "${VERSION_NAME}"
+    - VERSION_CODE="$(grep '^version:' pubspec.yaml | cut -d' ' -f2 | cut -d'+' -f2)"
+    - echo "${VERSION_CODE}"
+    - flutter packages get
+    - flutter clean
+    - flutter build apk --debug --split-per-abi
+    - flutter build apk --debug
+    # prepare artifact
+    - BASE_APK_FOLDER="build/app/outputs/flutter-apk"
+    - APP_NAME="$(grep 'namespace' android/app/build.gradle | cut -d'"' -f2)"
+    - >
+      if [ "$(find "${BASE_APK_FOLDER}" -name "*.apk")" != "" ]; then
+        for APK in ${BASE_APK_FOLDER}/*.apk; do
+          mv -v "${APK}" "$(echo "${APK}" | sed "s|\.apk|_${VERSION_CODE}.apk|" | sed "s|/app-|/${APP_NAME}-|")"
+        done
+      fi
+    - find "${BASE_APK_FOLDER}" -name "*.apk" # where are my apk?
+  artifacts:
+    paths:
+      - build/app/outputs/flutter-apk
+    expire_in: 1 week
+  interruptible: true
+
+android:build-release:
+  stage: build-release
+  only:
+    - master
+  except:
+    - tags
+  script:
+    # Flutter local configuration
+    - echo flutter.sdk=$FLUTTER_PATH > android/local.properties
+    - echo sdk.dir=$ANDROID_SDK_PATH >> android/local.properties
+    - echo flutter.buildMode=release >> android/local.properties
+    # Android signing
+    - echo "$ANDROID_KEYSTORE_FILE" | base64 -d > android/app/my.keystore
+    - echo storeFile=my.keystore > android/key.properties
+    - echo storePassword=$ANDROID_KEYSTORE_PASSWORD >> android/key.properties
+    - echo keyAlias=$ANDROID_KEY_ALIAS >> android/key.properties
+    - echo keyPassword=$ANDROID_KEY_PASSWORD >> android/key.properties
+    # build flutter app
+    - BASE_APK_FOLDER="build/app/outputs/flutter-apk"
+    - echo "${BASE_APK_FOLDER}"
+    - mkdir -p "${BASE_APK_FOLDER}"
+    - VERSION_NAME="$(grep '^version:' pubspec.yaml | cut -d' ' -f2 | cut -d'+' -f1)"
+    - VERSION_CODE="$(grep '^version:' pubspec.yaml | cut -d' ' -f2 | cut -d'+' -f2)"
+    - APP_NAME="$(grep 'namespace' android/app/build.gradle | cut -d'"' -f2)"
+    - TAG_NAME="Release_${VERSION_NAME}_${VERSION_CODE}"
+    - echo "${TAG_NAME}"
+    - >
+      if [ $(git tag -l "${TAG_NAME}") ]; then
+        echo "Tag ${TAG_NAME} already exists. Skipping build release."
+      else
+        flutter packages get
+        flutter clean
+        flutter build apk --release --split-per-abi
+        flutter build apk --release
+      fi
+    # prepare artifact
+    - >
+      if [ "$(find "${BASE_APK_FOLDER}" -name "*.apk")" != "" ]; then
+        for APK in ${BASE_APK_FOLDER}/*.apk; do
+          mv -v "${APK}" "$(echo "${APK}" | sed "s|\.apk|_${VERSION_CODE}.apk|" | sed "s|/app-|/${APP_NAME}-|")"
+        done
+      fi
+    - find "${BASE_APK_FOLDER}" -name "*.apk" # where are my apk?
+  artifacts:
+    paths:
+      - build/app/outputs/flutter-apk
+    expire_in: 1 week
+  interruptible: true
+
+application:release:
+  stage: release
+  image:
+    name: alpine/git
+    entrypoint: [""]
+  only:
+    - master
+  except:
+    - tags
+  dependencies:
+    - android:build-release
+  script:
+    - apk --no-cache add curl
+    - git config user.email "${GITLAB_USER_EMAIL}"
+    - git config user.name "${GITLAB_USER_NAME}"
+    - git remote set-url origin https://oauth2:${GITLAB_ACCESS_TOKEN}@${CI_SERVER_HOST}/${CI_PROJECT_PATH}
+    - VERSION_NAME="$(grep '^version:' pubspec.yaml | cut -d' ' -f2 | cut -d'+' -f1)"
+    - VERSION_CODE="$(grep '^version:' pubspec.yaml | cut -d' ' -f2 | cut -d'+' -f2)"
+    - TAG_NAME="Release_${VERSION_NAME}_${VERSION_CODE}"
+    - echo "${TAG_NAME}"
+    - >
+      if [ $(git tag -l "${TAG_NAME}") ]; then
+        echo "Tag ${TAG_NAME} already exists. Skipping release and tag creation."
+      else
+        git tag -a "${TAG_NAME}" -m "Release ${VERSION_NAME} (${VERSION_CODE})"
+        git push origin "${TAG_NAME}"
+        curl --silent -d "{\"token\": \"${JABBER_NOTIFICATION_TOKEN}\", \"message\": \"New tag for ${CI_PROJECT_PATH}: ${TAG_NAME}\"}" -H "Content-Type: application/json" -X POST ${JABBER_NOTIFICATION_URL}
+      fi
+
+android:deploy:
+  stage: deploy
+  only:
+    - tags
+  dependencies:
+    - application:release
+  script:
+    - curl "${REPOSITORY_UPDATE_WEBHOOK}?token=${REPOSITORY_TOKEN}" --fail
diff --git a/.metadata b/.metadata
new file mode 100644
index 0000000..b2896b2
--- /dev/null
+++ b/.metadata
@@ -0,0 +1,10 @@
+# This file tracks properties of this Flutter project.
+# Used by Flutter tool to assess capabilities and perform upgrades etc.
+#
+# This file should be version controlled and should not be manually edited.
+
+version:
+  revision: 5bedb7b1d5698ce2c1c67aaf9afae7b3948b172a
+  channel: beta
+
+project_type: app
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..f288702
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,674 @@
+                    GNU GENERAL PUBLIC LICENSE
+                       Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+                            Preamble
+
+  The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+  The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works.  By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users.  We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors.  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+  To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights.  Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received.  You must make sure that they, too, receive
+or can get the source code.  And you must show them these terms so they
+know their rights.
+
+  Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+  For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software.  For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+  Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so.  This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software.  The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable.  Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products.  If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+  Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary.  To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+                       TERMS AND CONDITIONS
+
+  0. Definitions.
+
+  "This License" refers to version 3 of the GNU General Public License.
+
+  "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+  "The Program" refers to any copyrightable work licensed under this
+License.  Each licensee is addressed as "you".  "Licensees" and
+"recipients" may be individuals or organizations.
+
+  To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy.  The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+  A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+  To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy.  Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+  To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies.  Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+  An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License.  If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+  1. Source Code.
+
+  The "source code" for a work means the preferred form of the work
+for making modifications to it.  "Object code" means any non-source
+form of a work.
+
+  A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+  The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form.  A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+  The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities.  However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work.  For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+  The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+  The Corresponding Source for a work in source code form is that
+same work.
+
+  2. Basic Permissions.
+
+  All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met.  This License explicitly affirms your unlimited
+permission to run the unmodified Program.  The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work.  This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+  You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force.  You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright.  Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+  Conveying under any other circumstances is permitted solely under
+the conditions stated below.  Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+  3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+  No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+  When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+  4. Conveying Verbatim Copies.
+
+  You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+  You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+  5. Conveying Modified Source Versions.
+
+  You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+    a) The work must carry prominent notices stating that you modified
+    it, and giving a relevant date.
+
+    b) The work must carry prominent notices stating that it is
+    released under this License and any conditions added under section
+    7.  This requirement modifies the requirement in section 4 to
+    "keep intact all notices".
+
+    c) You must license the entire work, as a whole, under this
+    License to anyone who comes into possession of a copy.  This
+    License will therefore apply, along with any applicable section 7
+    additional terms, to the whole of the work, and all its parts,
+    regardless of how they are packaged.  This License gives no
+    permission to license the work in any other way, but it does not
+    invalidate such permission if you have separately received it.
+
+    d) If the work has interactive user interfaces, each must display
+    Appropriate Legal Notices; however, if the Program has interactive
+    interfaces that do not display Appropriate Legal Notices, your
+    work need not make them do so.
+
+  A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit.  Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+  6. Conveying Non-Source Forms.
+
+  You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+    a) Convey the object code in, or embodied in, a physical product
+    (including a physical distribution medium), accompanied by the
+    Corresponding Source fixed on a durable physical medium
+    customarily used for software interchange.
+
+    b) Convey the object code in, or embodied in, a physical product
+    (including a physical distribution medium), accompanied by a
+    written offer, valid for at least three years and valid for as
+    long as you offer spare parts or customer support for that product
+    model, to give anyone who possesses the object code either (1) a
+    copy of the Corresponding Source for all the software in the
+    product that is covered by this License, on a durable physical
+    medium customarily used for software interchange, for a price no
+    more than your reasonable cost of physically performing this
+    conveying of source, or (2) access to copy the
+    Corresponding Source from a network server at no charge.
+
+    c) Convey individual copies of the object code with a copy of the
+    written offer to provide the Corresponding Source.  This
+    alternative is allowed only occasionally and noncommercially, and
+    only if you received the object code with such an offer, in accord
+    with subsection 6b.
+
+    d) Convey the object code by offering access from a designated
+    place (gratis or for a charge), and offer equivalent access to the
+    Corresponding Source in the same way through the same place at no
+    further charge.  You need not require recipients to copy the
+    Corresponding Source along with the object code.  If the place to
+    copy the object code is a network server, the Corresponding Source
+    may be on a different server (operated by you or a third party)
+    that supports equivalent copying facilities, provided you maintain
+    clear directions next to the object code saying where to find the
+    Corresponding Source.  Regardless of what server hosts the
+    Corresponding Source, you remain obligated to ensure that it is
+    available for as long as needed to satisfy these requirements.
+
+    e) Convey the object code using peer-to-peer transmission, provided
+    you inform other peers where the object code and Corresponding
+    Source of the work are being offered to the general public at no
+    charge under subsection 6d.
+
+  A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+  A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling.  In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage.  For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product.  A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+  "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source.  The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+  If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information.  But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+  The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed.  Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+  Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+  7. Additional Terms.
+
+  "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law.  If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+  When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it.  (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.)  You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+  Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+    a) Disclaiming warranty or limiting liability differently from the
+    terms of sections 15 and 16 of this License; or
+
+    b) Requiring preservation of specified reasonable legal notices or
+    author attributions in that material or in the Appropriate Legal
+    Notices displayed by works containing it; or
+
+    c) Prohibiting misrepresentation of the origin of that material, or
+    requiring that modified versions of such material be marked in
+    reasonable ways as different from the original version; or
+
+    d) Limiting the use for publicity purposes of names of licensors or
+    authors of the material; or
+
+    e) Declining to grant rights under trademark law for use of some
+    trade names, trademarks, or service marks; or
+
+    f) Requiring indemnification of licensors and authors of that
+    material by anyone who conveys the material (or modified versions of
+    it) with contractual assumptions of liability to the recipient, for
+    any liability that these contractual assumptions directly impose on
+    those licensors and authors.
+
+  All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10.  If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term.  If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+  If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+  Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+  8. Termination.
+
+  You may not propagate or modify a covered work except as expressly
+provided under this License.  Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+  However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+  Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+  Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License.  If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+  9. Acceptance Not Required for Having Copies.
+
+  You are not required to accept this License in order to receive or
+run a copy of the Program.  Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance.  However,
+nothing other than this License grants you permission to propagate or
+modify any covered work.  These actions infringe copyright if you do
+not accept this License.  Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+  10. Automatic Licensing of Downstream Recipients.
+
+  Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License.  You are not responsible
+for enforcing compliance by third parties with this License.
+
+  An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations.  If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+  You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License.  For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+  11. Patents.
+
+  A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based.  The
+work thus licensed is called the contributor's "contributor version".
+
+  A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version.  For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+  Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+  In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement).  To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+  If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients.  "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+  If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+  A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License.  You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+  Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+  12. No Surrender of Others' Freedom.
+
+  If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all.  For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+  13. Use with the GNU Affero General Public License.
+
+  Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work.  The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+  14. Revised Versions of this License.
+
+  The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time.  Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+  Each version is given a distinguishing version number.  If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation.  If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+  If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+  Later license versions may give you additional or different
+permissions.  However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+  15. Disclaimer of Warranty.
+
+  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+  16. Limitation of Liability.
+
+  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+  17. Interpretation of Sections 15 and 16.
+
+  If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+                     END OF TERMS AND CONDITIONS
+
+            How to Apply These Terms to Your New Programs
+
+  If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+  To do so, attach the following notices to the program.  It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see <https://www.gnu.org/licenses/>.
+
+Also add information on how to contact you by electronic and paper mail.
+
+  If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+    <program>  Copyright (C) <year>  <name of author>
+    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+    This is free software, and you are welcome to redistribute it
+    under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License.  Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+  You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+<https://www.gnu.org/licenses/>.
+
+  The GNU General Public License does not permit incorporating your program
+into proprietary programs.  If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library.  If this is what you want to do, use the GNU Lesser General
+Public License instead of this License.  But first, please read
+<https://www.gnu.org/licenses/why-not-lgpl.html>.
diff --git a/README.md b/README.md
index 3a80691..08018d9 100644
--- a/README.md
+++ b/README.md
@@ -1,93 +1,2 @@
 # org.benoitharrault.suguru
 
-
-
-## Getting started
-
-To make it easy for you to get started with GitLab, here's a list of recommended next steps.
-
-Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)!
-
-## Add your files
-
-- [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files
-- [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command:
-
-```
-cd existing_repo
-git remote add origin https://git.harrault.fr/android/org.benoitharrault.suguru.git
-git branch -M master
-git push -uf origin master
-```
-
-## Integrate with your tools
-
-- [ ] [Set up project integrations](https://git.harrault.fr/android/org.benoitharrault.suguru/-/settings/integrations)
-
-## Collaborate with your team
-
-- [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/)
-- [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)
-- [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically)
-- [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/)
-- [ ] [Set auto-merge](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html)
-
-## Test and Deploy
-
-Use the built-in continuous integration in GitLab.
-
-- [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html)
-- [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing (SAST)](https://docs.gitlab.com/ee/user/application_security/sast/)
-- [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html)
-- [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/)
-- [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html)
-
-***
-
-# Editing this README
-
-When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thanks to [makeareadme.com](https://www.makeareadme.com/) for this template.
-
-## Suggestions for a good README
-
-Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information.
-
-## Name
-Choose a self-explaining name for your project.
-
-## Description
-Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors.
-
-## Badges
-On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge.
-
-## Visuals
-Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method.
-
-## Installation
-Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection.
-
-## Usage
-Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README.
-
-## Support
-Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc.
-
-## Roadmap
-If you have ideas for releases in the future, it is a good idea to list them in the README.
-
-## Contributing
-State if you are open to contributions and what your requirements are for accepting them.
-
-For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self.
-
-You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser.
-
-## Authors and acknowledgment
-Show your appreciation to those who have contributed to the project.
-
-## License
-For open source projects, say how it is licensed.
-
-## Project status
-If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
diff --git a/analysis_options.yaml b/analysis_options.yaml
new file mode 100644
index 0000000..f9b3034
--- /dev/null
+++ b/analysis_options.yaml
@@ -0,0 +1 @@
+include: package:flutter_lints/flutter.yaml
diff --git a/android/.gitignore b/android/.gitignore
new file mode 100644
index 0000000..55afd91
--- /dev/null
+++ b/android/.gitignore
@@ -0,0 +1,13 @@
+gradle-wrapper.jar
+/.gradle
+/captures/
+/gradlew
+/gradlew.bat
+/local.properties
+GeneratedPluginRegistrant.java
+
+# Remember to never publicly share your keystore.
+# See https://flutter.dev/to/reference-keystore
+key.properties
+**/*.keystore
+**/*.jks
diff --git a/android/app/build.gradle b/android/app/build.gradle
new file mode 100644
index 0000000..230e425
--- /dev/null
+++ b/android/app/build.gradle
@@ -0,0 +1,79 @@
+plugins {
+    id "com.android.application"
+    id "kotlin-android"
+    id "dev.flutter.flutter-gradle-plugin"
+}
+
+def keystoreProperties = new Properties()
+def keystorePropertiesFile = rootProject.file('key.properties')
+if (keystorePropertiesFile.exists()) {
+    keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
+}
+
+android {
+    namespace = "org.benoitharrault.suguru"
+    compileSdk = flutter.compileSdkVersion
+    ndkVersion = "27.0.12077973"
+
+    compileOptions {
+        sourceCompatibility = JavaVersion.VERSION_1_8
+        targetCompatibility = JavaVersion.VERSION_1_8
+    }
+
+    kotlinOptions {
+        jvmTarget = JavaVersion.VERSION_1_8
+    }
+
+    defaultConfig {
+        applicationId = "org.benoitharrault.suguru"
+        minSdk = flutter.minSdkVersion
+        targetSdk = flutter.targetSdkVersion
+        versionCode = flutter.versionCode
+        versionName = flutter.versionName
+    }
+
+    signingConfigs {
+        release {
+            keyAlias = keystoreProperties['keyAlias']
+            keyPassword = keystoreProperties['keyPassword']
+            storeFile = keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
+            storePassword = keystoreProperties['storePassword']
+        }
+    }
+    buildTypes {
+        release {
+            signingConfig = signingConfigs.release
+        }
+    }
+
+    splits {
+        abi {
+            reset()
+            include 'armeabi', 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
+        }
+    }
+}
+
+ext.abiCodes = [
+    'x86': 1,
+    'x86_64': 2,
+    'armeabi': 3,
+    'armeabi-v7a': 4,
+    'arm64-v8a': 5,
+]
+
+import com.android.build.OutputFile
+
+android.applicationVariants.all { variant ->
+  variant.outputs.each { output ->
+    def perAbiVersionCodeIncrement = project.ext.abiCodes.get(output.getFilter(OutputFile.ABI))
+
+    if (perAbiVersionCodeIncrement != null) {
+      output.versionCodeOverride = variant.versionCode * 1000 + perAbiVersionCodeIncrement
+    }
+  }
+}
+
+flutter {
+    source = "../.."
+}
diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml
new file mode 100644
index 0000000..bbd7ee7
--- /dev/null
+++ b/android/app/src/debug/AndroidManifest.xml
@@ -0,0 +1,3 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android">
+    <uses-permission android:name="android.permission.INTERNET"/>
+</manifest>
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..94a40e9
--- /dev/null
+++ b/android/app/src/main/AndroidManifest.xml
@@ -0,0 +1,38 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android">
+    <application
+        android:label="suguru"
+        android:name="${applicationName}"
+        android:icon="@mipmap/ic_launcher">
+        <activity
+            android:name=".MainActivity"
+            android:exported="true"
+            android:launchMode="singleTop"
+            android:taskAffinity=""
+            android:theme="@style/LaunchTheme"
+            android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
+            android:hardwareAccelerated="true"
+            android:windowSoftInputMode="adjustResize">
+            <meta-data
+              android:name="io.flutter.embedding.android.NormalTheme"
+              android:resource="@style/NormalTheme"
+              />
+            <meta-data
+              android:name="io.flutter.embedding.android.SplashScreenDrawable"
+              android:resource="@drawable/launch_background"
+              />
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN"/>
+                <category android:name="android.intent.category.LAUNCHER"/>
+            </intent-filter>
+        </activity>
+        <meta-data
+            android:name="flutterEmbedding"
+            android:value="2" />
+    </application>
+    <queries>
+        <intent>
+            <action android:name="android.intent.action.PROCESS_TEXT"/>
+            <data android:mimeType="text/plain"/>
+        </intent>
+    </queries>
+</manifest>
diff --git a/android/app/src/main/kotlin/org/benoitharrault/sudoku/MainActivity.kt b/android/app/src/main/kotlin/org/benoitharrault/sudoku/MainActivity.kt
new file mode 100644
index 0000000..5549398
--- /dev/null
+++ b/android/app/src/main/kotlin/org/benoitharrault/sudoku/MainActivity.kt
@@ -0,0 +1,5 @@
+package org.benoitharrault.suguru
+
+import io.flutter.embedding.android.FlutterActivity
+
+class MainActivity: FlutterActivity()
diff --git a/android/app/src/main/res/drawable-v21/launch_background.xml b/android/app/src/main/res/drawable-v21/launch_background.xml
new file mode 100644
index 0000000..428eb36
--- /dev/null
+++ b/android/app/src/main/res/drawable-v21/launch_background.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="utf-8"?>
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
+    <item android:drawable="?android:colorBackground" />
+
+    <item>
+        <bitmap
+            android:gravity="center"
+            android:src="@mipmap/launch_image" />
+    </item>
+</layer-list>
diff --git a/android/app/src/main/res/drawable/launch_background.xml b/android/app/src/main/res/drawable/launch_background.xml
new file mode 100644
index 0000000..e4551e9
--- /dev/null
+++ b/android/app/src/main/res/drawable/launch_background.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="utf-8"?>
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
+    <item android:drawable="@android:color/white" />
+
+    <item>
+        <bitmap
+            android:gravity="center"
+            android:src="@mipmap/launch_image" />
+    </item>
+</layer-list>
diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 0000000000000000000000000000000000000000..497cd7179f26063d273df68893d53925dee6f7b8
GIT binary patch
literal 1759
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
KwrR5RPyHJejAFL{

literal 0
HcmV?d00001

diff --git a/android/app/src/main/res/mipmap-hdpi/launch_image.png b/android/app/src/main/res/mipmap-hdpi/launch_image.png
new file mode 100644
index 0000000000000000000000000000000000000000..497cd7179f26063d273df68893d53925dee6f7b8
GIT binary patch
literal 1759
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
KwrR5RPyHJejAFL{

literal 0
HcmV?d00001

diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 0000000000000000000000000000000000000000..dcb10c8a686e7ad94bf78cab50eada8e4db5a766
GIT binary patch
literal 1082
zcmXYvdrVUY6vl5Ut-wGTE>f^)X&YL-vur8Ls8Cj+&=QpuiYUejjVt(ol~IJD)0NE;
zkxg+5_?Urh45CI95S1$9H4&9rn2sQb0;PzG3YGCJ{dP@u@;i^5b8`OqPM#`C;pXD)
zLJ)*oq*5M3<qzJv6P=2QkDP0%<ea9A*AoP*{H@bYXFrLjnqC><n=;h8q>L<0x|Ybw
z$`bAPVwZlKCQU2Sr6-?$73@tAv`*E!*l+;UK4k`i*g&y?kjW@yVzHPc$qghK$>+;B
z90{8(k+8*L?+B4dMv_4S!N+_)HIj3=)HHb2G6~6+kfeen!-T@sJYLxQzA};{U9nu^
z=O^RyLwG!ykP{*htmgAWse>dhSjY_$`1Z&6^+$1S=?dF!#kiVlPY^*PvZ}cj74K;@
z&z=%8AIG)Faj}t$P5h_P{}<RIgvKA*03-)uhXlGc&?}G~g}u?(r^YuMao{t2pMcy%
z97;ld5)SXgkrWi9;wK%7GjTE-C->mg9+Vhx_At&D;QUcsIF8EWxLAbhlc+w0np3Df
zgDWMd`xQ4T&~P4&7tnGEt(Vbu1$XLj*ND5<(S8Ge)x*?)jwW<A<Ni(DZ^eUK_@@nB
zchKFAo_px+KyN1=KfpjY1|Pyq(SxB!u=HX0F@~Su=@X0$;<*{mhcG&f*UvCEigAjU
zcr%6xigEmF#pD}IPGD*R)03E<!pszAr!hAJ+Z=2*%+JGar_@{!s86Tllw`z2sR^2c
z1D)>Z$Y3%TI5|7JyyNP&aN#2NcRf5j7BBH+c`ar8aC~_@zMmjEMy(z+n};kG%RFVq
z43ttI@_VFwO{_AnzRRL+PGmQJxx~2QL}1nRAXOSOGyliFygrvq&y@#RbG!PgelZxO
zM;_1A_rA)mGWFHef3^RZ((W%0oT`Za*}a{v_jMY6xm?ZwE1c05d?viSdP{(oX{{?^
zdzYp(SFMUY$E5A7Yi|*`b5#t7*bkdx9xPNcSjt0VO{0yZt81Bj*2-bKmPO3Wdu6=d
z|E&9pkjOP9SJXv)+TH8Aca_xSY}i_pn~<vO*tX~gZP~TIg9#VEo~5qq7CR=s*w#}j
zyIENE9y2z<XZv<16)wd`v>2qh>le^AuYPz=-uU8=oVz;*Jd@*mJ2aaU28<16&!8ir
z{o>5EyUnwC5l4$NX;SsEtGZfu!-bO0W<#Z=;;aX&)TjPZS7YkgLazfvewZ<=+{<Ak
z?&`$me$$?PVpHv8HQ^{)A5qC$%9<{3AUb}t(urlQw-2|RDEKbtn!EklEiHpnsv1zF
z@tm6UYh*>oWj<jd=|$ybTR_F_`~vI9^q*xVYY(~=YVPU1i<v7!88NDm1HGRMl>RwN
i4_M!DiiV2o>07@p3HoHkNB1bziOBFMd1YwgxBmg^`4t@i

literal 0
HcmV?d00001

diff --git a/android/app/src/main/res/mipmap-mdpi/launch_image.png b/android/app/src/main/res/mipmap-mdpi/launch_image.png
new file mode 100644
index 0000000000000000000000000000000000000000..dcb10c8a686e7ad94bf78cab50eada8e4db5a766
GIT binary patch
literal 1082
zcmXYvdrVUY6vl5Ut-wGTE>f^)X&YL-vur8Ls8Cj+&=QpuiYUejjVt(ol~IJD)0NE;
zkxg+5_?Urh45CI95S1$9H4&9rn2sQb0;PzG3YGCJ{dP@u@;i^5b8`OqPM#`C;pXD)
zLJ)*oq*5M3<qzJv6P=2QkDP0%<ea9A*AoP*{H@bYXFrLjnqC><n=;h8q>L<0x|Ybw
z$`bAPVwZlKCQU2Sr6-?$73@tAv`*E!*l+;UK4k`i*g&y?kjW@yVzHPc$qghK$>+;B
z90{8(k+8*L?+B4dMv_4S!N+_)HIj3=)HHb2G6~6+kfeen!-T@sJYLxQzA};{U9nu^
z=O^RyLwG!ykP{*htmgAWse>dhSjY_$`1Z&6^+$1S=?dF!#kiVlPY^*PvZ}cj74K;@
z&z=%8AIG)Faj}t$P5h_P{}<RIgvKA*03-)uhXlGc&?}G~g}u?(r^YuMao{t2pMcy%
z97;ld5)SXgkrWi9;wK%7GjTE-C->mg9+Vhx_At&D;QUcsIF8EWxLAbhlc+w0np3Df
zgDWMd`xQ4T&~P4&7tnGEt(Vbu1$XLj*ND5<(S8Ge)x*?)jwW<A<Ni(DZ^eUK_@@nB
zchKFAo_px+KyN1=KfpjY1|Pyq(SxB!u=HX0F@~Su=@X0$;<*{mhcG&f*UvCEigAjU
zcr%6xigEmF#pD}IPGD*R)03E<!pszAr!hAJ+Z=2*%+JGar_@{!s86Tllw`z2sR^2c
z1D)>Z$Y3%TI5|7JyyNP&aN#2NcRf5j7BBH+c`ar8aC~_@zMmjEMy(z+n};kG%RFVq
z43ttI@_VFwO{_AnzRRL+PGmQJxx~2QL}1nRAXOSOGyliFygrvq&y@#RbG!PgelZxO
zM;_1A_rA)mGWFHef3^RZ((W%0oT`Za*}a{v_jMY6xm?ZwE1c05d?viSdP{(oX{{?^
zdzYp(SFMUY$E5A7Yi|*`b5#t7*bkdx9xPNcSjt0VO{0yZt81Bj*2-bKmPO3Wdu6=d
z|E&9pkjOP9SJXv)+TH8Aca_xSY}i_pn~<vO*tX~gZP~TIg9#VEo~5qq7CR=s*w#}j
zyIENE9y2z<XZv<16)wd`v>2qh>le^AuYPz=-uU8=oVz;*Jd@*mJ2aaU28<16&!8ir
z{o>5EyUnwC5l4$NX;SsEtGZfu!-bO0W<#Z=;;aX&)TjPZS7YkgLazfvewZ<=+{<Ak
z?&`$me$$?PVpHv8HQ^{)A5qC$%9<{3AUb}t(urlQw-2|RDEKbtn!EklEiHpnsv1zF
z@tm6UYh*>oWj<jd=|$ybTR_F_`~vI9^q*xVYY(~=YVPU1i<v7!88NDm1HGRMl>RwN
i4_M!DiiV2o>07@p3HoHkNB1bziOBFMd1YwgxBmg^`4t@i

literal 0
HcmV?d00001

diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 0000000000000000000000000000000000000000..38f2e153037917c4109070fe9bb6bacb542cccf7
GIT binary patch
literal 2014
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

literal 0
HcmV?d00001

diff --git a/android/app/src/main/res/mipmap-xhdpi/launch_image.png b/android/app/src/main/res/mipmap-xhdpi/launch_image.png
new file mode 100644
index 0000000000000000000000000000000000000000..38f2e153037917c4109070fe9bb6bacb542cccf7
GIT binary patch
literal 2014
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

literal 0
HcmV?d00001

diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000000000000000000000000000000000000..af2f37e158ca1f7d80da9e9d533d511a1e1c726e
GIT binary patch
literal 3275
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

literal 0
HcmV?d00001

diff --git a/android/app/src/main/res/mipmap-xxhdpi/launch_image.png b/android/app/src/main/res/mipmap-xxhdpi/launch_image.png
new file mode 100644
index 0000000000000000000000000000000000000000..af2f37e158ca1f7d80da9e9d533d511a1e1c726e
GIT binary patch
literal 3275
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

literal 0
HcmV?d00001

diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 0000000000000000000000000000000000000000..09434e8f6f9bfef3d691a5d17c496759e6b3180e
GIT binary patch
literal 4459
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

literal 0
HcmV?d00001

diff --git a/android/app/src/main/res/mipmap-xxxhdpi/launch_image.png b/android/app/src/main/res/mipmap-xxxhdpi/launch_image.png
new file mode 100644
index 0000000000000000000000000000000000000000..09434e8f6f9bfef3d691a5d17c496759e6b3180e
GIT binary patch
literal 4459
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

literal 0
HcmV?d00001

diff --git a/android/app/src/main/res/values-night/styles.xml b/android/app/src/main/res/values-night/styles.xml
new file mode 100644
index 0000000..c6e7031
--- /dev/null
+++ b/android/app/src/main/res/values-night/styles.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+    <style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
+        <item name="android:windowBackground">@drawable/launch_background</item>
+    </style>
+    <style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
+        <item name="android:windowBackground">?android:colorBackground</item>
+    </style>
+</resources>
diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml
new file mode 100644
index 0000000..ff81bae
--- /dev/null
+++ b/android/app/src/main/res/values/styles.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+    <style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
+        <item name="android:windowBackground">@drawable/launch_background</item>
+    </style>
+    <style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
+        <item name="android:windowBackground">?android:colorBackground</item>
+    </style>
+</resources>
diff --git a/android/app/src/profile/AndroidManifest.xml b/android/app/src/profile/AndroidManifest.xml
new file mode 100644
index 0000000..bbd7ee7
--- /dev/null
+++ b/android/app/src/profile/AndroidManifest.xml
@@ -0,0 +1,3 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android">
+    <uses-permission android:name="android.permission.INTERNET"/>
+</manifest>
diff --git a/android/build.gradle b/android/build.gradle
new file mode 100644
index 0000000..d2ffbff
--- /dev/null
+++ b/android/build.gradle
@@ -0,0 +1,18 @@
+allprojects {
+    repositories {
+        google()
+        mavenCentral()
+    }
+}
+
+rootProject.buildDir = "../build"
+subprojects {
+    project.buildDir = "${rootProject.buildDir}/${project.name}"
+}
+subprojects {
+    project.evaluationDependsOn(":app")
+}
+
+tasks.register("clean", Delete) {
+    delete rootProject.buildDir
+}
diff --git a/android/gradle.properties b/android/gradle.properties
new file mode 100644
index 0000000..2597170
--- /dev/null
+++ b/android/gradle.properties
@@ -0,0 +1,3 @@
+org.gradle.jvmargs=-Xmx4G -XX:MaxMetaspaceSize=2G -XX:+HeapDumpOnOutOfMemoryError
+android.useAndroidX=true
+android.enableJetifier=true
diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..afa1e8e
--- /dev/null
+++ b/android/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,5 @@
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
diff --git a/android/settings.gradle b/android/settings.gradle
new file mode 100644
index 0000000..5d761ec
--- /dev/null
+++ b/android/settings.gradle
@@ -0,0 +1,25 @@
+pluginManagement {
+    def flutterSdkPath = {
+        def properties = new Properties()
+        file("local.properties").withInputStream { properties.load(it) }
+        def flutterSdkPath = properties.getProperty("flutter.sdk")
+        assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
+        return flutterSdkPath
+    }()
+
+    includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
+
+    repositories {
+        google()
+        mavenCentral()
+        gradlePluginPortal()
+    }
+}
+
+plugins {
+    id "dev.flutter.flutter-plugin-loader" version "1.0.0"
+    id 'com.android.application' version '8.8.0' apply false
+    id 'org.jetbrains.kotlin.android' version '2.0.20' apply false
+}
+
+include ":app"
diff --git a/assets/skins/digits_1.png b/assets/skins/digits_1.png
new file mode 100644
index 0000000000000000000000000000000000000000..6561385e830198c3bd6a6f89032e44d832d42948
GIT binary patch
literal 1202
zcmeAS@N?(olHy`uVBq!ia0vp^2SAvE8Azrw%`pX1oCO|{#S9EG5g^QXcE<BFKtah8
z*NBqf{Irtt#G+J&^73-M%)IR4<ivthz5Jr|+3#$m7#J9<0(?ST|Ns9FR6h#n9|AG`
z`>q0Qtt|=i3ua(sVqs-t=j7t%;pG<)6cQ7cmXVcHR8~<_*VNM1(bYFHHZilbvbM3c
zcXW2~^z!!g^A8S*ic3z*%&)Afu4!!U=$|-q?t(>2maSO1YTf$Hd-feVeDwH<lc&y{
zJ$LEyl^Zwj-GA`#@sp>|U%Y(v=I#3rA3uHm^7Y&IpTGY6{l{t{F2lgUWZ>!I7*cWT
z?S=GU;Y5knhouMGghbZd5Uf5bC-|BzuygM*t`4OY3fo-1|0&;Z@OXuSbo<foXYPFe
zZu~jMUqnzauww4Il-2eZeoybyj6ToAI%lH!f|qM8AMDw~m^=RrWB60v8xyOTrRJTG
zzM!1%@H;%;p(gxZ!{$$HCD-;ao^{^DcEtP%?+%6h0~@bMZ}_`;4dZLKRNf5PNu~>)
z?p(vz>b{9>O^sHz!)@+JX0yFhOcVaMtYKW9Rm7&_rILQ&75gSO8TskP3wEklGV|@7
zX1w6*tQ4M%H}j?#KX}lP!t-K}swA`7lwe8bZ81O9elnHa^-+y>sCm-&Y*!_V&U?8j
zHH@-*<5i*^7XFB^H05t-TlYHjq^Q7qKewsrKbfp12|kTk*D&{#JyJ4x##3-!`oqH`
zaoGnBZ=GnY;47t^eqeQN;1eE=?JnmU%-xr(Eo)f$eK%7Z|Nl7>Oj##4oscZ3eylHS
ze&EE(`)Y9wo%2*D8ZL;6`uO|^`-i=I(sp%nFSvEv?(Y%i4~CJZmya+Sl&v%PtWx8!
zbjOeU$p;uGFI~IYr-|*3zS&tTPH}^p!rEz`3mQJ|W9HuE>%_8W|DCNs)fNYK@3UIR
z&$r>{rFlEfc}6tUb0E2yQfB3rwL$5B1qB8FUaw=YJlWLs!tq-^$WTvLKbLh*2~7Z?
C7e|Ev

literal 0
HcmV?d00001

diff --git a/assets/skins/digits_2.png b/assets/skins/digits_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..0394578e5dc6a32c5ee89c3f2063c09cd661b1a3
GIT binary patch
literal 2663
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

literal 0
HcmV?d00001

diff --git a/assets/skins/digits_3.png b/assets/skins/digits_3.png
new file mode 100644
index 0000000000000000000000000000000000000000..f36d5cdb60772213325941cc097666624b1c6edf
GIT binary patch
literal 3030
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

literal 0
HcmV?d00001

diff --git a/assets/skins/digits_4.png b/assets/skins/digits_4.png
new file mode 100644
index 0000000000000000000000000000000000000000..cdc8cf37e3e0a0f9e0fbf5ab771289953420159f
GIT binary patch
literal 1620
zcmeAS@N?(olHy`uVBq!ia0vp^2SAvE8Azrw%`pX1oCO|{#S9EG5g^QXcE<BFKtah8
z*NBqf{Irtt#G+J&^73-M%)IR4<ivthz5Jr|+3#$m7#J8o1^9%x{{R0UsD2cToDkSK
z)#M}4w@XWc{DK)6nV4Bv+1NQaxwv_F`2~c8MMT9VB&DR~<P{W^l-1NVG_`c}^bL%R
zO)RW!?Hrw)U0mHgy}W&V{enV5!y+Q1;u4aQQ_|9Na`THz%gQUO>zkTe+uFPPCr+9?
zb^6R%^A{{yvTXT^Rjb#m-LP@f=IuLn?cTHRz`;X@kDWMq>hzfl7cX7Ce)HDtJ9i&E
zeDwIq^A|5)y?*=t!^cmbzkL1n{m0K=zyJLG=fAE&kAZ>N$kW9!q~g}wJJ0=v6GV<a
zydAYBB#<RWV+Z?#xQ^%oeHX#+_p0-k=B;H83=HJDcI$Wjud5O!?|oU$`JVgfS2Ukx
z)}ANRy9#8E7y5-=oWm2#`{?iC`&l1eF}y#&fBibfiNUX=FD%)|xb>B^!QRv6316y9
zc{M85tYiGEw=(~L-B;d-#rqgP*ZpAY`M+cxW9#{=rV8)dezC~}-EUa?N_vCAYiWb8
zt9P;SR4-n~`1AV}Q-va@TIRA9`3E-5$#+O?-^Dg%+p27bgUY469dQBo8*G7kqH3Ab
z>b~=8{9XYv5UAz-E}(%S_Z!XvB^7`Me%!o^O=Rg6(}V-DKy5PN_Z!{<WlWw+2V7jZ
zj!`)ZD09IXC^HWzbN7{W!18^J#=B~mkJSWRZ&36<yxyz)5o6NzL+{V8%{s~~WAG=+
zghMW2^22|V1#J%0II|V1>lHL`w(%&1>J&6A)Ian-Us}DO;h*{8_vg<DS~xtJ@sPh_
z?*m3Dp6}+IatSBTfB1dg^&`XOeXaNB%V-oZczfPA3VOgWZPLElt^<rZs<mYsA260l
z+BKMQ$sGu~Brj&uuyo0Op~K7(Ucc0vS@{w)U*4a}B?FWy4+EOF{~_m|pbre$yz&mW
zS@?mH{a|hP`yMmu_@4;b2sZL|#6e~WuU}_!4l-YnwrjY?2{QS;2*_l6>7yW%Q=C9f
z__tl%fCnhG-CxYcVev!GKj+sgzfe9<<jl6w@dLxummhwA2b&(>_YmmPzw`YQSRB4A
zddO+x^?{*nl3lE71%tEa{Ak4rps(WfD;kQNJ?mXQfD8_k0l6(+3}|z}rT<Sk?`#LD
zoC(wbRH+Rj?`u>vOuGK?`~1#Fpin4=I4HF90pqi_`~OoXF)*z<JpVxV5%UL*dov&Y
zm$kn8_Wbn!<qrDmXE88wC^X<BUX*oil8dTf+_v=gd~+8@TjK-z?TUDGlpMI4@*=C{
fu|?nOsehSVd%_Jq`8>D{D%?C>{an^LB{Ts5^q}h4

literal 0
HcmV?d00001

diff --git a/assets/skins/digits_5.png b/assets/skins/digits_5.png
new file mode 100644
index 0000000000000000000000000000000000000000..15390e35eb432931e83717095888ebae95066a17
GIT binary patch
literal 2813
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
K=$31{y!;o9>FGfL

literal 0
HcmV?d00001

diff --git a/assets/skins/digits_6.png b/assets/skins/digits_6.png
new file mode 100644
index 0000000000000000000000000000000000000000..615f03eb1b4f4451363801d259718cb29e6fa078
GIT binary patch
literal 3220
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

literal 0
HcmV?d00001

diff --git a/assets/skins/digits_7.png b/assets/skins/digits_7.png
new file mode 100644
index 0000000000000000000000000000000000000000..ce3662c677011ade96c397862d521fd346150c1b
GIT binary patch
literal 1911
zcmeAS@N?(olHy`uVBq!ia0vp^2SAvE8Azrw%`pX1oCO|{#S9EG5g^QXcE<BFKtah8
z*NBqf{Irtt#G+J&^73-M%)IR4<ivthz5Jr|+3#$m7#Nte1AIbU|Ns9FR6hzvLx5li
z=+Ai|0#vl4B*-tAfsu)sg_Vt+gOi(wmycgiNLW-tN?Jx%PF_J#NkdahTSrgd(8$=-
z%)-jr*1^%q+11V6%iG7-KOitTG%O-AIyNpLDLExIEh954J2x-Cps=X8q_nKOqOz*C
zuD+qMxvjmUtGlPKf5POc)27dyJ8%Aig^Lz1S-N87s@3Z^Y}~YY>$dGXcI`iK@X+C-
z$4{O)cmC4lD_5^wzj^ESoxAt$KX~})>9glAUcP$$=I#5BpFV&2`u)exU%&tS{iivh
z+M0oZh11i;F+@W0?ZLm*SD9tl9z35DmY#iiBJb=FlUqp_Cut~e+q0}q$F)PV@A`@>
zS(iUuI&C1Y<GuNY(6XG%H^0^Xv-#g3zwi9cb?aXLe0azF6d3#q&z?Oo>_w9s)2;;*
z8}u?%7H~^((v!>QEdJ%<>}I`;$IUuk0wovcI%+nl?FyK+pmm9`DwmbVwuK>%%qPR9
zyji>W`XLL^lVUS=uJ$<EZ4hkjcU0TJxW1u_>CPViqyKo$YzZz@;Wq9K7MXMIpif;(
z(?XjwDfY_~*2v|>Eqmald}oc8(cYcx57g=#n`8?nzg+x4;f;;|!35DeCb6ki$y*D8
zjn8~Zi%MAD-t>0E=9x|BjS4nDF}nP_Qt(cSzv12_<2P>>C0M_?Q#keI+*5~q-&HUB
zo-X@lkMqIi4V%>xtJo9LA97rl-Y-{nZ)t+^n>DkNtL7i_d+P7={!-G7%I2oB8<{#r
zdyOS`tdvNpGS*H=S7*JuA=v)pm%6oWbK|(o4xFnMnbR`&j=|;G(VW)ngFXnpG4V0n
zyK;8o^7&17Hx%2mCUZYbyVoyb!))yzT#(3kCnSE!0_L)B0R`)r@?NQFR<M+P3;y6N
zmKSy==!3x<ndJ}u*zDM8yzl|%jhD+GB&pt6<D*f*SmqaC5XfwPHsnp?Tzw6VdmQGz
zAu?@q<+Nr!d^SyzYhUABCehgsp6xm<(xcljTTd&lefH1&fd<zZ%=?2rs=na~xX5OH
zT8Qi4se`_aU9|<lmX1e@c2xFs<tIMp5uIDG*<@kDI=;MJD}Qk187&SeIpE7Jdb#_-
zGh3~`gT6;qwQfB~lNJ4c?Z8<@tzQq9z2Xw>KYW%=D=oiacK=EXPV<}hSKeSVFApx#
zzVl}3Bb_%q!5jJWrUh+c%Zpp|XuiyyIm;G_=Vf(;*l?S_*4)XP#})EtV&iN@t-eFP
zu}(+Dc4RJ3vAiR*C`pOgcxIuN-+{A6US)^RPM)%+b+-Qsk52`~^STswtX%qp;m(%8
zPcnBzG$MJ;n?qD8XRMsJFi9lu-O?redAl?!dGo3?GMi@$dgZmxtZ_P;!<QDNX~}MG
zt@*NfcJh=xoaXxjE-@N+3wuQ+Jd?|Mm5`>bdRcPD&k2(hcl?|+>9N7&pR*@1ow*Wx
znbY|7iklq9)+;ibW;S2Ba_CI?6p_szCe2)uB9fN3D2*X4EV!5@ZQi11xifBhpVgc3
za&emRnK?_-Z1<!rUzyo9T~);N!0D*2RS%Xf^!+RV$+7EN|1<O)@77}Sj+O<Lex9y=
JF6*2UngA><ZFv9y

literal 0
HcmV?d00001

diff --git a/assets/skins/digits_8.png b/assets/skins/digits_8.png
new file mode 100644
index 0000000000000000000000000000000000000000..9537319ebf2eef911600a78417fc8ef7df21ae1f
GIT binary patch
literal 3206
zcmeH}_ct4g8^)t%kQ$8@qeit+vnsfD5Cl;oh|=0b6hV|)t=P1;w{}9+9=RymYQ?5C
zYXy}qM6IfMjZ#|Q-hbnJ?t9MXea?B#`^)?M^rYF^n1i?>+yDRogtRb4|JJU5;bQ&0
zea;lZehZLb;T#44NMQekWh8&)?Qc_zh`<u<gMEn+9-%&fh=>Rk|Db>{FAsu`N^q!O
z!KNMr064Q`YmGsio}T``|8M?F;Qu&*7Lc3L@AnRfXd8O~%NbTSb`DN1AU6*$=qw+<
zfZ#c>kg$lT7(`q`QtG_4jI7)R`HPnnE-NajsH$DnfN5%J|DmI+r*B|r1UEJ@MVOge
zAT6z|Q8w3X?a=lZ2S+EY^K}>38#mqDJv_aAeEo3#_<&nM!Gw^|Fk<-ah{!up(J`@i
z@5Pf65|ffsQq$5i?mzhR;iJr~?3~=Zd@`k=@Nv<T;*!#`@`}o;>Kf|bwRQDR8ycIQ
zJ%7>s@>L71wXMCQv%9DF^_#x_fx)5Sw<Dut;}i7Bsp)q!jQ1Zte)>E+H_u%7vbeOo
zvif!H+xo`l*7nXnyL<Zw-w%&|9H0FBRhIiJ7XaXrMw-GgqGB7}{zS|Y3&(tfI{B|`
zc_qPKw2`bCFz|JfFoOG01+=tS$)_eA3-NcJx-5OY0gGbyvHwfB0VoYNWkbK<rr-nu
zszu+E+>M$qXkH+D&(7%=9TYmskdNc$+9S3L_4pt#{M2d;N{6^nM1KF$tut=M$G0+k
zgML|R4v5rG9>F$+tW^2vjn!P6eSg@~reJbaFeJoMOx^FJfDXUH(YMU6KeIxvv=DpN
zSf{3h+O>B$;jV0F^!<d)aFu$&>+-2}fAWb;T5h;Z(ghT|b(^Q??Ce?BWjTz!3`<<7
zj=o)fX<2-es7E9E%qkhqRT@fc+iC{2XB-I^Ka|<*wv1Xl<cd^X3Xj4CDn_pNmF;1W
zs*wuX&vK>ymg3pc_-ML?kcxNu5NqV7l#y~tM`-eriy$*zg>$vQX@N=0j@_F$|7E@@
z_dMO{4}udxF*X<EG*UH(uTRL}Fk5Xksbf;I(S1fzuFvAHTsfoClGAASkNzv!9e%Gx
zyH}o<y(*f{xsESf@bZ;$RZH@vMkpUnKW04!(E`?XlRPLj7RfIT6EyfoC36!`{SAJ+
z;6mvE0t_ou+8WMvD0?Y`!2R8hQa-KG^TtgERrQ8Su&1SXq^wHq#@V4?0IS|=N>Y^k
zB6?p;Nx5tls3H9-o=RjWR4y+8Aek782{0B}vTURd$#pbCsnqgT`f`;HRxW#Ck6`k_
z($sMSOT2MIV|HeD>gG*+J?X(r4HPI%D}R>#>8yBkbtJ^*BrWsU{fnqj!u;#U+13dU
zo`Fq2bfs<Ct8;3O+7Wn13yWnrHStge&~LVEft>-Za+fP~Hh&|_(1v$Iw08xC#=838
z+>YI31V-<ycq<gk=a*~0!^6N@!3_!rD;69X10}_xqiv`+d>&qc?9)KPB9tA5a{pqE
z*-Jd9fLV{v5f<RC>`E)av~lT1LnC=?l*&9c*7Z>E8-AvF1XB7z!`1xsqtqZJp{-uD
zrx^QEP3pyt)O7!beL*2rSqc&}6;7&S!I%cYdsTF;-u&Gl{9R1wQfr9}ato~vIEX_I
z{yM03BS^|4SQr6u>6s><?Vh~epW;msue7t*WD$9HbOUd|+XX_JL!*>gS27ABDW$&%
z{i0O-?hm$YP>Ef1^-z*aGdkkdPX1oxiFs9PZc%w{o7^XQ1<9;Oeyg)3cBVf^LtSd~
zNbKi#^-s_9<33J;gSZ3BIy+XmBVItupLD#v_c1eK!qD$&@^R+w*Sz#^%%sGnz5cYD
z+XL;>d+;5hZR@AKd#-Vck<dHr`prsg!Jt2k_;Ma5tOzy@f6eI$+BQka5r~q>%mUoi
za6zcnTHaHoFF!8TvTQ2o3UjKjFN-jc<PEN<qn5qYtmxK7J*h5T8AUxvFi(~$QJrn$
zy@_iqj8o{8+-yCN{&|ipo;cj+G~whz=|P2zjR$Wv$48SCzjl@$5UikijoTsOujCp?
zjdtS_^^x}*|G`VRswFRX=yY^GCoM~*v@2f5m0vt9G00m82n^2eXs4LTzU+3);=?Tr
z>|stio9+4NuLm($3W~Mr*}0uSVAi$qE)E9rX=#v`uB(Nm6zG0pj%4<<4I=j9wC%wi
zd+b2zx*Mx)XTcCOT0;0X+F^nd)N;V<u%gq26?R~<;27aKn58a;TQ%iAE_vDxL*_Pl
zj8}+apBO1w1By~m6N4C2k;}!a8T@b8E1=>w-cx8I=lybfVl`00*?PiPlnl4iEcACm
zpd8e#Z<SRx!6dH3Cvc*vs#U(ALK>wMrbd7v<d}@ADT##m<7(i`WUp&>Qy`iI-hdS5
z41SOjqzfBnx(@5$i%6SlFg~M(hm^X%-b~wuiL({dD8$z)Bgp)E=BPk^DsQ@u@wOUb
zqnP%n^c}yqeKv4<1S}6H@FBF|;XDW+zjZN=A0r3Fvvhl>C&R-z5jFhQRX8?`36#c7
znzJMFV4T6A#Q8C>4}7|y6v^LaKJl<*&1OPYTZCG^%3b}z_PO||4|-aVY6OEZy|oVj
z2nUt{ODKfBf3~=qizW$P>aMZs0oSE$I;T_7^W#M7vT=l=!^0l(ybRUMXr_SrMR|UJ
zZAix?4}+QxW}2db4i##R8Pp-7wpvOPOl=43!!BbQ9+=-0q84&Bd{+SV&2vb$M(vTU
z+2@})ERHigxYt@LoXNyloZun(yjRO`#kVEaM20Hjw=2}Lh{+tXyQFIKZ!r`sr+o&_
zJAl)5eE-;g@se6NXrz!V`fyhxx+&M}fW!UPB~Yw74cJlgei03U@P(Q9uMZd2UN~{0
z-&+~Rtr>AGFC5T~_s#F{ERPI2x3{JXZzeyOxc{OwlEDR5@8jsPIp6ork#W5rOSMj@
zyImz_!q+`JCZ?Mt!{E8)Q5%zUR?9Us|4OLVrx28om#6%vP(H5`X@Pn&@^s@`QbtkP
z+@Ee|wb=9MZWUq#r}^)DlZ}c@nz`&A%1$J5zB%-Vw~JNe0yTEe<a4dG9z7-`u}GI8
zA_XC2&r)3&5=HnUB1nJF=AvF+N779Nh}6CFK@7O+Ni0U<gdPwk`PrepLp5gFqfdsm
z@^ig;`vzg0j;0ki&uiV_mkVhxQsSEIoApa+HogTLj#4@Wg9-<q7&hsv2ugD5zrs5y
zNK#MwlUsTx2|NCjD~rF#JnuU8$LQQes-d1+b2puJqGPrW4pl6I?%whB_1%hd`$m3W
k7BJJyqJf{Po;dmig1^qAzMK}I{96W*2piLSV|UX30JnUGCjbBd

literal 0
HcmV?d00001

diff --git a/assets/skins/digits_9.png b/assets/skins/digits_9.png
new file mode 100644
index 0000000000000000000000000000000000000000..b3439c71d864477b67e50f30a8acb0cac08650d0
GIT binary patch
literal 3217
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
Cqm5Jm

literal 0
HcmV?d00001

diff --git a/assets/translations/en.json b/assets/translations/en.json
new file mode 100644
index 0000000..720162c
--- /dev/null
+++ b/assets/translations/en.json
@@ -0,0 +1,15 @@
+{
+  "app_name": "Suguru",
+
+  "page_home": "Home",
+  "page_game": "Game",
+
+  "settings_title": "Settings",
+  "settings_label_theme": "Theme mode",
+
+  "about_title": "About",
+  "about_content": "Simple Suguru Game. Easy to play, easy to enjoy.",
+  "about_version": "Version: {version}",
+
+  "": ""
+}
diff --git a/assets/translations/fr.json b/assets/translations/fr.json
new file mode 100644
index 0000000..14843b6
--- /dev/null
+++ b/assets/translations/fr.json
@@ -0,0 +1,15 @@
+{
+  "app_name": "Suguru",
+
+  "page_home": "Accueil",
+  "page_game": "Jeu",
+
+  "settings_title": "Réglages",
+  "settings_label_theme": "Thème de couleurs",
+
+  "about_title": "Informations",
+  "about_content": "Jeu de Suguru simple, facile à jouer, facile à apprécier.",
+  "about_version": "Version : {version}",
+
+  "": ""
+}
diff --git a/assets/ui/button_help.png b/assets/ui/button_help.png
new file mode 100644
index 0000000000000000000000000000000000000000..35c7f62cbd253995a8b152d49d7f2c8930c82769
GIT binary patch
literal 4778
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
S?f?5q0ZegLhP4K+3I7MG5M0Rs

literal 0
HcmV?d00001

diff --git a/assets/ui/button_show_conflicts.png b/assets/ui/button_show_conflicts.png
new file mode 100644
index 0000000000000000000000000000000000000000..526d5f04b23004104163117592929060c4b38af6
GIT binary patch
literal 3088
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
R8vpk#!(j=SDr48E{{g)aJvjgX

literal 0
HcmV?d00001

diff --git a/assets/ui/cell_empty.png b/assets/ui/cell_empty.png
new file mode 100644
index 0000000000000000000000000000000000000000..ccf68cb815852c4470ac3239588c86755459b0f1
GIT binary patch
literal 170
zcmeAS@N?(olHy`uVBq!ia0vp^2SAvS8AxUb{c{0QoCO|{#S9EG5g^QXcE<BFKtah8
z*NBqf{Irtt#G+J&^73-M%)IR4<ivthz5Jr|+3#$mfQpy{d_r9R|Np=Ii1Y~{m$4+s
zFPOpM*^M+HN7~cHF+@W0?Lk9EAn%aE@8xm4{0TrNLxGOa0S3l)_KWX8JWp3Ymvv4F
FO#l;MFmwO_

literal 0
HcmV?d00001

diff --git a/assets/ui/game_win.png b/assets/ui/game_win.png
new file mode 100644
index 0000000000000000000000000000000000000000..876334279c1711b349a62131a33607eecf924eb6
GIT binary patch
literal 7937
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

literal 0
HcmV?d00001

diff --git a/assets/ui/placeholder.png b/assets/ui/placeholder.png
new file mode 100644
index 0000000000000000000000000000000000000000..814df31be6ddc4275ebe4490c79365578dbef1f0
GIT binary patch
literal 170
zcmeAS@N?(olHy`uVBq!ia0vp^2SAvS8AxUb{c{0QoCO|{#S9G6r$CrdZsi1VprB-l
zYeY$Kep*R+Vo@qXd3m{BW?pu2a$-TMUVc&f>~}U&Kt;>}J|V9E|NmcpMEV4f%UBZR
z7tG-B>_!@pBkk$p7$PD0_MjmnkatMo_wqPi{sbVCp+HCI00Uz?`^9%4o~Nsy%Q~lo
FCIGwBFRTCn

literal 0
HcmV?d00001

diff --git a/assets/ui/skin_digits.png b/assets/ui/skin_digits.png
new file mode 100644
index 0000000000000000000000000000000000000000..3d4e7b5518d079fe7a742a149ad9846eaab2f45b
GIT binary patch
literal 3659
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

literal 0
HcmV?d00001

diff --git a/fastlane/metadata/android/en-US/changelogs/1.txt b/fastlane/metadata/android/en-US/changelogs/1.txt
new file mode 100644
index 0000000..81c19db
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/1.txt
@@ -0,0 +1 @@
+First playable version.
diff --git a/fastlane/metadata/android/en-US/full_description.txt b/fastlane/metadata/android/en-US/full_description.txt
new file mode 100644
index 0000000..61775a6
--- /dev/null
+++ b/fastlane/metadata/android/en-US/full_description.txt
@@ -0,0 +1,17 @@
+Simple Suguru Game:
+
+This simple suguru game is aimed for kids (but not only).
+
+You can play and have fun even if you can't read!
+
+With a deliberately limited number of game options, everyone can understand how to play and how to adapt this game to his needs.
+
+You can choose:
+#   difficulty: easy, medium, hard
+#   size: small (easy, for kids), medium, large
+
+Some help can be provided with two buttons:
+#   "tip": will select next fillable cell on first tap, will fill this cell with right value on second tap
+#   "conflicts": will show conflicting cells
+
+Every grid has one unique solution. No assumption or guessing is needed to solve grids.
diff --git a/fastlane/metadata/android/en-US/images/featureGraphic.png b/fastlane/metadata/android/en-US/images/featureGraphic.png
new file mode 100644
index 0000000000000000000000000000000000000000..7658e219b7f70f452e5898f82e7d97033fa746d5
GIT binary patch
literal 214
zcmeAS@N?(olHy`uVBq!ia0y~yU;#22zc4ZbshKa%W&kP90*}aI1_r*vAk26?e?<yV
zP_o1|q9iy!t)x7$D3zhSyj(9cFS|H7u^?41zbJk7I~ysWBIW>}5Z6C<|1%jp-U#G|
wc)B=-NJzdt$jAufH7)qJzRcqQkVOI5A^!Ud17oR-Ml{F}Pgg&ebxsLQ0CEK_VE_OC

literal 0
HcmV?d00001

diff --git a/fastlane/metadata/android/en-US/images/icon.png b/fastlane/metadata/android/en-US/images/icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..5802505d9b9876584d8148e1ccbea64791a405ce
GIT binary patch
literal 14980
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

literal 0
HcmV?d00001

diff --git a/fastlane/metadata/android/en-US/short_description.txt b/fastlane/metadata/android/en-US/short_description.txt
new file mode 100644
index 0000000..98a1802
--- /dev/null
+++ b/fastlane/metadata/android/en-US/short_description.txt
@@ -0,0 +1 @@
+Simple Suguru Game. Easy to play, easy to enjoy.
diff --git a/fastlane/metadata/android/en-US/title.txt b/fastlane/metadata/android/en-US/title.txt
new file mode 100644
index 0000000..549862d
--- /dev/null
+++ b/fastlane/metadata/android/en-US/title.txt
@@ -0,0 +1 @@
+Simple Suguru Game
diff --git a/fastlane/metadata/android/fr-FR/changelogs/1.txt b/fastlane/metadata/android/fr-FR/changelogs/1.txt
new file mode 100644
index 0000000..2cb5912
--- /dev/null
+++ b/fastlane/metadata/android/fr-FR/changelogs/1.txt
@@ -0,0 +1 @@
+Première version jouable.
diff --git a/fastlane/metadata/android/fr-FR/full_description.txt b/fastlane/metadata/android/fr-FR/full_description.txt
new file mode 100644
index 0000000..148ea28
--- /dev/null
+++ b/fastlane/metadata/android/fr-FR/full_description.txt
@@ -0,0 +1,17 @@
+Jeu de Suguru simple :
+
+Ce jeu de suguru simple est à destination des enfants (mais pas seulement).
+
+Il est possible d'y jouer et de s'amuser même sans savoir lire.
+
+Avec un choix volontairement limité dans les options, chacun peut découvrir et apprendre comment jouer et comment adapter le jeu à ses envies.
+
+Il est possible de choisir :
+#   la difficulté du jeu : facile, moyen, difficile (nombre de cases vides au début de la partie)
+#   le taille de la grille : petit (très facile, pour petits débutants), moyen, grand
+
+Un coup de pouce peut être donné grâce à deux boutons :
+#   "conseil" : sélectionne la prochaine case à remplir au premier appui, renseigne la bonne valeur dans cette case au second appui
+#   "conflits" : affiche les cases en conflit
+
+Chaque grille a une solution unique. Aucune hypothèse ou supposition n'est nécessaire pour résoudre les grilles.
diff --git a/fastlane/metadata/android/fr-FR/short_description.txt b/fastlane/metadata/android/fr-FR/short_description.txt
new file mode 100644
index 0000000..f3ff34b
--- /dev/null
+++ b/fastlane/metadata/android/fr-FR/short_description.txt
@@ -0,0 +1 @@
+Jeu de Suguru simple, facile à jouer, facile à apprécier.
diff --git a/fastlane/metadata/android/fr-FR/title.txt b/fastlane/metadata/android/fr-FR/title.txt
new file mode 100644
index 0000000..e1c1fb4
--- /dev/null
+++ b/fastlane/metadata/android/fr-FR/title.txt
@@ -0,0 +1 @@
+Jeu de Suguru simple
diff --git a/fdroid_metadata.yml b/fdroid_metadata.yml
new file mode 100644
index 0000000..a17f75d
--- /dev/null
+++ b/fdroid_metadata.yml
@@ -0,0 +1,34 @@
+AuthorName:   'Benoît Harrault'
+Categories:
+  - Games
+Name:         Simple Suguru Game
+AutoName:     suguru
+License:      GPL-3.0-only
+WebSite:      'https://git.harrault.fr/android/org.benoitharrault.suguru'
+SourceCode:   'https://git.harrault.fr/android/org.benoitharrault.suguru'
+IssueTracker: 'https://git.harrault.fr/android/org.benoitharrault.suguru/issues'
+Changelog:    'https://git.harrault.fr/android/org.benoitharrault.suguru/-/tags'
+Summary:      Simple Suguru Game, easy to play, easy to enjoy
+Description:  |
+  Simple Suguru Game:
+
+  This simple suguru game is aimed for kids (but not only).
+
+  You can play and have fun even if you can't read!
+
+  With a deliberately limited number of game options, everyone can understand how to play and how to adapt this game to his needs.
+
+  You can choose:
+  #   difficulty: easy, medium, hard, nightmare
+  #   size: 2x2 (very easy, for kids), 3x2 (easy), 3x3 (standard), 4x4 (why?)
+  #   tiles theme: digits (standard), pictures (for kids, several themes available)
+
+  Some help can be provided with two buttons:
+  #   "tip": will select next fillable cell on first tap, will fill this cell whith right value on second tap
+  #   "conflicts": will show conflicting cells
+
+  Every grid has one unique solution. No assumption or guessing is needed to solve grids.
+
+RepoType:     git
+Repo:         'https://git.harrault.fr/android/org.benoitharrault.suguru.git'
+FdroidAppUrl: 'https://f-droid.org/fr/packages/org.benoitharrault.suguru/'
diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 0000000000000000000000000000000000000000..e708b1c023ec8b20f512888fe07c5bd3ff77bb8f
GIT binary patch
literal 59203
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
E2O(~oYXATM

literal 0
HcmV?d00001

diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..0d18421
--- /dev/null
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,5 @@
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
diff --git a/gradlew b/gradlew
new file mode 100755
index 0000000..4f906e0
--- /dev/null
+++ b/gradlew
@@ -0,0 +1,185 @@
+#!/usr/bin/env sh
+
+#
+# Copyright 2015 the original author or authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+##############################################################################
+##
+##  Gradle start up script for UN*X
+##
+##############################################################################
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+    ls=`ls -ld "$PRG"`
+    link=`expr "$ls" : '.*-> \(.*\)$'`
+    if expr "$link" : '/.*' > /dev/null; then
+        PRG="$link"
+    else
+        PRG=`dirname "$PRG"`"/$link"
+    fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/" >/dev/null
+APP_HOME="`pwd -P`"
+cd "$SAVED" >/dev/null
+
+APP_NAME="Gradle"
+APP_BASE_NAME=`basename "$0"`
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn () {
+    echo "$*"
+}
+
+die () {
+    echo
+    echo "$*"
+    echo
+    exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "`uname`" in
+  CYGWIN* )
+    cygwin=true
+    ;;
+  Darwin* )
+    darwin=true
+    ;;
+  MINGW* )
+    msys=true
+    ;;
+  NONSTOP* )
+    nonstop=true
+    ;;
+esac
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+    if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+        # IBM's JDK on AIX uses strange locations for the executables
+        JAVACMD="$JAVA_HOME/jre/sh/java"
+    else
+        JAVACMD="$JAVA_HOME/bin/java"
+    fi
+    if [ ! -x "$JAVACMD" ] ; then
+        die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+    fi
+else
+    JAVACMD="java"
+    which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
+    MAX_FD_LIMIT=`ulimit -H -n`
+    if [ $? -eq 0 ] ; then
+        if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+            MAX_FD="$MAX_FD_LIMIT"
+        fi
+        ulimit -n $MAX_FD
+        if [ $? -ne 0 ] ; then
+            warn "Could not set maximum file descriptor limit: $MAX_FD"
+        fi
+    else
+        warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+    fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+    GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin or MSYS, switch paths to Windows format before running java
+if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
+    APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+    CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+
+    JAVACMD=`cygpath --unix "$JAVACMD"`
+
+    # We build the pattern for arguments to be converted via cygpath
+    ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+    SEP=""
+    for dir in $ROOTDIRSRAW ; do
+        ROOTDIRS="$ROOTDIRS$SEP$dir"
+        SEP="|"
+    done
+    OURCYGPATTERN="(^($ROOTDIRS))"
+    # Add a user-defined pattern to the cygpath arguments
+    if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+        OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+    fi
+    # Now convert the arguments - kludge to limit ourselves to /bin/sh
+    i=0
+    for arg in "$@" ; do
+        CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+        CHECK2=`echo "$arg"|egrep -c "^-"`                                 ### Determine if an option
+
+        if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then                    ### Added a condition
+            eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+        else
+            eval `echo args$i`="\"$arg\""
+        fi
+        i=`expr $i + 1`
+    done
+    case $i in
+        0) set -- ;;
+        1) set -- "$args0" ;;
+        2) set -- "$args0" "$args1" ;;
+        3) set -- "$args0" "$args1" "$args2" ;;
+        4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+        5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+        6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+        7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+        8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+        9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+    esac
+fi
+
+# Escape application args
+save () {
+    for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
+    echo " "
+}
+APP_ARGS=`save "$@"`
+
+# Collect all arguments for the java command, following the shell quoting and substitution rules
+eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
+
+exec "$JAVACMD" "$@"
diff --git a/gradlew.bat b/gradlew.bat
new file mode 100644
index 0000000..ac1b06f
--- /dev/null
+++ b/gradlew.bat
@@ -0,0 +1,89 @@
+@rem
+@rem Copyright 2015 the original author or authors.
+@rem
+@rem Licensed under the Apache License, Version 2.0 (the "License");
+@rem you may not use this file except in compliance with the License.
+@rem You may obtain a copy of the License at
+@rem
+@rem      https://www.apache.org/licenses/LICENSE-2.0
+@rem
+@rem Unless required by applicable law or agreed to in writing, software
+@rem distributed under the License is distributed on an "AS IS" BASIS,
+@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+@rem See the License for the specific language governing permissions and
+@rem limitations under the License.
+@rem
+
+@if "%DEBUG%" == "" @echo off
+@rem ##########################################################################
+@rem
+@rem  Gradle startup script for Windows
+@rem
+@rem ##########################################################################
+
+@rem Set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" setlocal
+
+set DIRNAME=%~dp0
+if "%DIRNAME%" == "" set DIRNAME=.
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@rem Resolve any "." and ".." in APP_HOME to make it shorter.
+for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
+
+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
+
+@rem Find java.exe
+if defined JAVA_HOME goto findJavaFromJavaHome
+
+set JAVA_EXE=java.exe
+%JAVA_EXE% -version >NUL 2>&1
+if "%ERRORLEVEL%" == "0" goto execute
+
+echo.
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:findJavaFromJavaHome
+set JAVA_HOME=%JAVA_HOME:"=%
+set JAVA_EXE=%JAVA_HOME%/bin/java.exe
+
+if exist "%JAVA_EXE%" goto execute
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:execute
+@rem Setup the command line
+
+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
+
+:end
+@rem End local scope for the variables with windows NT shell
+if "%ERRORLEVEL%"=="0" goto mainEnd
+
+:fail
+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
+rem the _cmd.exe /c_ return code!
+if  not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
+exit /b 1
+
+:mainEnd
+if "%OS%"=="Windows_NT" endlocal
+
+:omega
diff --git a/lib/config/application_config.dart b/lib/config/application_config.dart
new file mode 100644
index 0000000..5257853
--- /dev/null
+++ b/lib/config/application_config.dart
@@ -0,0 +1,178 @@
+import 'package:flutter/material.dart';
+import 'package:flutter_custom_toolbox/flutter_toolbox.dart';
+
+import 'package:suguru/cubit/activity/activity_cubit.dart';
+
+import 'package:suguru/ui/pages/game.dart';
+
+import 'package:suguru/ui/parameters/parameter_painter_board_size.dart';
+import 'package:suguru/ui/parameters/parameter_painter_difficulty_level.dart';
+
+class ApplicationConfig {
+  // activity parameter: difficulty level
+  static const String parameterCodeDifficultyLevel = 'activity.difficultyLevel';
+  static const String difficultyLevelValueEasy = 'easy';
+  static const String difficultyLevelValueMedium = 'medium';
+  static const String difficultyLevelValueHard = 'hard';
+
+  // activity parameter: board size
+  static const String parameterCodeBoardSize = 'activity.boardSize';
+  static const String boardSizeValueSmall = 'small';
+  static const String boardSizeValueMedium = 'medium';
+  static const String boardSizeValueLarge = 'large';
+
+  // activity parameter: skin
+  static const String parameterCodeSkin = 'global.skin';
+  static const String skinValueDigits = 'digits';
+
+  static const int defaultTipCountDownValueInSeconds = 20;
+
+  // activity pages
+  static const int activityPageIndexHome = 0;
+  static const int activityPageIndexGame = 1;
+
+  static final ApplicationConfigDefinition config = ApplicationConfigDefinition(
+    appTitle: 'Suguru',
+    activitySettings: [
+      // difficulty level
+      ApplicationSettingsParameter(
+        code: parameterCodeDifficultyLevel,
+        values: [
+          ApplicationSettingsParameterItemValue(
+            value: difficultyLevelValueEasy,
+            color: Colors.green,
+          ),
+          ApplicationSettingsParameterItemValue(
+            value: difficultyLevelValueMedium,
+            color: Colors.orange,
+            isDefault: true,
+          ),
+          ApplicationSettingsParameterItemValue(
+            value: difficultyLevelValueHard,
+            color: Colors.red,
+          ),
+        ],
+        customPainter: (context, value) => ParameterPainterDifficultyLevel(
+          context: context,
+          value: value,
+        ),
+      ),
+
+      // board size
+      ApplicationSettingsParameter(
+        code: parameterCodeBoardSize,
+        values: [
+          ApplicationSettingsParameterItemValue(
+            value: boardSizeValueSmall,
+            color: Colors.green,
+          ),
+          ApplicationSettingsParameterItemValue(
+            value: boardSizeValueMedium,
+            color: Colors.orange,
+          ),
+          ApplicationSettingsParameterItemValue(
+            value: boardSizeValueLarge,
+            color: Colors.red,
+            isDefault: true,
+          ),
+        ],
+        customPainter: (context, value) => ParameterPainterBoardSize(
+          context: context,
+          value: value,
+        ),
+      ),
+
+      // skin
+      ApplicationSettingsParameter(
+        code: parameterCodeSkin,
+        values: [
+          ApplicationSettingsParameterItemValue(
+            value: skinValueDigits,
+            isDefault: true,
+          ),
+        ],
+        builder: ({
+          required context,
+          required itemValue,
+          required onPressed,
+          required size,
+        }) =>
+            StyledButton(
+          color: Colors.green.shade800,
+          onPressed: onPressed,
+          child: Image(
+            image: AssetImage('assets/ui/skin_${itemValue.value}.png'),
+            fit: BoxFit.fill,
+          ),
+        ),
+      ),
+    ],
+    startNewActivity: (BuildContext context) {
+      BlocProvider.of<ActivityCubit>(context).startNewActivity(context);
+      BlocProvider.of<NavCubitPage>(context)
+          .updateIndex(ApplicationConfig.activityPageIndexGame);
+    },
+    quitCurrentActivity: (BuildContext context) {
+      BlocProvider.of<ActivityCubit>(context).quitActivity();
+      BlocProvider.of<NavCubitPage>(context)
+          .updateIndex(ApplicationConfig.activityPageIndexHome);
+    },
+    deleteCurrentActivity: (BuildContext context) {
+      BlocProvider.of<ActivityCubit>(context).deleteSavedActivity();
+    },
+    resumeActivity: (BuildContext context) {
+      BlocProvider.of<ActivityCubit>(context).resumeSavedActivity();
+      BlocProvider.of<NavCubitPage>(context)
+          .updateIndex(ApplicationConfig.activityPageIndexGame);
+    },
+    navigation: ApplicationNavigation(
+      screenActivity: ScreenItem(
+        code: 'screen_activity',
+        icon: Icon(UniconsLine.home),
+        screen: ({required ApplicationConfigDefinition appConfig}) =>
+            ScreenActivity(appConfig: appConfig),
+      ),
+      screenSettings: ScreenItem(
+        code: 'screen_settings',
+        icon: Icon(UniconsLine.setting),
+        screen: ({required ApplicationConfigDefinition appConfig}) => ScreenSettings(),
+      ),
+      screenAbout: ScreenItem(
+        code: 'screen_about',
+        icon: Icon(UniconsLine.info_circle),
+        screen: ({required ApplicationConfigDefinition appConfig}) => ScreenAbout(),
+      ),
+      appBarConfiguration: AppBarConfiguration(
+        hideApplicationTitle: true,
+        pushQuitActivityButtonLeft: true,
+      ),
+      activityPages: {
+        activityPageIndexHome: ActivityPageItem(
+          code: 'page_home',
+          icon: Icon(UniconsLine.home),
+          builder: ({required ApplicationConfigDefinition appConfig}) {
+            return BlocBuilder<ActivityCubit, ActivityState>(
+              builder: (BuildContext context, ActivityState activityState) {
+                return PageParameters(
+                  appConfig: appConfig,
+                  canBeResumed: activityState.currentActivity.canBeResumed,
+                );
+              },
+            );
+          },
+        ),
+        activityPageIndexGame: ActivityPageItem(
+          code: 'page_game',
+          icon: Icon(UniconsLine.star),
+          builder: ({required ApplicationConfigDefinition appConfig}) {
+            return BlocBuilder<ActivityCubit, ActivityState>(
+              builder: (BuildContext context, ActivityState activityState) {
+                return PageGame();
+              },
+            );
+          },
+        ),
+      },
+    ),
+  );
+}
diff --git a/lib/cubit/activity/activity_cubit.dart b/lib/cubit/activity/activity_cubit.dart
new file mode 100644
index 0000000..08f1f52
--- /dev/null
+++ b/lib/cubit/activity/activity_cubit.dart
@@ -0,0 +1,189 @@
+import 'dart:async';
+import 'dart:math';
+
+import 'package:flutter/material.dart';
+import 'package:flutter_custom_toolbox/flutter_toolbox.dart';
+
+import 'package:suguru/config/application_config.dart';
+import 'package:suguru/models/activity/cell.dart';
+import 'package:suguru/models/activity/cell_location.dart';
+import 'package:suguru/models/activity/activity.dart';
+import 'package:suguru/utils/board_animate.dart';
+
+part 'activity_state.dart';
+
+class ActivityCubit extends HydratedCubit<ActivityState> {
+  ActivityCubit()
+      : super(ActivityState(
+          currentActivity: Activity.createEmpty(),
+        ));
+
+  void updateState(Activity activity) {
+    emit(ActivityState(
+      currentActivity: activity,
+    ));
+  }
+
+  void refresh() {
+    final Activity activity = Activity(
+      // Settings
+      activitySettings: state.currentActivity.activitySettings,
+      // State
+      isRunning: state.currentActivity.isRunning,
+      isStarted: state.currentActivity.isStarted,
+      isFinished: state.currentActivity.isFinished,
+      animationInProgress: state.currentActivity.animationInProgress,
+      boardAnimated: state.currentActivity.boardAnimated,
+      // Base data
+      board: state.currentActivity.board,
+      boardSizeHorizontal: state.currentActivity.boardSizeHorizontal,
+      boardSizeVertical: state.currentActivity.boardSizeVertical,
+      // Game data
+      boardConflicts: state.currentActivity.boardConflicts,
+      selectedCell: state.currentActivity.selectedCell,
+      showConflicts: state.currentActivity.showConflicts,
+      givenTipsCount: state.currentActivity.givenTipsCount,
+      buttonTipsCountdown: state.currentActivity.buttonTipsCountdown,
+    );
+    // activity.dump();
+
+    updateState(activity);
+  }
+
+  void startNewActivity(BuildContext context) {
+    final ActivitySettingsCubit activitySettingsCubit =
+        BlocProvider.of<ActivitySettingsCubit>(context);
+
+    final Activity newActivity = Activity.createNew(
+      // Settings
+      activitySettings: activitySettingsCubit.state.settings,
+    );
+
+    newActivity.dump();
+
+    updateState(newActivity);
+    refresh();
+
+    BoardAnimate.startAnimation(this, 'start');
+  }
+
+  void selectCell(CellLocation location) {
+    state.currentActivity.selectedCell = state.currentActivity.board.get(location);
+    refresh();
+  }
+
+  void unselectCell() {
+    state.currentActivity.selectedCell = null;
+    refresh();
+  }
+
+  void updateCellValue(CellLocation location, int value) {
+    final cell = state.currentActivity.board.get(location);
+
+    if (cell.isFixed == false) {
+      state.currentActivity.board.setCell(
+        location,
+        Cell(
+          location: location,
+          blockId: cell.blockId,
+          value: value,
+          isFixed: false,
+        ),
+      );
+
+      state.currentActivity.isStarted = true;
+      refresh();
+    }
+
+    if (state.currentActivity.checkBoardIsSolved()) {
+      BoardAnimate.startAnimation(this, 'win');
+      state.currentActivity.isFinished = true;
+      refresh();
+    }
+  }
+
+  void toggleShowConflicts() {
+    state.currentActivity.showConflicts = !state.currentActivity.showConflicts;
+    refresh();
+  }
+
+  void increaseGivenTipsCount() {
+    state.currentActivity.givenTipsCount++;
+    state.currentActivity.buttonTipsCountdown =
+        ApplicationConfig.defaultTipCountDownValueInSeconds;
+    refresh();
+
+    const Duration interval = Duration(milliseconds: 500);
+    Timer.periodic(
+      interval,
+      (Timer timer) {
+        if (state.currentActivity.buttonTipsCountdown == 0) {
+          timer.cancel();
+        } else {
+          state.currentActivity.buttonTipsCountdown =
+              max(state.currentActivity.buttonTipsCountdown - 1, 0);
+        }
+        refresh();
+      },
+    );
+  }
+
+  bool canBeResumed() {
+    return state.currentActivity.canBeResumed;
+  }
+
+  void quitActivity() {
+    state.currentActivity.isRunning = false;
+    refresh();
+  }
+
+  void resumeSavedActivity() {
+    state.currentActivity.isRunning = true;
+    refresh();
+  }
+
+  void deleteSavedActivity() {
+    state.currentActivity.isRunning = false;
+    state.currentActivity.isFinished = true;
+    refresh();
+  }
+
+  void updateAnimationInProgress(bool animationInProgress) {
+    state.currentActivity.animationInProgress = animationInProgress;
+    refresh();
+  }
+
+  void setAnimatedBackground(List animatedCellsPattern) {
+    for (int row = 0; row < state.currentActivity.boardSizeVertical; row++) {
+      for (int col = 0; col < state.currentActivity.boardSizeHorizontal; col++) {
+        state.currentActivity.boardAnimated[row][col] = animatedCellsPattern[row][col];
+      }
+    }
+    refresh();
+  }
+
+  void resetAnimatedBackground() {
+    for (int row = 0; row < state.currentActivity.boardSizeVertical; row++) {
+      for (int col = 0; col < state.currentActivity.boardSizeHorizontal; col++) {
+        state.currentActivity.boardAnimated[row][col] = false;
+      }
+    }
+    refresh();
+  }
+
+  @override
+  ActivityState? fromJson(Map<String, dynamic> json) {
+    final Activity currentActivity = json['currentActivity'] as Activity;
+
+    return ActivityState(
+      currentActivity: currentActivity,
+    );
+  }
+
+  @override
+  Map<String, dynamic>? toJson(ActivityState state) {
+    return <String, dynamic>{
+      'currentActivity': state.currentActivity.toJson(),
+    };
+  }
+}
diff --git a/lib/cubit/activity/activity_state.dart b/lib/cubit/activity/activity_state.dart
new file mode 100644
index 0000000..887b45e
--- /dev/null
+++ b/lib/cubit/activity/activity_state.dart
@@ -0,0 +1,15 @@
+part of 'activity_cubit.dart';
+
+@immutable
+class ActivityState extends Equatable {
+  const ActivityState({
+    required this.currentActivity,
+  });
+
+  final Activity currentActivity;
+
+  @override
+  List<dynamic> get props => <dynamic>[
+        currentActivity,
+      ];
+}
diff --git a/lib/data/game_data.dart b/lib/data/game_data.dart
new file mode 100644
index 0000000..87c6c6c
--- /dev/null
+++ b/lib/data/game_data.dart
@@ -0,0 +1,51 @@
+class GameData {
+  static const Map<String, Map<String, List<String>>> templates = {
+    // 'size': {
+    //   'level': [
+    //     '[width]x[height];[blocks];[init]',
+    //   ],
+    // },
+    'small': {
+      'easy': [
+        // ok
+        '5x5;AABBBAABBCADECCDDCCFGGGGG;0205030001000300000040003',
+      ],
+      'medium': [
+        // duplicate // to replace
+        '5x5;AAABCAADBBEEEEBEFFFBEEGGG;1000002004504000000000000',
+      ],
+      'hard': [
+        // to check
+        '5x5;AAABCAADBBEEEEBEFFFBEEGGG;1000002004504000000000000',
+      ],
+    },
+    'medium': {
+      'easy': [
+        // to check
+        '8x5;ABBBBCDDAABECCDDFAAECCGDFFEEHHGGFFEHHHIG;0005005040300404020500001040000002000500',
+      ],
+      'medium': [
+        // to check
+        '8x5;AABBCCCDAABBCCDDAEBFFGDHIIIFFJJHIIKFJJJH;2020003000000000003050005000000000001050',
+      ],
+      'hard': [
+        // to check
+        '8x5;AABCCCDDEEBBCCDDEEFFFGGDEHHFFGGGHHHIIIII;0000100500000200000500014030005001001000',
+      ],
+    },
+    'large': {
+      'easy': [
+        // duplicate // to replace
+        '5x11;ABBCCDBBCCDDBCEDDFFEGGHEEGGHEIJGHIIJHHKIJLKKILLKMMLLMMM;0003040004000000200000030200000400000003300000400520000',
+      ],
+      'medium': [
+        // to check
+        '5x11;ABBCCDBBCCDDBCEDDFFEGGHEEGGHEIJGHIIJHHKIJLKKILLKMMLLMMM;0003040004000000200000030200000400000003300000400520000',
+      ],
+      'hard': [
+        // duplicate // to replace
+        '5x11;ABBCCDBBCCDDBCEDDFFEGGHEEGGHEIJGHIIJHHKIJLKKILLKMMLLMMM;0003040004000000200000030200000400000003300000400520000',
+      ],
+    },
+  };
+}
diff --git a/lib/main.dart b/lib/main.dart
new file mode 100644
index 0000000..7e30ce2
--- /dev/null
+++ b/lib/main.dart
@@ -0,0 +1,116 @@
+import 'dart:io';
+
+import 'package:flutter/material.dart';
+import 'package:flutter/services.dart';
+import 'package:flutter_custom_toolbox/flutter_toolbox.dart';
+
+import 'package:suguru/config/application_config.dart';
+import 'package:suguru/cubit/activity/activity_cubit.dart';
+import 'package:suguru/ui/skeleton.dart';
+
+void main() async {
+  // Initialize packages
+  WidgetsFlutterBinding.ensureInitialized();
+  await EasyLocalization.ensureInitialized();
+  final Directory tmpDir = await getTemporaryDirectory();
+  Hive.init(tmpDir.toString());
+  HydratedBloc.storage = await HydratedStorage.build(
+    storageDirectory: tmpDir,
+  );
+
+  SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp])
+      .then((value) => runApp(EasyLocalization(
+            path: 'assets/translations',
+            supportedLocales: const <Locale>[
+              Locale('en'),
+              Locale('fr'),
+            ],
+            fallbackLocale: const Locale('en'),
+            useFallbackTranslations: true,
+            child: const MyApp(),
+          )));
+}
+
+class MyApp extends StatelessWidget {
+  const MyApp({super.key});
+
+  @override
+  Widget build(BuildContext context) {
+    final List<String> assets = getImagesAssets();
+    for (String asset in assets) {
+      precacheImage(AssetImage(asset), context);
+    }
+
+    return MultiBlocProvider(
+      providers: [
+        // default providers
+        BlocProvider<NavCubitPage>(
+          create: (context) => NavCubitPage(appConfig: ApplicationConfig.config),
+        ),
+        BlocProvider<NavCubitScreen>(
+          create: (context) => NavCubitScreen(),
+        ),
+        BlocProvider<ApplicationThemeModeCubit>(
+          create: (context) => ApplicationThemeModeCubit(),
+        ),
+        BlocProvider<ActivityCubit>(
+          create: (context) => ActivityCubit(),
+        ),
+        BlocProvider<ActivitySettingsCubit>(
+          create: (context) => ActivitySettingsCubit(appConfig: ApplicationConfig.config),
+        ),
+      ],
+      child: BlocBuilder<ApplicationThemeModeCubit, ApplicationThemeModeState>(
+        builder: (BuildContext context, ApplicationThemeModeState state) {
+          return MaterialApp(
+            title: ApplicationConfig.config.appTitle,
+            home: const SkeletonScreen(),
+
+            // Theme stuff
+            theme: lightTheme,
+            darkTheme: darkTheme,
+            themeMode: state.themeMode,
+
+            // Localization stuff
+            localizationsDelegates: context.localizationDelegates,
+            supportedLocales: context.supportedLocales,
+            locale: context.locale,
+            debugShowCheckedModeBanner: false,
+          );
+        },
+      ),
+    );
+  }
+
+  List<String> getImagesAssets() {
+    final List<String> assets = [];
+
+    const List<String> gameImages = [
+      'button_help',
+      'button_show_conflicts',
+      'cell_empty',
+      'game_win',
+      'placeholder',
+    ];
+
+    for (String image in gameImages) {
+      assets.add('assets/ui/$image.png');
+    }
+
+    List<String> skinImages = [];
+    for (int value = 1; value <= 9; value++) {
+      skinImages.add(value.toString());
+    }
+
+    for (String skin in ApplicationConfig.config
+        .getFromCode(ApplicationConfig.parameterCodeSkin)
+        .allowedValues) {
+      assets.add('assets/ui/skin_$skin.png');
+      for (String image in skinImages) {
+        assets.add('assets/skins/${skin}_$image.png');
+      }
+    }
+
+    return assets;
+  }
+}
diff --git a/lib/models/activity/activity.dart b/lib/models/activity/activity.dart
new file mode 100644
index 0000000..c13811d
--- /dev/null
+++ b/lib/models/activity/activity.dart
@@ -0,0 +1,430 @@
+import 'dart:math';
+
+import 'package:flutter_custom_toolbox/flutter_toolbox.dart';
+
+import 'package:suguru/config/application_config.dart';
+import 'package:suguru/cubit/activity/activity_cubit.dart';
+import 'package:suguru/data/game_data.dart';
+import 'package:suguru/models/activity/board.dart';
+import 'package:suguru/models/activity/cell.dart';
+import 'package:suguru/models/activity/cell_location.dart';
+import 'package:suguru/models/activity/types.dart';
+
+class Activity {
+  Activity({
+    // Settings
+    required this.activitySettings,
+
+    // State
+    this.isRunning = false,
+    this.isStarted = false,
+    this.isFinished = false,
+    this.animationInProgress = false,
+    this.boardAnimated = const [],
+
+    // Base data
+    required this.board,
+    required this.boardSizeHorizontal,
+    required this.boardSizeVertical,
+
+    // Game data
+    this.boardConflicts = const [],
+    this.selectedCell,
+    this.showConflicts = false,
+    this.givenTipsCount = 0,
+    this.buttonTipsCountdown = 0,
+  });
+
+  // Settings
+  final ActivitySettings activitySettings;
+
+  // State
+  bool isRunning;
+  bool isStarted;
+  bool isFinished;
+  bool animationInProgress;
+  AnimatedBoard boardAnimated;
+
+  // Base data
+  final Board board;
+  final int boardSizeHorizontal;
+  final int boardSizeVertical;
+
+  // Game data
+  ConflictsCount boardConflicts;
+  Cell? selectedCell;
+  bool showConflicts;
+  int givenTipsCount;
+  int buttonTipsCountdown;
+
+  factory Activity.createEmpty() {
+    return Activity(
+      // Settings
+      activitySettings: ActivitySettings.createDefault(appConfig: ApplicationConfig.config),
+      // Base data
+      board: Board.createEmpty(),
+      boardSizeHorizontal: 0,
+      boardSizeVertical: 0,
+      // Game data
+      givenTipsCount: 0,
+    );
+  }
+
+  factory Activity.createNew({
+    ActivitySettings? activitySettings,
+  }) {
+    final ActivitySettings newActivitySettings = activitySettings ??
+        ActivitySettings.createDefault(appConfig: ApplicationConfig.config);
+
+    final List<String> templates =
+        GameData.templates[newActivitySettings.get(ApplicationConfig.parameterCodeBoardSize)]
+                ?[newActivitySettings.get(ApplicationConfig.parameterCodeDifficultyLevel)] ??
+            [];
+    final String template = templates.elementAt(Random().nextInt(templates.length)).toString();
+
+    final List<String> templateParts = template.split(';');
+    if (templateParts.length != 3) {
+      printlog('Failed to get grid template (wrong format)...');
+      return Activity.createEmpty();
+    }
+
+    final String boardSizeAsString = templateParts[0];
+    final int boardSizeHorizontal = int.parse(boardSizeAsString.split('x')[0]);
+    final int boardSizeVertical = int.parse(boardSizeAsString.split('x')[1]);
+
+    // Build empty conflicts board
+    ConflictsCount nonConflictedBoard = [];
+    for (int row = 0; row < boardSizeVertical; row++) {
+      List<int> line = [];
+      for (int col = 0; col < boardSizeHorizontal; col++) {
+        line.add(0);
+      }
+      nonConflictedBoard.add(line);
+    }
+
+    // Build empty animated background
+    AnimatedBoard notAnimatedBoard = [];
+    for (int row = 0; row < boardSizeVertical; row++) {
+      List<bool> line = [];
+      for (int col = 0; col < boardSizeHorizontal; col++) {
+        line.add(false);
+      }
+      notAnimatedBoard.add(line);
+    }
+
+    // Build main game board
+    final Board board = Board.createEmpty();
+    board.createFromTemplate(template: template);
+
+    return Activity(
+      // Settings
+      activitySettings: newActivitySettings,
+      // State
+      isRunning: true,
+      boardAnimated: notAnimatedBoard,
+      // Base data
+      board: board,
+      boardSizeHorizontal: boardSizeHorizontal,
+      boardSizeVertical: boardSizeVertical,
+      // Game data
+      boardConflicts: nonConflictedBoard,
+      selectedCell: null,
+    );
+  }
+
+  bool get canBeResumed => isStarted && !isFinished;
+
+  bool get gameWon => isRunning && isStarted && isFinished;
+
+  bool get canGiveTip => (buttonTipsCountdown == 0);
+
+  bool checkBoardIsSolved() {
+    for (CellLocation location in board.getCellLocations()) {
+      if (board.get(location).value == 0 ||
+          board.get(location).value != board.solvedCells[location.row][location.col].value) {
+        return false;
+      }
+    }
+
+    printlog('-> ok suguru solved!');
+
+    return true;
+  }
+
+  ConflictsCount computeConflictsInBoard() {
+    final BoardCells cells = board.cells;
+    final ConflictsCount conflicts = boardConflicts;
+
+    // reset conflict states
+    for (int row = 0; row < boardSizeVertical; row++) {
+      for (int col = 0; col < boardSizeHorizontal; col++) {
+        conflicts[row][col] = 0;
+      }
+    }
+
+    // check siblings
+    for (int row = 0; row < boardSizeVertical; row++) {
+      for (int col = 0; col < boardSizeHorizontal; col++) {
+        final int value = cells[row][col].value;
+        if (value != 0) {
+          for (int deltaRow = -1; deltaRow <= 1; deltaRow++) {
+            for (int deltaCol = -1; deltaCol <= 1; deltaCol++) {
+              if (row + deltaRow >= 0 &&
+                  row + deltaRow < boardSizeHorizontal &&
+                  col + deltaCol >= 0 &&
+                  col + deltaCol < boardSizeVertical &&
+                  (deltaRow * deltaCol != 0)) {
+                final int siblingValue = cells[row + deltaRow][col + deltaCol].value;
+
+                if (siblingValue == value) {
+                  conflicts[row][col]++;
+                }
+              }
+            }
+          }
+        }
+      }
+    }
+
+    // check blocks does not contain duplicates
+    for (String blockId in board.getBlockIds()) {
+      List<int> values = [];
+      List<int> duplicateValues = [];
+      for (int row = 0; row < boardSizeVertical; row++) {
+        for (int col = 0; col < boardSizeHorizontal; col++) {
+          if (cells[row][col].blockId == blockId) {
+            final int value = cells[row][col].value;
+            if (value != 0) {
+              if (!values.contains(value)) {
+                values.add(value);
+              } else {
+                duplicateValues.add(value);
+              }
+            }
+          }
+        }
+      }
+      for (int duplicateValue in duplicateValues) {
+        for (int row = 0; row < boardSizeVertical; row++) {
+          for (int col = 0; col < boardSizeHorizontal; col++) {
+            if (cells[row][col].blockId == blockId &&
+                cells[row][col].value == duplicateValue) {
+              conflicts[row][col]++;
+            }
+          }
+        }
+      }
+    }
+
+    return conflicts;
+  }
+
+  void showTip(ActivityCubit activityCubit) {
+    bool tipGiven = false;
+
+    if (selectedCell == null) {
+      // no selected cell -> pick one
+      tipGiven = helpSelectCell(activityCubit);
+    } else {
+      // currently selected cell -> set value
+      tipGiven = helpFillCell(activityCubit);
+    }
+
+    if (tipGiven) {
+      activityCubit.increaseGivenTipsCount();
+    }
+  }
+
+  bool helpSelectCell(ActivityCubit activityCubit) {
+    // pick one of wrong value cells, if found
+    final List<List<int>> wrongValueCells = getCellsWithWrongValue();
+    if (wrongValueCells.isNotEmpty) {
+      printlog('pick from wrongValueCells');
+      return pickRandomFromList(activityCubit, wrongValueCells);
+    }
+
+    // pick one of conflicting cells, if found
+    final List<List<int>> conflictingCells = getCellsWithConflicts();
+    if (conflictingCells.isNotEmpty) {
+      printlog('pick from conflictingCells');
+      return pickRandomFromList(activityCubit, conflictingCells);
+    }
+
+    // pick one from "easy" cells (unique empty cell in block)
+    final List<List<int>> easyFillableCells = board.getLastEmptyCellsInBlocks();
+    if (easyFillableCells.isNotEmpty) {
+      printlog('pick from easyFillableCells');
+      return pickRandomFromList(activityCubit, easyFillableCells);
+    }
+
+    // pick one from cells with unique non-conflicting candidate value
+    final List<List<int>> candidateCells = board.getEmptyCellsWithUniqueAvailableValue();
+    if (candidateCells.isNotEmpty) {
+      printlog('pick from candidateCells');
+      return pickRandomFromList(activityCubit, candidateCells);
+    }
+
+    // pick one from "only cell in this block for this value"
+    final List<List<int>> onlyCellsWithoutConflict = board.getOnlyCellInBlockWithoutConflict();
+    if (onlyCellsWithoutConflict.isNotEmpty) {
+      printlog('pick from onlyCellsWithoutConflict');
+      return pickRandomFromList(activityCubit, onlyCellsWithoutConflict);
+    }
+
+    printlog('no easy cell to select...');
+    return false;
+  }
+
+  List<List<int>> getCellsWithWrongValue() {
+    final BoardCells cells = board.cells;
+    final BoardCells cellsSolved = board.solvedCells;
+
+    List<List<int>> cellsWithWrongValue = [];
+
+    for (int row = 0; row < boardSizeVertical; row++) {
+      for (int col = 0; col < boardSizeHorizontal; col++) {
+        if (cells[row][col].value != 0 &&
+            cells[row][col].value != cellsSolved[row][col].value) {
+          cellsWithWrongValue.add([row, col]);
+        }
+      }
+    }
+
+    return cellsWithWrongValue;
+  }
+
+  List<List<int>> getCellsWithConflicts() {
+    List<List<int>> cellsWithConflict = [];
+
+    for (int row = 0; row < boardSizeVertical; row++) {
+      for (int col = 0; col < boardSizeHorizontal; col++) {
+        if (boardConflicts[row][col] != 0) {
+          cellsWithConflict.add([row, col]);
+        }
+      }
+    }
+
+    return cellsWithConflict;
+  }
+
+  bool pickRandomFromList(ActivityCubit activityCubit, List<List<int>> cellsCoordinates) {
+    if (cellsCoordinates.isNotEmpty) {
+      cellsCoordinates.shuffle();
+      final List<int> cell = cellsCoordinates[0];
+      activityCubit.selectCell(CellLocation.go(cell[0], cell[1]));
+      return true;
+    }
+
+    return false;
+  }
+
+  bool helpFillCell(ActivityCubit activityCubit) {
+    // Will clean cell if no eligible value found
+    int eligibleValue = 0;
+
+    // Ensure there is only one eligible value for this cell
+    int allowedValuesCount = 0;
+    final int maxValueForThisCell = board.getMaxValueForBlock(selectedCell?.blockId);
+    for (int value = 1; value <= maxValueForThisCell; value++) {
+      if (board.isValueAllowed(selectedCell?.location, value)) {
+        allowedValuesCount++;
+        eligibleValue = value;
+      }
+    }
+
+    if (allowedValuesCount == 1) {
+      activityCubit.updateCellValue(selectedCell!.location, eligibleValue);
+      activityCubit.unselectCell();
+      return true;
+    }
+
+    activityCubit.unselectCell();
+    return false;
+  }
+
+  void checkAllTemplates() {
+    printlog('###############################');
+    printlog('##                           ##');
+    printlog('##      CHECK TEMPLATES      ##');
+    printlog('##                           ##');
+    printlog('###############################');
+
+    final List<String> allowedLevels = ApplicationConfig.config
+        .getFromCode(ApplicationConfig.parameterCodeDifficultyLevel)
+        .allowedValues;
+    final List<String> allowedSizes = ApplicationConfig.config
+        .getFromCode(ApplicationConfig.parameterCodeBoardSize)
+        .allowedValues;
+
+    for (String level in allowedLevels) {
+      printlog('* level: $level');
+      for (String size in allowedSizes) {
+        printlog('** size: $size');
+        final List<String> templates = GameData.templates[size]?[level] ?? [];
+        printlog('*** templates count: ${templates.length}');
+
+        for (String template in templates) {
+          printlog(' checking $template');
+
+          final Board testBoard = Board.createEmpty();
+          testBoard.createFromTemplate(template: template);
+          testBoard.dump();
+        }
+      }
+    }
+  }
+
+  void dump() {
+    printlog('');
+    printlog('## Current game dump:');
+    printlog('');
+    printlog('$Activity:');
+    printlog('  Settings');
+    activitySettings.dump();
+    printlog('  State');
+    printlog('    isRunning: $isRunning');
+    printlog('    isStarted: $isStarted');
+    printlog('    isFinished: $isFinished');
+    printlog('    animationInProgress: $animationInProgress');
+    printlog('  Base data');
+    printlog('    boardSizeHorizontal: $boardSizeHorizontal');
+    printlog('    boardSizeVertical: $boardSizeVertical');
+    printlog('  Game data');
+    printlog('    selectedCell: ${selectedCell?.toString() ?? ''}');
+    printlog('    showConflicts: $showConflicts');
+    printlog('    givenTipsCount: $givenTipsCount');
+    printlog('    buttonTipsCountdown: $buttonTipsCountdown');
+    printlog('');
+
+    board.dump();
+    printlog('');
+  }
+
+  @override
+  String toString() {
+    return '$Activity(${toJson()})';
+  }
+
+  Map<String, dynamic>? toJson() {
+    return <String, dynamic>{
+      // Settings
+      'activitySettings': activitySettings.toJson(),
+      // State
+      'isRunning': isRunning,
+      'isStarted': isStarted,
+      'isFinished': isFinished,
+      'animationInProgress': animationInProgress,
+      'boardAnimated': boardAnimated,
+      // Base data
+      'board': board.toJson(),
+      'boardSizeHorizontal': boardSizeHorizontal,
+      'boardSizeVertical': boardSizeVertical,
+      // Game data
+      'boardConflicts': boardConflicts,
+      'selectedCell': selectedCell?.toJson(),
+      'showConflicts': showConflicts,
+      'givenTipsCount': givenTipsCount,
+      'buttonTipsCountdown': buttonTipsCountdown,
+    };
+  }
+}
diff --git a/lib/models/activity/board.dart b/lib/models/activity/board.dart
new file mode 100644
index 0000000..663efc3
--- /dev/null
+++ b/lib/models/activity/board.dart
@@ -0,0 +1,619 @@
+import 'dart:math';
+
+import 'package:flutter_custom_toolbox/flutter_toolbox.dart';
+
+import 'package:suguru/models/activity/cell.dart';
+import 'package:suguru/models/activity/cell_location.dart';
+import 'package:suguru/models/activity/types.dart';
+
+class Board {
+  Board({
+    required this.cells,
+    required this.solvedCells,
+  });
+
+  BoardCells cells = const [];
+  BoardCells solvedCells = const [];
+
+  factory Board.createEmpty() {
+    return Board(
+      cells: [],
+      solvedCells: [],
+    );
+  }
+
+  factory Board.createFromCells({
+    required BoardCells cells,
+    required BoardCells solvedCells,
+  }) {
+    return Board(
+      cells: cells,
+      solvedCells: solvedCells,
+    );
+  }
+
+  void createFromTemplate({
+    required String template,
+  }) {
+    final List<String> templateParts = template.split(';');
+    if (templateParts.length != 3) {
+      printlog('Failed to get grid template (wrong format)...');
+    }
+
+    final String boardSizeAsString = templateParts[0];
+    final String blocksDefinitionAsString = templateParts[1];
+    final String fixedCellsDefinitionAsString = templateParts[2];
+
+    final int boardSizeHorizontal = int.parse(boardSizeAsString.split('x')[0]);
+    final int boardSizeVertical = int.parse(boardSizeAsString.split('x')[1]);
+
+    const String stringValues = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ';
+
+    int index = 0;
+    for (int rowIndex = 0; rowIndex < boardSizeVertical; rowIndex++) {
+      final List<Cell> row = [];
+      for (int colIndex = 0; colIndex < boardSizeHorizontal; colIndex++) {
+        final String blockId = blocksDefinitionAsString[index];
+        final String cellValueAsString = fixedCellsDefinitionAsString[index];
+        index++;
+
+        final int cellValue = stringValues.indexOf(cellValueAsString);
+
+        row.add(Cell(
+          location: CellLocation.go(rowIndex, colIndex),
+          blockId: blockId,
+          value: cellValue,
+          isFixed: (cellValue != 0),
+        ));
+      }
+      cells.add(row);
+    }
+
+    const List<String> allowedFlip = ['none', 'horizontal', 'vertical'];
+    List<String> allowedRotate = ['none', 'left', 'right', 'upsidedown'];
+
+    // Limit rotation if board is not symetric
+    if (boardSizeVertical != boardSizeHorizontal) {
+      allowedRotate = ['none', 'upsidedown'];
+    }
+
+    final Random rand = Random();
+    final String flip = allowedFlip[rand.nextInt(allowedFlip.length)];
+    final String rotate = allowedRotate[rand.nextInt(allowedRotate.length)];
+
+    switch (flip) {
+      case 'horizontal':
+        {
+          transformFlipHorizontal();
+        }
+        break;
+      case 'vertical':
+        {
+          transformFlipVertical();
+        }
+        break;
+    }
+
+    switch (rotate) {
+      case 'left':
+        {
+          transformRotateLeft();
+        }
+        break;
+      case 'right':
+        {
+          transformRotateRight();
+        }
+        break;
+      case 'upsidedown':
+        {
+          transformFlipHorizontal();
+          transformFlipVertical();
+        }
+        break;
+    }
+
+    // Force cells fixed states (all cells with value != 0)
+    for (CellLocation location in getCellLocations()) {
+      final Cell cell = get(location);
+      cells[location.row][location.col] = Cell(
+        location: location,
+        blockId: cell.blockId,
+        value: cell.value,
+        isFixed: (cell.value != 0) ? true : false,
+      );
+    }
+
+    resolve();
+  }
+
+  // Helper to create board from size, with "empty" cells
+  static BoardCells createEmptyBoard(final int width, final int height) {
+    final BoardCells cells = [];
+    for (int rowIndex = 0; rowIndex < height; rowIndex++) {
+      final List<Cell> row = [];
+      for (int colIndex = 0; colIndex < width; colIndex++) {
+        row.add(Cell(
+          location: CellLocation.go(rowIndex, colIndex),
+          blockId: '',
+          value: 0,
+          isFixed: false,
+        ));
+      }
+      cells.add(row);
+    }
+
+    return cells;
+  }
+
+  List<CellLocation> getCellLocations([String? blockId]) {
+    if (cells.isEmpty) {
+      return [];
+    }
+
+    final List<CellLocation> locations = [];
+
+    final int boardSizeVertical = cells.length;
+    final int boardSizeHorizontal = cells[0].length;
+    for (int row = 0; row < boardSizeVertical; row++) {
+      for (int col = 0; col < boardSizeHorizontal; col++) {
+        if ((blockId == null) || (blockId == get(CellLocation.go(row, col)).blockId)) {
+          locations.add(CellLocation.go(row, col));
+        }
+      }
+    }
+
+    return locations;
+  }
+
+  void transformFlipHorizontal() {
+    final BoardCells transformedBoard = copyCells();
+    final int boardSizeVertical = cells.length;
+
+    for (CellLocation location in getCellLocations()) {
+      final Cell cell = cells[boardSizeVertical - location.row - 1][location.col];
+      transformedBoard[location.row][location.col] = Cell(
+        location: location,
+        blockId: cell.blockId,
+        value: cell.value,
+        isFixed: false,
+      );
+    }
+
+    cells = transformedBoard;
+  }
+
+  void transformFlipVertical() {
+    if (cells.isEmpty) {
+      return;
+    }
+
+    final BoardCells transformedBoard = copyCells();
+
+    final int boardSizeHorizontal = cells[0].length;
+
+    for (CellLocation location in getCellLocations()) {
+      final Cell cell = cells[location.row][boardSizeHorizontal - location.col - 1];
+      transformedBoard[location.row][location.col] = Cell(
+        location: location,
+        blockId: cell.blockId,
+        value: cell.value,
+        isFixed: false,
+      );
+    }
+
+    cells = transformedBoard;
+  }
+
+  void transformRotateLeft() {
+    final BoardCells transformedBoard = copyCells();
+    final int boardSizeVertical = cells.length;
+
+    for (CellLocation location in getCellLocations()) {
+      final Cell cell = cells[location.col][boardSizeVertical - location.row - 1];
+      transformedBoard[location.row][location.col] = Cell(
+        location: location,
+        blockId: cell.blockId,
+        value: cell.value,
+        isFixed: false,
+      );
+    }
+
+    cells = transformedBoard;
+  }
+
+  void transformRotateRight() {
+    if (cells.isEmpty) {
+      return;
+    }
+
+    final BoardCells transformedBoard = copyCells();
+
+    final int boardSizeHorizontal = cells[0].length;
+
+    for (CellLocation location in getCellLocations()) {
+      final Cell cell = cells[boardSizeHorizontal - location.col - 1][location.row];
+      transformedBoard[location.row][location.col] = Cell(
+        location: location,
+        blockId: cell.blockId,
+        value: cell.value,
+        isFixed: false,
+      );
+    }
+
+    cells = transformedBoard;
+  }
+
+  Cell get(CellLocation location) {
+    if (location.row < cells.length) {
+      if (location.col < cells[location.row].length) {
+        return cells[location.row][location.col];
+      }
+    }
+
+    return Cell.none;
+  }
+
+  void setCell(CellLocation location, Cell cell) {
+    cells[location.row][location.col] = cell;
+  }
+
+  void setValue(CellLocation location, int value) {
+    Cell currentCell = get(location);
+
+    setCell(
+        location,
+        Cell(
+          blockId: currentCell.blockId,
+          isFixed: currentCell.isFixed,
+          location: location,
+          value: value,
+        ));
+  }
+
+  List<String> getBlockIds() {
+    List<String> blockIds = [];
+    for (CellLocation location in getCellLocations()) {
+      final String blockId = get(location).blockId;
+      if (!blockIds.contains(blockId)) {
+        blockIds.add(blockId);
+      }
+    }
+
+    return blockIds;
+  }
+
+  List<int> getValuesInBlock(String blockId) {
+    final List<int> values = [];
+
+    for (CellLocation location in getCellLocations()) {
+      if (get(location).blockId == blockId) {
+        values.add(get(location).value);
+      }
+    }
+
+    return values;
+  }
+
+  BoardCells copyCells() {
+    final BoardCells copiedGrid = [];
+    for (int rowIndex = 0; rowIndex < cells.length; rowIndex++) {
+      final List<Cell> row = [];
+      for (int colIndex = 0; colIndex < cells[rowIndex].length; colIndex++) {
+        final Cell cell = cells[rowIndex][colIndex];
+        row.add(Cell(
+          location: CellLocation.go(rowIndex, colIndex),
+          blockId: cell.blockId,
+          value: cell.value,
+          isFixed: false,
+        ));
+      }
+      copiedGrid.add(row);
+    }
+
+    return copiedGrid;
+  }
+
+  resolve() {
+    final Board solvedBoard = Board(cells: copyCells(), solvedCells: []);
+
+    do {
+      // last cell in blocks
+      final List<List<int>> cellsLastEmptyInBlock = solvedBoard.getLastEmptyCellsInBlocks();
+      for (var cellData in cellsLastEmptyInBlock) {
+        solvedBoard.setValue(CellLocation.go(cellData[0], cellData[1]), cellData[2]);
+      }
+
+      // last cell in blocks
+      final List<List<int>> cellsSingleInBlockWithoutConflict =
+          solvedBoard.getOnlyCellInBlockWithoutConflict();
+      for (var cellData in cellsSingleInBlockWithoutConflict) {
+        solvedBoard.setValue(CellLocation.go(cellData[0], cellData[1]), cellData[2]);
+      }
+
+      // empty cells with unique available value
+      final List<List<int>> cellsWithUniqueAvailableValue =
+          solvedBoard.getEmptyCellsWithUniqueAvailableValue();
+      for (var cellData in cellsWithUniqueAvailableValue) {
+        solvedBoard.setValue(CellLocation.go(cellData[0], cellData[1]), cellData[2]);
+      }
+
+      // no more empty cell to fill
+      if (cellsLastEmptyInBlock.isEmpty && cellsWithUniqueAvailableValue.isEmpty) {
+        if (solvedBoard.isSolved()) {
+          printlog('ok compute solved board');
+        } else {
+          printlog('!!');
+          printlog('!! failed to resolve board');
+          printlog('!!');
+        }
+        break;
+      }
+    } while (true);
+
+    solvedCells = solvedBoard.cells;
+  }
+
+  bool isSolved() {
+    // check grid is fully completed
+    for (CellLocation location in getCellLocations()) {
+      if (get(location).value == 0) {
+        return false;
+      }
+    }
+
+    // check each block contains all values from 1 to block size
+    for (String blockId in getBlockIds()) {
+      List<int> values = [];
+      List<int> duplicateValues = [];
+      for (CellLocation location in getCellLocations()) {
+        if (get(location).blockId == blockId) {
+          final int value = get(location).value;
+          if (value != 0) {
+            if (!values.contains(value)) {
+              values.add(value);
+            } else {
+              duplicateValues.add(value);
+            }
+          }
+        }
+      }
+      for (int duplicateValue in duplicateValues) {
+        for (CellLocation location in getCellLocations()) {
+          if (get(location).blockId == blockId && get(location).value == duplicateValue) {
+            return false;
+          }
+        }
+      }
+    }
+
+    return true;
+  }
+
+  int getMaxValueForBlock(String? blockId) {
+    int maxValue = 0;
+    for (CellLocation location in getCellLocations()) {
+      if (get(location).blockId == blockId) {
+        maxValue++;
+      }
+    }
+    return maxValue;
+  }
+
+  List<int> getMissingValuesInBlock(String blockId) {
+    List<int> missingValues = [];
+    final List<int> values = getValuesInBlock(blockId);
+    final List<int> expectedValues =
+        List<int>.generate(getMaxValueForBlock(blockId), (i) => i + 1);
+
+    for (int candidateValue in expectedValues) {
+      if (!values.contains(candidateValue)) {
+        missingValues.add(candidateValue);
+      }
+    }
+
+    return missingValues;
+  }
+
+  List<List<int>> getLastEmptyCellsInBlocks() {
+    List<List<int>> candidateCells = [];
+
+    for (CellLocation location in getCellLocations()) {
+      final Cell cell = get(location);
+      if (cell.value == 0) {
+        final int blockSize = getMaxValueForBlock(cell.blockId);
+        final List<int> blockValues = getValuesInBlock(cell.blockId);
+        blockValues.removeWhere((value) => value == 0);
+
+        if (blockValues.length == blockSize - 1) {
+          int candidateValue = 0;
+
+          for (int value = 1; value <= blockSize; value++) {
+            if (!blockValues.contains(value)) {
+              candidateValue = value;
+            }
+          }
+          candidateCells.add([location.row, location.col, candidateValue]);
+        }
+      }
+    }
+
+    return candidateCells;
+  }
+
+  List<List<int>> getOnlyCellInBlockWithoutConflict() {
+    List<List<int>> candidateCells = [];
+
+    for (String blockId in getBlockIds()) {
+      List<int> missingValuesInBlock = getMissingValuesInBlock(blockId);
+
+      for (int candidateValue in missingValuesInBlock) {
+        final List<CellLocation> allowedCellsForThisValue = [];
+
+        for (CellLocation location in getCellLocations(blockId)) {
+          if (get(location).value == 0) {
+            if (isValueAllowed(location, candidateValue)) {
+              allowedCellsForThisValue.add(location);
+            }
+          }
+        }
+
+        if (allowedCellsForThisValue.length == 1) {
+          final CellLocation candidateLocation = allowedCellsForThisValue[0];
+          candidateCells.add([candidateLocation.row, candidateLocation.col, candidateValue]);
+        }
+      }
+    }
+
+    return candidateCells;
+  }
+
+  List<List<int>> getEmptyCellsWithUniqueAvailableValue() {
+    List<List<int>> candidateCells = [];
+
+    for (CellLocation location in getCellLocations()) {
+      if (get(location).value == 0) {
+        int allowedValuesCount = 0;
+        int candidateValue = 0;
+        final int maxValueForThisCell = getMaxValueForBlock(get(location).blockId);
+
+        for (int value = 1; value <= maxValueForThisCell; value++) {
+          if (isValueAllowed(location, value)) {
+            candidateValue = value;
+            allowedValuesCount++;
+          }
+        }
+
+        if (allowedValuesCount == 1) {
+          candidateCells.add([location.row, location.col, candidateValue]);
+        }
+      }
+    }
+
+    return candidateCells;
+  }
+
+  bool blockContainsDuplicates(String blockId, [int? candidateValue]) {
+    List<int> duplicateValues = [];
+
+    List<int> values = [];
+    if (candidateValue != null) {
+      values.add(candidateValue);
+    }
+
+    for (CellLocation location in getCellLocations(blockId)) {
+      final int value = get(location).value;
+      if (value != 0) {
+        if (!values.contains(value)) {
+          values.add(value);
+        } else {
+          duplicateValues.add(value);
+        }
+      }
+    }
+
+    return duplicateValues.isNotEmpty;
+  }
+
+  bool boardHasSiblingWithSameValue() {
+    for (CellLocation location in getCellLocations()) {
+      final int value = get(location).value;
+      if (value != 0 && cellHasSiblingWithSameValue(location)) {
+        return true;
+      }
+    }
+
+    return false;
+  }
+
+  bool cellHasSiblingWithSameValue(CellLocation cellLocation, [int? candidateValue]) {
+    if (cells.isEmpty) {
+      return false;
+    }
+
+    final int boardSizeVertical = cells.length;
+    final int boardSizeHorizontal = cells[0].length;
+
+    final int value = candidateValue ?? get(cellLocation).value;
+    if (value != 0) {
+      for (int deltaRow in [-1, 0, 1]) {
+        for (int deltaCol in [-1, 0, 1]) {
+          if (cellLocation.row + deltaRow >= 0 &&
+              cellLocation.row + deltaRow < boardSizeHorizontal &&
+              cellLocation.col + deltaCol >= 0 &&
+              cellLocation.col + deltaCol < boardSizeVertical &&
+              !(deltaRow == 0 && deltaCol == 0)) {
+            final CellLocation candidateLocation =
+                CellLocation.go(cellLocation.row + deltaRow, cellLocation.col + deltaCol);
+
+            final int siblingValue = get(candidateLocation).value;
+
+            if (siblingValue == value) {
+              return true;
+            }
+          }
+        }
+      }
+    }
+
+    return false;
+  }
+
+  bool isValueAllowed(CellLocation? location, int value) {
+    if ((location == null) || (value == 0)) {
+      return true;
+    }
+
+    // check siblings
+    if (cellHasSiblingWithSameValue(location, value)) {
+      return false;
+    }
+
+    // check block does not contain duplicates
+    if (blockContainsDuplicates(get(location).blockId, value)) {
+      return false;
+    }
+
+    return true;
+  }
+
+  void dump() {
+    const String stringValues = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ';
+
+    printlog('');
+    printlog('- blocks / values / solved -');
+    printlog('-------');
+    if (cells.isEmpty) {
+      printlog('empty board');
+    } else {
+      for (int rowIndex = 0; rowIndex < cells.length; rowIndex++) {
+        String rowBlocks = '';
+        String rowValues = '';
+        String rowSolved = '';
+        for (int colIndex = 0; colIndex < cells[rowIndex].length; colIndex++) {
+          rowBlocks += cells[rowIndex][colIndex].blockId;
+          rowValues += stringValues[cells[rowIndex][colIndex].value];
+          if (solvedCells.isEmpty) {
+            rowSolved += '*';
+          } else {
+            rowSolved += stringValues[solvedCells[rowIndex][colIndex].value];
+          }
+        }
+        printlog('$rowBlocks | $rowValues | $rowSolved');
+      }
+    }
+    printlog('-------');
+    printlog('');
+  }
+
+  @override
+  String toString() {
+    return '$Board(${toJson()})';
+  }
+
+  Map<String, dynamic>? toJson() {
+    return <String, dynamic>{
+      'cells': cells,
+    };
+  }
+}
diff --git a/lib/models/activity/cell.dart b/lib/models/activity/cell.dart
new file mode 100644
index 0000000..5ac6b83
--- /dev/null
+++ b/lib/models/activity/cell.dart
@@ -0,0 +1,46 @@
+import 'package:flutter_custom_toolbox/flutter_toolbox.dart';
+
+import 'package:suguru/models/activity/cell_location.dart';
+
+class Cell {
+  const Cell({
+    required this.location,
+    required this.blockId,
+    required this.value,
+    required this.isFixed,
+  });
+
+  final CellLocation location;
+  final String blockId;
+  final int value;
+  final bool isFixed;
+
+  static Cell none = Cell(
+    location: CellLocation.go(0, 0),
+    blockId: '',
+    value: 0,
+    isFixed: true,
+  );
+
+  void dump() {
+    printlog('$Cell:');
+    printlog('  location: $location');
+    printlog('  blockId: $blockId');
+    printlog('  value: $value');
+    printlog('  isFixed: $isFixed');
+    printlog('');
+  }
+
+  @override
+  String toString() {
+    return '$Cell(${toJson()})';
+  }
+
+  Map<String, dynamic>? toJson() {
+    return <String, dynamic>{
+      'location': location.toJson(),
+      'value': value,
+      'isFixed': isFixed,
+    };
+  }
+}
diff --git a/lib/models/activity/cell_location.dart b/lib/models/activity/cell_location.dart
new file mode 100644
index 0000000..8326776
--- /dev/null
+++ b/lib/models/activity/cell_location.dart
@@ -0,0 +1,34 @@
+import 'package:flutter_custom_toolbox/flutter_toolbox.dart';
+
+class CellLocation {
+  final int col;
+  final int row;
+
+  CellLocation({
+    required this.col,
+    required this.row,
+  });
+
+  factory CellLocation.go(int row, int col) {
+    return CellLocation(col: col, row: row);
+  }
+
+  void dump() {
+    printlog('$CellLocation:');
+    printlog('  row: $row');
+    printlog('  col: $col');
+    printlog('');
+  }
+
+  @override
+  String toString() {
+    return '[${col + 1},${row + 1}]';
+  }
+
+  Map<String, dynamic>? toJson() {
+    return <String, dynamic>{
+      'row': row,
+      'col': col,
+    };
+  }
+}
diff --git a/lib/models/activity/types.dart b/lib/models/activity/types.dart
new file mode 100644
index 0000000..3e38359
--- /dev/null
+++ b/lib/models/activity/types.dart
@@ -0,0 +1,6 @@
+import 'package:suguru/models/activity/cell.dart';
+
+typedef BoardCells = List<List<Cell>>;
+typedef ConflictsCount = List<List<int>>;
+typedef AnimatedBoard = List<List<bool>>;
+typedef AnimatedBoardSequence = List<AnimatedBoard>;
diff --git a/lib/ui/game/game_bottom.dart b/lib/ui/game/game_bottom.dart
new file mode 100644
index 0000000..fb31854
--- /dev/null
+++ b/lib/ui/game/game_bottom.dart
@@ -0,0 +1,23 @@
+import 'package:flutter/material.dart';
+import 'package:flutter_custom_toolbox/flutter_toolbox.dart';
+
+import 'package:suguru/cubit/activity/activity_cubit.dart';
+import 'package:suguru/models/activity/activity.dart';
+import 'package:suguru/ui/widgets/game/bar_select_cell_value.dart';
+
+class GameBottomWidget extends StatelessWidget {
+  const GameBottomWidget({super.key});
+
+  @override
+  Widget build(BuildContext context) {
+    return BlocBuilder<ActivityCubit, ActivityState>(
+      builder: (BuildContext context, ActivityState activityState) {
+        final Activity currentActivity = activityState.currentActivity;
+
+        return currentActivity.isFinished
+            ? const SizedBox.shrink()
+            : const SelectCellValueBar();
+      },
+    );
+  }
+}
diff --git a/lib/ui/game/game_end.dart b/lib/ui/game/game_end.dart
new file mode 100644
index 0000000..6e8f463
--- /dev/null
+++ b/lib/ui/game/game_end.dart
@@ -0,0 +1,69 @@
+import 'package:flutter/material.dart';
+import 'package:flutter_custom_toolbox/flutter_toolbox.dart';
+
+import 'package:suguru/config/application_config.dart';
+
+import 'package:suguru/cubit/activity/activity_cubit.dart';
+import 'package:suguru/models/activity/activity.dart';
+
+class GameEndWidget extends StatelessWidget {
+  const GameEndWidget({super.key});
+
+  @override
+  Widget build(BuildContext context) {
+    return BlocBuilder<ActivityCubit, ActivityState>(
+      builder: (BuildContext context, ActivityState activityState) {
+        final Activity currentActivity = activityState.currentActivity;
+
+        final Image decorationImage = Image(
+          image: AssetImage(
+              currentActivity.gameWon ? 'assets/ui/game_win.png' : 'assets/ui/game_fail.png'),
+          fit: BoxFit.fill,
+        );
+
+        final double width = MediaQuery.of(context).size.width;
+
+        return Container(
+          margin: const EdgeInsets.all(2),
+          padding: const EdgeInsets.all(2),
+          child: Table(
+            defaultColumnWidth: FixedColumnWidth(width / 3.1),
+            defaultVerticalAlignment: TableCellVerticalAlignment.bottom,
+            children: [
+              TableRow(
+                children: [
+                  Column(
+                    mainAxisAlignment: MainAxisAlignment.center,
+                    crossAxisAlignment: CrossAxisAlignment.center,
+                    children: [decorationImage],
+                  ),
+                  Column(
+                    mainAxisAlignment: MainAxisAlignment.center,
+                    crossAxisAlignment: CrossAxisAlignment.center,
+                    children: [
+                      currentActivity.animationInProgress == true
+                          ? decorationImage
+                          : ActivityButtonQuit(
+                              onPressed: () {
+                                BlocProvider.of<ActivityCubit>(context).quitActivity();
+                                BlocProvider.of<NavCubitPage>(context)
+                                    .updateIndex(ApplicationConfig.activityPageIndexHome);
+                              },
+                              color: Colors.blue,
+                            ),
+                    ],
+                  ),
+                  Column(
+                    mainAxisAlignment: MainAxisAlignment.center,
+                    crossAxisAlignment: CrossAxisAlignment.center,
+                    children: [decorationImage],
+                  ),
+                ],
+              ),
+            ],
+          ),
+        );
+      },
+    );
+  }
+}
diff --git a/lib/ui/game/game_top.dart b/lib/ui/game/game_top.dart
new file mode 100644
index 0000000..9d5778b
--- /dev/null
+++ b/lib/ui/game/game_top.dart
@@ -0,0 +1,34 @@
+import 'package:flutter/material.dart';
+import 'package:flutter_custom_toolbox/flutter_toolbox.dart';
+
+import 'package:suguru/cubit/activity/activity_cubit.dart';
+import 'package:suguru/models/activity/activity.dart';
+import 'package:suguru/ui/widgets/game/button_show_conflicts.dart';
+import 'package:suguru/ui/widgets/game/button_show_tip.dart';
+
+class GameTopWidget extends StatelessWidget {
+  const GameTopWidget({super.key});
+
+  @override
+  Widget build(BuildContext context) {
+    return BlocBuilder<ActivityCubit, ActivityState>(
+      builder: (BuildContext context, ActivityState activityState) {
+        final Activity currentActivity = activityState.currentActivity;
+
+        return SizedBox(
+          height: 60,
+          child: (currentActivity.isRunning && !currentActivity.isFinished)
+              ? const Row(
+                  mainAxisAlignment: MainAxisAlignment.end,
+                  crossAxisAlignment: CrossAxisAlignment.center,
+                  children: [
+                    ButtonShowTip(),
+                    ButtonShowConflicts(),
+                  ],
+                )
+              : const SizedBox.shrink(),
+        );
+      },
+    );
+  }
+}
diff --git a/lib/ui/pages/game.dart b/lib/ui/pages/game.dart
new file mode 100644
index 0000000..a4c5464
--- /dev/null
+++ b/lib/ui/pages/game.dart
@@ -0,0 +1,45 @@
+import 'package:flutter/material.dart';
+import 'package:flutter_custom_toolbox/flutter_toolbox.dart';
+
+import 'package:suguru/cubit/activity/activity_cubit.dart';
+import 'package:suguru/models/activity/activity.dart';
+import 'package:suguru/ui/game/game_bottom.dart';
+import 'package:suguru/ui/game/game_end.dart';
+import 'package:suguru/ui/game/game_top.dart';
+import 'package:suguru/ui/widgets/game/game_board.dart';
+
+class PageGame extends StatelessWidget {
+  const PageGame({super.key});
+
+  @override
+  Widget build(BuildContext context) {
+    return BlocBuilder<ActivityCubit, ActivityState>(
+      builder: (BuildContext context, ActivityState activityState) {
+        final Activity currentActivity = activityState.currentActivity;
+
+        return Container(
+          alignment: AlignmentDirectional.topCenter,
+          padding: const EdgeInsets.all(4),
+          child: Column(
+            mainAxisAlignment: MainAxisAlignment.start,
+            crossAxisAlignment: CrossAxisAlignment.center,
+            children: [
+              const GameTopWidget(),
+              const SizedBox(height: 8),
+              const GameBoardWidget(),
+              const SizedBox(height: 8),
+              const GameBottomWidget(),
+              //   StyledButton.text(
+              //     onPressed: () => currentActivity.checkAllTemplates(),
+              //     caption: '[debug] test all templates',
+              //     color: Colors.red,
+              //   ),
+              const Expanded(child: SizedBox.shrink()),
+              currentActivity.isFinished ? const GameEndWidget() : const SizedBox.shrink(),
+            ],
+          ),
+        );
+      },
+    );
+  }
+}
diff --git a/lib/ui/parameters/parameter_painter_board_size.dart b/lib/ui/parameters/parameter_painter_board_size.dart
new file mode 100644
index 0000000..52275d9
--- /dev/null
+++ b/lib/ui/parameters/parameter_painter_board_size.dart
@@ -0,0 +1,73 @@
+import 'dart:math';
+
+import 'package:flutter/material.dart';
+import 'package:flutter_custom_toolbox/flutter_toolbox.dart';
+
+import 'package:suguru/config/application_config.dart';
+
+class ParameterPainterBoardSize extends CustomPainter {
+  const ParameterPainterBoardSize({
+    required this.context,
+    required this.value,
+  });
+
+  final BuildContext context;
+  final String value;
+
+  @override
+  void paint(Canvas canvas, Size size) {
+    // force square
+    final double canvasSize = min(size.width, size.height);
+
+    int gridWidth = 1;
+    int gridHeight = 1;
+
+    switch (value) {
+      case ApplicationConfig.boardSizeValueSmall:
+        gridWidth = 2;
+        gridHeight = 2;
+        break;
+      case ApplicationConfig.boardSizeValueMedium:
+        gridWidth = 3;
+        gridHeight = 3;
+        break;
+      case ApplicationConfig.boardSizeValueLarge:
+        gridWidth = 4;
+        gridHeight = 4;
+        break;
+      default:
+        printlog('Wrong value for size parameter value: $value');
+    }
+
+    final paint = Paint();
+    paint.strokeJoin = StrokeJoin.round;
+    paint.strokeWidth = 3;
+
+    // Mini grid
+    final borderColor = Colors.grey.shade800;
+
+    final double cellSize = canvasSize / 5;
+    final double originX = (canvasSize - gridWidth * cellSize) / 2;
+    final double originY = (canvasSize - gridHeight * cellSize) / 2;
+
+    for (int row = 0; row < gridHeight; row++) {
+      for (int col = 0; col < gridWidth; col++) {
+        final Offset topLeft = Offset(originX + col * cellSize, originY + row * cellSize);
+        final Offset bottomRight = topLeft + Offset(cellSize, cellSize);
+
+        paint.color = Colors.white;
+        paint.style = PaintingStyle.fill;
+        canvas.drawRect(Rect.fromPoints(topLeft, bottomRight), paint);
+
+        paint.color = borderColor;
+        paint.style = PaintingStyle.stroke;
+        canvas.drawRect(Rect.fromPoints(topLeft, bottomRight), paint);
+      }
+    }
+  }
+
+  @override
+  bool shouldRepaint(CustomPainter oldDelegate) {
+    return false;
+  }
+}
diff --git a/lib/ui/parameters/parameter_painter_difficulty_level.dart b/lib/ui/parameters/parameter_painter_difficulty_level.dart
new file mode 100644
index 0000000..b3477a4
--- /dev/null
+++ b/lib/ui/parameters/parameter_painter_difficulty_level.dart
@@ -0,0 +1,76 @@
+import 'dart:math';
+
+import 'package:flutter/material.dart';
+import 'package:flutter_custom_toolbox/flutter_toolbox.dart';
+
+import 'package:suguru/config/application_config.dart';
+
+class ParameterPainterDifficultyLevel extends CustomPainter {
+  const ParameterPainterDifficultyLevel({
+    required this.context,
+    required this.value,
+  });
+
+  final BuildContext context;
+  final String value;
+
+  @override
+  void paint(Canvas canvas, Size size) {
+    // force square
+    final double canvasSize = min(size.width, size.height);
+
+    final List<dynamic> stars = [];
+
+    switch (value) {
+      case ApplicationConfig.difficultyLevelValueEasy:
+        stars.add([0.5, 0.5]);
+        break;
+      case ApplicationConfig.difficultyLevelValueMedium:
+        stars.add([0.3, 0.5]);
+        stars.add([0.7, 0.5]);
+        break;
+      case ApplicationConfig.difficultyLevelValueHard:
+        stars.add([0.3, 0.3]);
+        stars.add([0.7, 0.3]);
+        stars.add([0.5, 0.7]);
+        break;
+      default:
+        printlog('Wrong value for level parameter value: $value');
+    }
+
+    final paint = Paint();
+    paint.strokeJoin = StrokeJoin.round;
+    paint.strokeWidth = 3 / 100 * canvasSize;
+
+    // Stars
+    final textSpan = TextSpan(
+      text: '⭐',
+      style: TextStyle(
+        color: Colors.black,
+        fontSize: canvasSize / 3,
+        fontWeight: FontWeight.bold,
+      ),
+    );
+    final textPainter = TextPainter(
+      text: textSpan,
+      textDirection: TextDirection.ltr,
+      textAlign: TextAlign.center,
+    );
+    textPainter.layout();
+
+    for (var center in stars) {
+      textPainter.paint(
+        canvas,
+        Offset(
+          canvasSize * center[0] - textPainter.width * 0.5,
+          canvasSize * center[1] - textPainter.height * 0.5,
+        ),
+      );
+    }
+  }
+
+  @override
+  bool shouldRepaint(CustomPainter oldDelegate) {
+    return false;
+  }
+}
diff --git a/lib/ui/skeleton.dart b/lib/ui/skeleton.dart
new file mode 100644
index 0000000..f663da5
--- /dev/null
+++ b/lib/ui/skeleton.dart
@@ -0,0 +1,55 @@
+import 'package:flutter/material.dart';
+import 'package:flutter_custom_toolbox/flutter_toolbox.dart';
+
+import 'package:suguru/config/application_config.dart';
+import 'package:suguru/cubit/activity/activity_cubit.dart';
+import 'package:suguru/models/activity/activity.dart';
+
+class SkeletonScreen extends StatelessWidget {
+  const SkeletonScreen({super.key});
+
+  @override
+  Widget build(BuildContext context) {
+    return BlocBuilder<NavCubitScreen, int>(
+      builder: (BuildContext context, int screenIndex) {
+        return BlocBuilder<ActivityCubit, ActivityState>(
+          builder: (BuildContext context, ActivityState activityState) {
+            return BlocBuilder<NavCubitScreen, int>(
+              builder: (BuildContext context, int pageIndex) {
+                final Activity currentActivity = activityState.currentActivity;
+
+                return Scaffold(
+                  appBar: GlobalAppBar(
+                    appConfig: ApplicationConfig.config,
+                    pageIndex: pageIndex,
+                    isActivityRunning:
+                        currentActivity.isRunning && !currentActivity.isFinished,
+                  ),
+                  extendBodyBehindAppBar: false,
+                  body: Material(
+                    color: Theme.of(context).colorScheme.surface,
+                    child: Padding(
+                      padding: const EdgeInsets.only(
+                        top: 8,
+                        left: 2,
+                        right: 2,
+                      ),
+                      child: ApplicationConfig.config.navigation.getScreenWidget(
+                        appConfig: ApplicationConfig.config,
+                        screenIndex: screenIndex,
+                      ),
+                    ),
+                  ),
+                  backgroundColor: Theme.of(context).colorScheme.surface,
+                  bottomNavigationBar: ApplicationConfig.config.navigation.displayBottomNavBar
+                      ? BottomNavBar(appConfig: ApplicationConfig.config)
+                      : null,
+                );
+              },
+            );
+          },
+        );
+      },
+    );
+  }
+}
diff --git a/lib/ui/widgets/game/bar_select_cell_value.dart b/lib/ui/widgets/game/bar_select_cell_value.dart
new file mode 100644
index 0000000..31752d9
--- /dev/null
+++ b/lib/ui/widgets/game/bar_select_cell_value.dart
@@ -0,0 +1,56 @@
+import 'package:flutter/material.dart';
+import 'package:flutter_custom_toolbox/flutter_toolbox.dart';
+
+import 'package:suguru/cubit/activity/activity_cubit.dart';
+import 'package:suguru/models/activity/cell.dart';
+import 'package:suguru/models/activity/cell_location.dart';
+import 'package:suguru/models/activity/activity.dart';
+import 'package:suguru/ui/widgets/game/cell_update.dart';
+
+class SelectCellValueBar extends StatelessWidget {
+  const SelectCellValueBar({super.key});
+
+  @override
+  Widget build(BuildContext context) {
+    return BlocBuilder<ActivityCubit, ActivityState>(
+      builder: (BuildContext context, ActivityState activityState) {
+        final Activity activity = activityState.currentActivity;
+
+        final bool isUpdatableCellSelected =
+            (activity.selectedCell != null) ? !activity.selectedCell!.isFixed : false;
+
+        final int maxValue =
+            activity.board.getMaxValueForBlock(activity.selectedCell?.blockId);
+        const int fixedItemsCountPerLine = 6;
+
+        return Container(
+          margin: const EdgeInsets.all(2),
+          padding: const EdgeInsets.all(2),
+          child: Table(
+            defaultColumnWidth: const IntrinsicColumnWidth(),
+            children: [
+              TableRow(
+                children: [
+                  for (int value = 0; value < fixedItemsCountPerLine; value++)
+                    Column(
+                      children: [
+                        CellWidgetUpdate(
+                          cell: Cell(
+                            location: CellLocation.go(1, value),
+                            blockId: '',
+                            value:
+                                isUpdatableCellSelected ? (value <= maxValue ? value : 0) : -1,
+                            isFixed: false,
+                          ),
+                        ),
+                      ],
+                    ),
+                ],
+              ),
+            ],
+          ),
+        );
+      },
+    );
+  }
+}
diff --git a/lib/ui/widgets/game/button_show_conflicts.dart b/lib/ui/widgets/game/button_show_conflicts.dart
new file mode 100644
index 0000000..652c1c8
--- /dev/null
+++ b/lib/ui/widgets/game/button_show_conflicts.dart
@@ -0,0 +1,29 @@
+import 'package:flutter/material.dart';
+import 'package:flutter_custom_toolbox/flutter_toolbox.dart';
+
+import 'package:suguru/cubit/activity/activity_cubit.dart';
+import 'package:suguru/models/activity/activity.dart';
+
+class ButtonShowConflicts extends StatelessWidget {
+  const ButtonShowConflicts({super.key});
+
+  @override
+  Widget build(BuildContext context) {
+    return BlocBuilder<ActivityCubit, ActivityState>(
+      builder: (BuildContext context, ActivityState activityState) {
+        final Activity currentActivity = activityState.currentActivity;
+
+        return StyledButton(
+          color: currentActivity.showConflicts == true ? Colors.amber : Colors.grey,
+          child: const Image(
+            image: AssetImage('assets/ui/button_show_conflicts.png'),
+            fit: BoxFit.fill,
+          ),
+          onPressed: () {
+            BlocProvider.of<ActivityCubit>(context).toggleShowConflicts();
+          },
+        );
+      },
+    );
+  }
+}
diff --git a/lib/ui/widgets/game/button_show_tip.dart b/lib/ui/widgets/game/button_show_tip.dart
new file mode 100644
index 0000000..17061ab
--- /dev/null
+++ b/lib/ui/widgets/game/button_show_tip.dart
@@ -0,0 +1,54 @@
+import 'package:badges/badges.dart' as badges;
+import 'package:flutter/material.dart';
+import 'package:flutter_custom_toolbox/flutter_toolbox.dart';
+
+import 'package:suguru/config/application_config.dart';
+import 'package:suguru/cubit/activity/activity_cubit.dart';
+import 'package:suguru/models/activity/activity.dart';
+
+class ButtonShowTip extends StatelessWidget {
+  const ButtonShowTip({super.key});
+
+  @override
+  Widget build(BuildContext context) {
+    return BlocBuilder<ActivityCubit, ActivityState>(
+      builder: (BuildContext context, ActivityState activityState) {
+        final Activity currentActivity = activityState.currentActivity;
+
+        return StyledButton(
+          color: Colors.purple,
+          child: badges.Badge(
+            showBadge: currentActivity.givenTipsCount == 0 ? false : true,
+            badgeStyle: badges.BadgeStyle(
+              badgeColor: currentActivity.givenTipsCount < 10
+                  ? Colors.green
+                  : currentActivity.givenTipsCount < 20
+                      ? Colors.orange
+                      : Colors.red,
+            ),
+            badgeContent: Text(
+              currentActivity.givenTipsCount == 0
+                  ? ''
+                  : currentActivity.givenTipsCount.toString(),
+              style: const TextStyle(color: Colors.white),
+            ),
+            child: Container(
+              padding: EdgeInsets.all(10 *
+                  currentActivity.buttonTipsCountdown /
+                  ApplicationConfig.defaultTipCountDownValueInSeconds),
+              child: const Image(
+                image: AssetImage('assets/ui/button_help.png'),
+                fit: BoxFit.fill,
+              ),
+            ),
+          ),
+          onPressed: () {
+            currentActivity.canGiveTip
+                ? currentActivity.showTip(BlocProvider.of<ActivityCubit>(context))
+                : null;
+          },
+        );
+      },
+    );
+  }
+}
diff --git a/lib/ui/widgets/game/cell.dart b/lib/ui/widgets/game/cell.dart
new file mode 100644
index 0000000..13d0d85
--- /dev/null
+++ b/lib/ui/widgets/game/cell.dart
@@ -0,0 +1,182 @@
+import 'dart:math';
+
+import 'package:flutter/material.dart';
+import 'package:flutter_custom_toolbox/flutter_toolbox.dart';
+
+import 'package:suguru/config/application_config.dart';
+
+import 'package:suguru/cubit/activity/activity_cubit.dart';
+import 'package:suguru/models/activity/cell.dart';
+import 'package:suguru/models/activity/activity.dart';
+
+class CellWidget extends StatelessWidget {
+  const CellWidget({
+    super.key,
+    required this.cell,
+    required this.hasBlockBorderTop,
+    required this.hasBlockBorderLeft,
+    required this.hasBlockBorderBottom,
+    required this.hasBlockBorderRight,
+  });
+
+  final Cell cell;
+  final bool hasBlockBorderTop;
+  final bool hasBlockBorderLeft;
+  final bool hasBlockBorderBottom;
+  final bool hasBlockBorderRight;
+
+  @override
+  Widget build(BuildContext context) {
+    return BlocBuilder<ActivityCubit, ActivityState>(
+      builder: (BuildContext context, ActivityState activityState) {
+        final Activity activity = activityState.currentActivity;
+
+        final String imageAsset = getImageAssetName(activity);
+
+        return Container(
+          decoration: BoxDecoration(
+            color: getBackgroundColor(activity),
+            border: getCellBorders(activity),
+          ),
+          child: GestureDetector(
+            child: AnimatedSwitcher(
+              duration: const Duration(milliseconds: 100),
+              transitionBuilder: (Widget child, Animation<double> animation) {
+                return ScaleTransition(scale: animation, child: child);
+              },
+              child: Image(
+                image: AssetImage(imageAsset),
+                fit: BoxFit.fill,
+                key: ValueKey<int>(imageAsset.hashCode),
+              ),
+            ),
+            onTap: () {
+              final ActivityCubit activityCubit = BlocProvider.of<ActivityCubit>(context);
+
+              if (cell.location.col != activity.selectedCell?.location.col ||
+                  cell.location.row != activity.selectedCell?.location.row) {
+                activityCubit.selectCell(cell.location);
+              } else {
+                activityCubit.unselectCell();
+              }
+            },
+          ),
+        );
+      },
+    );
+  }
+
+  /*
+  * Compute image asset name, from skin and cell value/state
+  */
+  String getImageAssetName(Activity activity) {
+    if (cell.value > 0 && cell.value < 10) {
+      return 'assets/skins/${activity.activitySettings.get(ApplicationConfig.parameterCodeSkin)}_${cell.value}.png';
+    }
+
+    return 'assets/ui/cell_empty.png';
+  }
+
+  // Compute cell background color, from cell state
+  Color getBackgroundColor(Activity activity) {
+    final Color editableCellColor = Colors.grey.shade100;
+    final Color editableCellColorConflict = Colors.pink.shade100;
+    final Color fixedCellColor = Colors.grey.shade300;
+    final Color fixedCellColorConflict = Colors.pink.shade200;
+    final Color editableAnimated = Colors.green.shade200;
+    final Color fixedAnimated = Colors.green.shade300;
+
+    Color backgroundColor = editableCellColor;
+
+    if (cell.isFixed == true) {
+      backgroundColor = fixedCellColor;
+    }
+
+    final int conflictsCount = activity.boardConflicts[cell.location.row][cell.location.col];
+
+    if (activity.showConflicts == true) {
+      if (conflictsCount != 0) {
+        if (cell.isFixed == true) {
+          backgroundColor = fixedCellColorConflict;
+        } else {
+          backgroundColor = editableCellColorConflict;
+        }
+      }
+    }
+
+    final bool isAnimated = activity.boardAnimated[cell.location.row][cell.location.col];
+
+    if (isAnimated) {
+      if (cell.isFixed == true) {
+        backgroundColor = fixedAnimated;
+      } else {
+        backgroundColor = editableAnimated;
+      }
+    }
+
+    return backgroundColor;
+  }
+
+  // Compute cell borders, from board size and cell state
+  Border getCellBorders(Activity activity) {
+    final Color cellBorderDarkColor = Colors.grey.shade800;
+    final Color cellBorderLightColor = Colors.grey.shade400;
+    const Color cellBorderSelectedColor = Colors.red;
+
+    Color cellBorderColor = cellBorderSelectedColor;
+    double cellBorderWidth = 4;
+
+    final int boardSizeReference =
+        max(activity.boardSizeHorizontal, activity.boardSizeVertical);
+
+    // Reduce cell border width on big boards
+    if (boardSizeReference > 8) {
+      cellBorderWidth = 2;
+      if (boardSizeReference > 10) {
+        cellBorderWidth = 1;
+      }
+    }
+
+    if (!activity.isRunning) {
+      cellBorderColor = Colors.green.shade700;
+    }
+
+    Border borders = Border.all(
+      color: cellBorderColor,
+      width: cellBorderWidth,
+    );
+
+    // Update cell borders if not currently selected cell
+    if (cell.location.col != activity.selectedCell?.location.col ||
+        cell.location.row != activity.selectedCell?.location.row) {
+      borders = Border(
+        top: BorderSide(
+            width: cellBorderWidth,
+            color: (hasBlockBorderTop ||
+                    (((cell.location.row) % activity.boardSizeVertical) == 0))
+                ? cellBorderDarkColor
+                : cellBorderLightColor),
+        left: BorderSide(
+            width: cellBorderWidth,
+            color: (hasBlockBorderLeft ||
+                    (((cell.location.col) % activity.boardSizeHorizontal) == 0))
+                ? cellBorderDarkColor
+                : cellBorderLightColor),
+        right: BorderSide(
+            width: cellBorderWidth,
+            color: (hasBlockBorderRight ||
+                    ((((cell.location.col) + 1) % activity.boardSizeHorizontal) == 0))
+                ? cellBorderDarkColor
+                : cellBorderLightColor),
+        bottom: BorderSide(
+            width: cellBorderWidth,
+            color: (hasBlockBorderBottom ||
+                    ((((cell.location.row) + 1) % activity.boardSizeVertical) == 0))
+                ? cellBorderDarkColor
+                : cellBorderLightColor),
+      );
+    }
+
+    return borders;
+  }
+}
diff --git a/lib/ui/widgets/game/cell_update.dart b/lib/ui/widgets/game/cell_update.dart
new file mode 100644
index 0000000..90149df
--- /dev/null
+++ b/lib/ui/widgets/game/cell_update.dart
@@ -0,0 +1,74 @@
+import 'package:flutter/material.dart';
+import 'package:flutter_custom_toolbox/flutter_toolbox.dart';
+import 'package:suguru/config/application_config.dart';
+
+import 'package:suguru/cubit/activity/activity_cubit.dart';
+import 'package:suguru/models/activity/cell.dart';
+import 'package:suguru/models/activity/activity.dart';
+
+class CellWidgetUpdate extends StatelessWidget {
+  const CellWidgetUpdate({super.key, this.cell});
+
+  final Cell? cell;
+
+  @override
+  Widget build(BuildContext context) {
+    return BlocBuilder<ActivityCubit, ActivityState>(
+      builder: (BuildContext context, ActivityState activityState) {
+        final Activity activity = activityState.currentActivity;
+
+        if ((cell?.value ?? 0) < 0) {
+          return SizedBox.shrink();
+        }
+
+        final String imageAsset = getImageAssetName(activity);
+
+        Color backgroundColor = Colors.grey.shade200;
+
+        if (activity.showConflicts == true &&
+            activity.selectedCell?.location.col != null &&
+            activity.selectedCell?.location.row != null) {
+          if (!activity.board
+              .isValueAllowed(activity.selectedCell?.location, cell?.value ?? 0)) {
+            backgroundColor = Colors.pink.shade100;
+          }
+        }
+
+        return Container(
+          decoration: BoxDecoration(
+            color: backgroundColor,
+            border: Border.all(
+              color: Colors.grey.shade700,
+              width: 2,
+            ),
+          ),
+          child: GestureDetector(
+            child: Image(image: AssetImage(imageAsset), fit: BoxFit.fill),
+            onTap: () {
+              final ActivityCubit activityCubit = BlocProvider.of<ActivityCubit>(context);
+
+              if (activity.selectedCell != null) {
+                activityCubit.updateCellValue(
+                    activity.selectedCell!.location, cell?.value ?? 0);
+              }
+
+              activityCubit.unselectCell();
+            },
+          ),
+        );
+      },
+    );
+  }
+
+  /*
+  * Compute image asset name, from skin and cell value/state
+  */
+  String getImageAssetName(Activity activity) {
+    if ((cell?.value ?? 0) > 0) {
+      final int cellValue = cell?.value ?? 0;
+      return 'assets/skins/${activity.activitySettings.get(ApplicationConfig.parameterCodeSkin)}_$cellValue.png';
+    }
+
+    return 'assets/ui/cell_empty.png';
+  }
+}
diff --git a/lib/ui/widgets/game/game_board.dart b/lib/ui/widgets/game/game_board.dart
new file mode 100644
index 0000000..7b2ef33
--- /dev/null
+++ b/lib/ui/widgets/game/game_board.dart
@@ -0,0 +1,87 @@
+import 'package:flutter/material.dart';
+import 'package:flutter_custom_toolbox/flutter_toolbox.dart';
+
+import 'package:suguru/cubit/activity/activity_cubit.dart';
+import 'package:suguru/models/activity/cell_location.dart';
+import 'package:suguru/models/activity/activity.dart';
+import 'package:suguru/ui/widgets/game/cell.dart';
+
+class GameBoardWidget extends StatelessWidget {
+  const GameBoardWidget({super.key});
+
+  @override
+  Widget build(BuildContext context) {
+    return BlocBuilder<ActivityCubit, ActivityState>(
+      builder: (BuildContext context, ActivityState activityState) {
+        final Activity currentActivity = activityState.currentActivity;
+
+        final Color borderColor = Theme.of(context).colorScheme.onSurface;
+
+        return Container(
+          margin: const EdgeInsets.all(2),
+          padding: const EdgeInsets.all(2),
+          decoration: BoxDecoration(
+            color: borderColor,
+            borderRadius: BorderRadius.circular(2),
+            border: Border.all(
+              color: borderColor,
+              width: 2,
+            ),
+          ),
+          child: Column(
+            children: [
+              Table(
+                defaultColumnWidth: const IntrinsicColumnWidth(),
+                children: [
+                  for (int row = 0; row < currentActivity.boardSizeVertical; row++)
+                    TableRow(
+                      children: [
+                        for (int col = 0; col < currentActivity.boardSizeHorizontal; col++)
+                          Column(
+                            children: [
+                              CellWidget(
+                                cell: currentActivity.board.get(CellLocation.go(row, col)),
+                                hasBlockBorderBottom:
+                                    row == currentActivity.boardSizeVertical ||
+                                        currentActivity.board
+                                                .get(CellLocation.go(row, col))
+                                                .blockId !=
+                                            currentActivity.board
+                                                .get(CellLocation.go(row + 1, col))
+                                                .blockId,
+                                hasBlockBorderLeft: col == 0 ||
+                                    currentActivity.board
+                                            .get(CellLocation.go(row, col))
+                                            .blockId !=
+                                        currentActivity.board
+                                            .get(CellLocation.go(row, col - 1))
+                                            .blockId,
+                                hasBlockBorderRight:
+                                    col == currentActivity.boardSizeVertical ||
+                                        currentActivity.board
+                                                .get(CellLocation.go(row, col))
+                                                .blockId !=
+                                            currentActivity.board
+                                                .get(CellLocation.go(row, col + 1))
+                                                .blockId,
+                                hasBlockBorderTop: row == 0 ||
+                                    currentActivity.board
+                                            .get(CellLocation.go(row, col))
+                                            .blockId !=
+                                        currentActivity.board
+                                            .get(CellLocation.go(row - 1, col))
+                                            .blockId,
+                              )
+                            ],
+                          ),
+                      ],
+                    ),
+                ],
+              ),
+            ],
+          ),
+        );
+      },
+    );
+  }
+}
diff --git a/lib/utils/board_animate.dart b/lib/utils/board_animate.dart
new file mode 100644
index 0000000..b789581
--- /dev/null
+++ b/lib/utils/board_animate.dart
@@ -0,0 +1,107 @@
+import 'dart:async';
+
+import 'package:suguru/cubit/activity/activity_cubit.dart';
+import 'package:suguru/models/activity/activity.dart';
+import 'package:suguru/models/activity/types.dart';
+
+class BoardAnimate {
+  // Start game animation: blinking tiles
+  static AnimatedBoardSequence createStartGameAnimationPatterns(Activity activity) {
+    AnimatedBoardSequence patterns = [];
+
+    int patternsCount = 3;
+
+    for (int patternIndex = 0; patternIndex < patternsCount; patternIndex++) {
+      AnimatedBoard pattern = [];
+      for (int row = 0; row < activity.boardSizeVertical; row++) {
+        List<bool> patternRow = [];
+        for (int col = 0; col < activity.boardSizeHorizontal; col++) {
+          patternRow.add(((patternIndex + row + col) % 2 == 0));
+        }
+        pattern.add(patternRow);
+      }
+      patterns.add(pattern);
+    }
+
+    return patterns;
+  }
+
+  // Win game animation: fill board with colored rows, from bottom to top
+  static AnimatedBoardSequence createWinGameAnimationPatterns(Activity activity) {
+    AnimatedBoardSequence patterns = [];
+
+    int patternsCount = activity.boardSizeHorizontal + activity.boardSizeVertical;
+
+    for (int patternIndex = 0; patternIndex < patternsCount; patternIndex++) {
+      AnimatedBoard pattern = [];
+      for (int row = 0; row < activity.boardSizeVertical; row++) {
+        List<bool> patternRow = [];
+        for (int col = 0; col < activity.boardSizeHorizontal; col++) {
+          patternRow.add(row > (patternIndex - 4));
+        }
+        pattern.add(patternRow);
+      }
+      patterns.add(pattern);
+    }
+
+    return patterns;
+  }
+
+  // Default multi-purpose animation: sliding stripes, from top left to right bottom
+  static AnimatedBoardSequence createDefaultAnimationPatterns(Activity activity) {
+    AnimatedBoardSequence patterns = [];
+
+    int boardSideLength = activity.boardSizeHorizontal;
+    int patternsCount = boardSideLength;
+
+    for (int patternIndex = 0; patternIndex < patternsCount; patternIndex++) {
+      AnimatedBoard pattern = [];
+      for (int row = 0; row < activity.boardSizeVertical; row++) {
+        List<bool> patternRow = [];
+        for (int col = 0; col < activity.boardSizeHorizontal; col++) {
+          patternRow.add(((patternIndex + row + col) % 4 == 0));
+        }
+        pattern.add(patternRow);
+      }
+      patterns.add(pattern);
+    }
+
+    return patterns;
+  }
+
+  static void startAnimation(ActivityCubit activityCubit, String animationType) {
+    final Activity activity = activityCubit.state.currentActivity;
+
+    AnimatedBoardSequence patterns = [];
+
+    switch (animationType) {
+      case 'start':
+        patterns = createStartGameAnimationPatterns(activity);
+        break;
+      case 'win':
+        patterns = createWinGameAnimationPatterns(activity);
+        break;
+      default:
+        patterns = createDefaultAnimationPatterns(activity);
+    }
+
+    int patternIndex = patterns.length;
+
+    activityCubit.updateAnimationInProgress(true);
+
+    const interval = Duration(milliseconds: 200);
+    Timer.periodic(
+      interval,
+      (Timer timer) {
+        if (patternIndex == 0) {
+          timer.cancel();
+          activityCubit.resetAnimatedBackground();
+          activityCubit.updateAnimationInProgress(false);
+        } else {
+          patternIndex--;
+          activityCubit.setAnimatedBackground(patterns[patternIndex]);
+        }
+      },
+    );
+  }
+}
diff --git a/pubspec.lock b/pubspec.lock
new file mode 100644
index 0000000..f917603
--- /dev/null
+++ b/pubspec.lock
@@ -0,0 +1,458 @@
+# Generated by pub
+# See https://dart.dev/tools/pub/glossary#lockfile
+packages:
+  args:
+    dependency: transitive
+    description:
+      name: args
+      sha256: bf9f5caeea8d8fe6721a9c358dd8a5c1947b27f1cfaa18b39c301273594919e6
+      url: "https://pub.dev"
+    source: hosted
+    version: "2.6.0"
+  async:
+    dependency: transitive
+    description:
+      name: async
+      sha256: d2872f9c19731c2e5f10444b14686eb7cc85c76274bd6c16e1816bff9a3bab63
+      url: "https://pub.dev"
+    source: hosted
+    version: "2.12.0"
+  badges:
+    dependency: "direct main"
+    description:
+      name: badges
+      sha256: a7b6bbd60dce418df0db3058b53f9d083c22cdb5132a052145dc267494df0b84
+      url: "https://pub.dev"
+    source: hosted
+    version: "3.1.2"
+  bloc:
+    dependency: transitive
+    description:
+      name: bloc
+      sha256: "106842ad6569f0b60297619e9e0b1885c2fb9bf84812935490e6c5275777804e"
+      url: "https://pub.dev"
+    source: hosted
+    version: "8.1.4"
+  characters:
+    dependency: transitive
+    description:
+      name: characters
+      sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605"
+      url: "https://pub.dev"
+    source: hosted
+    version: "1.3.0"
+  clock:
+    dependency: transitive
+    description:
+      name: clock
+      sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf
+      url: "https://pub.dev"
+    source: hosted
+    version: "1.1.1"
+  collection:
+    dependency: transitive
+    description:
+      name: collection
+      sha256: a1ace0a119f20aabc852d165077c036cd864315bd99b7eaa10a60100341941bf
+      url: "https://pub.dev"
+    source: hosted
+    version: "1.19.0"
+  crypto:
+    dependency: transitive
+    description:
+      name: crypto
+      sha256: "1e445881f28f22d6140f181e07737b22f1e099a5e1ff94b0af2f9e4a463f4855"
+      url: "https://pub.dev"
+    source: hosted
+    version: "3.0.6"
+  easy_localization:
+    dependency: transitive
+    description:
+      name: easy_localization
+      sha256: fa59bcdbbb911a764aa6acf96bbb6fa7a5cf8234354fc45ec1a43a0349ef0201
+      url: "https://pub.dev"
+    source: hosted
+    version: "3.0.7"
+  easy_logger:
+    dependency: transitive
+    description:
+      name: easy_logger
+      sha256: c764a6e024846f33405a2342caf91c62e357c24b02c04dbc712ef232bf30ffb7
+      url: "https://pub.dev"
+    source: hosted
+    version: "0.0.2"
+  equatable:
+    dependency: transitive
+    description:
+      name: equatable
+      sha256: "567c64b3cb4cf82397aac55f4f0cbd3ca20d77c6c03bedbc4ceaddc08904aef7"
+      url: "https://pub.dev"
+    source: hosted
+    version: "2.0.7"
+  ffi:
+    dependency: transitive
+    description:
+      name: ffi
+      sha256: "16ed7b077ef01ad6170a3d0c57caa4a112a38d7a2ed5602e0aca9ca6f3d98da6"
+      url: "https://pub.dev"
+    source: hosted
+    version: "2.1.3"
+  file:
+    dependency: transitive
+    description:
+      name: file
+      sha256: a3b4f84adafef897088c160faf7dfffb7696046cb13ae90b508c2cbc95d3b8d4
+      url: "https://pub.dev"
+    source: hosted
+    version: "7.0.1"
+  flutter:
+    dependency: "direct main"
+    description: flutter
+    source: sdk
+    version: "0.0.0"
+  flutter_bloc:
+    dependency: transitive
+    description:
+      name: flutter_bloc
+      sha256: b594505eac31a0518bdcb4b5b79573b8d9117b193cc80cc12e17d639b10aa27a
+      url: "https://pub.dev"
+    source: hosted
+    version: "8.1.6"
+  flutter_custom_toolbox:
+    dependency: "direct main"
+    description:
+      name: flutter_custom_toolbox
+      sha256: "55eec6215c16e1a4325a2c515bd8464d598c8b67ae4403c47fd5f1df538e2336"
+      url: "https://pub.harrault.fr"
+    source: hosted
+    version: "1.0.2"
+  flutter_lints:
+    dependency: "direct dev"
+    description:
+      name: flutter_lints
+      sha256: "5398f14efa795ffb7a33e9b6a08798b26a180edac4ad7db3f231e40f82ce11e1"
+      url: "https://pub.dev"
+    source: hosted
+    version: "5.0.0"
+  flutter_localizations:
+    dependency: transitive
+    description: flutter
+    source: sdk
+    version: "0.0.0"
+  flutter_web_plugins:
+    dependency: transitive
+    description: flutter
+    source: sdk
+    version: "0.0.0"
+  hive:
+    dependency: transitive
+    description:
+      name: hive
+      sha256: "8dcf6db979d7933da8217edcec84e9df1bdb4e4edc7fc77dbd5aa74356d6d941"
+      url: "https://pub.dev"
+    source: hosted
+    version: "2.2.3"
+  http:
+    dependency: transitive
+    description:
+      name: http
+      sha256: b9c29a161230ee03d3ccf545097fccd9b87a5264228c5d348202e0f0c28f9010
+      url: "https://pub.dev"
+    source: hosted
+    version: "1.2.2"
+  http_parser:
+    dependency: transitive
+    description:
+      name: http_parser
+      sha256: "178d74305e7866013777bab2c3d8726205dc5a4dd935297175b19a23a2e66571"
+      url: "https://pub.dev"
+    source: hosted
+    version: "4.1.2"
+  hydrated_bloc:
+    dependency: transitive
+    description:
+      name: hydrated_bloc
+      sha256: af35b357739fe41728df10bec03aad422cdc725a1e702e03af9d2a41ea05160c
+      url: "https://pub.dev"
+    source: hosted
+    version: "9.1.5"
+  intl:
+    dependency: transitive
+    description:
+      name: intl
+      sha256: d6f56758b7d3014a48af9701c085700aac781a92a87a62b1333b46d8879661cf
+      url: "https://pub.dev"
+    source: hosted
+    version: "0.19.0"
+  lints:
+    dependency: transitive
+    description:
+      name: lints
+      sha256: c35bb79562d980e9a453fc715854e1ed39e24e7d0297a880ef54e17f9874a9d7
+      url: "https://pub.dev"
+    source: hosted
+    version: "5.1.1"
+  material_color_utilities:
+    dependency: transitive
+    description:
+      name: material_color_utilities
+      sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec
+      url: "https://pub.dev"
+    source: hosted
+    version: "0.11.1"
+  meta:
+    dependency: transitive
+    description:
+      name: meta
+      sha256: bdb68674043280c3428e9ec998512fb681678676b3c54e773629ffe74419f8c7
+      url: "https://pub.dev"
+    source: hosted
+    version: "1.15.0"
+  nested:
+    dependency: transitive
+    description:
+      name: nested
+      sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20"
+      url: "https://pub.dev"
+    source: hosted
+    version: "1.0.0"
+  package_info_plus:
+    dependency: transitive
+    description:
+      name: package_info_plus
+      sha256: "70c421fe9d9cc1a9a7f3b05ae56befd469fe4f8daa3b484823141a55442d858d"
+      url: "https://pub.dev"
+    source: hosted
+    version: "8.1.2"
+  package_info_plus_platform_interface:
+    dependency: transitive
+    description:
+      name: package_info_plus_platform_interface
+      sha256: a5ef9986efc7bf772f2696183a3992615baa76c1ffb1189318dd8803778fb05b
+      url: "https://pub.dev"
+    source: hosted
+    version: "3.0.2"
+  path:
+    dependency: transitive
+    description:
+      name: path
+      sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af"
+      url: "https://pub.dev"
+    source: hosted
+    version: "1.9.0"
+  path_provider:
+    dependency: transitive
+    description:
+      name: path_provider
+      sha256: "50c5dd5b6e1aaf6fb3a78b33f6aa3afca52bf903a8a5298f53101fdaee55bbcd"
+      url: "https://pub.dev"
+    source: hosted
+    version: "2.1.5"
+  path_provider_android:
+    dependency: transitive
+    description:
+      name: path_provider_android
+      sha256: "4adf4fd5423ec60a29506c76581bc05854c55e3a0b72d35bb28d661c9686edf2"
+      url: "https://pub.dev"
+    source: hosted
+    version: "2.2.15"
+  path_provider_foundation:
+    dependency: transitive
+    description:
+      name: path_provider_foundation
+      sha256: "4843174df4d288f5e29185bd6e72a6fbdf5a4a4602717eed565497429f179942"
+      url: "https://pub.dev"
+    source: hosted
+    version: "2.4.1"
+  path_provider_linux:
+    dependency: transitive
+    description:
+      name: path_provider_linux
+      sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279
+      url: "https://pub.dev"
+    source: hosted
+    version: "2.2.1"
+  path_provider_platform_interface:
+    dependency: transitive
+    description:
+      name: path_provider_platform_interface
+      sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334"
+      url: "https://pub.dev"
+    source: hosted
+    version: "2.1.2"
+  path_provider_windows:
+    dependency: transitive
+    description:
+      name: path_provider_windows
+      sha256: bd6f00dbd873bfb70d0761682da2b3a2c2fccc2b9e84c495821639601d81afe7
+      url: "https://pub.dev"
+    source: hosted
+    version: "2.3.0"
+  platform:
+    dependency: transitive
+    description:
+      name: platform
+      sha256: "5d6b1b0036a5f331ebc77c850ebc8506cbc1e9416c27e59b439f917a902a4984"
+      url: "https://pub.dev"
+    source: hosted
+    version: "3.1.6"
+  plugin_platform_interface:
+    dependency: transitive
+    description:
+      name: plugin_platform_interface
+      sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02"
+      url: "https://pub.dev"
+    source: hosted
+    version: "2.1.8"
+  provider:
+    dependency: transitive
+    description:
+      name: provider
+      sha256: c8a055ee5ce3fd98d6fc872478b03823ffdb448699c6ebdbbc71d59b596fd48c
+      url: "https://pub.dev"
+    source: hosted
+    version: "6.1.2"
+  shared_preferences:
+    dependency: transitive
+    description:
+      name: shared_preferences
+      sha256: a752ce92ea7540fc35a0d19722816e04d0e72828a4200e83a98cf1a1eb524c9a
+      url: "https://pub.dev"
+    source: hosted
+    version: "2.3.5"
+  shared_preferences_android:
+    dependency: transitive
+    description:
+      name: shared_preferences_android
+      sha256: "02a7d8a9ef346c9af715811b01fbd8e27845ad2c41148eefd31321471b41863d"
+      url: "https://pub.dev"
+    source: hosted
+    version: "2.4.0"
+  shared_preferences_foundation:
+    dependency: transitive
+    description:
+      name: shared_preferences_foundation
+      sha256: "6a52cfcdaeac77cad8c97b539ff688ccfc458c007b4db12be584fbe5c0e49e03"
+      url: "https://pub.dev"
+    source: hosted
+    version: "2.5.4"
+  shared_preferences_linux:
+    dependency: transitive
+    description:
+      name: shared_preferences_linux
+      sha256: "580abfd40f415611503cae30adf626e6656dfb2f0cee8f465ece7b6defb40f2f"
+      url: "https://pub.dev"
+    source: hosted
+    version: "2.4.1"
+  shared_preferences_platform_interface:
+    dependency: transitive
+    description:
+      name: shared_preferences_platform_interface
+      sha256: "57cbf196c486bc2cf1f02b85784932c6094376284b3ad5779d1b1c6c6a816b80"
+      url: "https://pub.dev"
+    source: hosted
+    version: "2.4.1"
+  shared_preferences_web:
+    dependency: transitive
+    description:
+      name: shared_preferences_web
+      sha256: d2ca4132d3946fec2184261726b355836a82c33d7d5b67af32692aff18a4684e
+      url: "https://pub.dev"
+    source: hosted
+    version: "2.4.2"
+  shared_preferences_windows:
+    dependency: transitive
+    description:
+      name: shared_preferences_windows
+      sha256: "94ef0f72b2d71bc3e700e025db3710911bd51a71cefb65cc609dd0d9a982e3c1"
+      url: "https://pub.dev"
+    source: hosted
+    version: "2.4.1"
+  sky_engine:
+    dependency: transitive
+    description: flutter
+    source: sdk
+    version: "0.0.0"
+  source_span:
+    dependency: transitive
+    description:
+      name: source_span
+      sha256: "254ee5351d6cb365c859e20ee823c3bb479bf4a293c22d17a9f1bf144ce86f7c"
+      url: "https://pub.dev"
+    source: hosted
+    version: "1.10.1"
+  string_scanner:
+    dependency: transitive
+    description:
+      name: string_scanner
+      sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43"
+      url: "https://pub.dev"
+    source: hosted
+    version: "1.4.1"
+  synchronized:
+    dependency: transitive
+    description:
+      name: synchronized
+      sha256: "69fe30f3a8b04a0be0c15ae6490fc859a78ef4c43ae2dd5e8a623d45bfcf9225"
+      url: "https://pub.dev"
+    source: hosted
+    version: "3.3.0+3"
+  term_glyph:
+    dependency: transitive
+    description:
+      name: term_glyph
+      sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e"
+      url: "https://pub.dev"
+    source: hosted
+    version: "1.2.2"
+  typed_data:
+    dependency: transitive
+    description:
+      name: typed_data
+      sha256: f9049c039ebfeb4cf7a7104a675823cd72dba8297f264b6637062516699fa006
+      url: "https://pub.dev"
+    source: hosted
+    version: "1.4.0"
+  unicons:
+    dependency: transitive
+    description:
+      name: unicons
+      sha256: f3eab9d87c226415ef857cfd2167e1d12ad81ea1f5783b46cf644224fea4eab7
+      url: "https://pub.dev"
+    source: hosted
+    version: "3.0.0"
+  vector_math:
+    dependency: transitive
+    description:
+      name: vector_math
+      sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803"
+      url: "https://pub.dev"
+    source: hosted
+    version: "2.1.4"
+  web:
+    dependency: transitive
+    description:
+      name: web
+      sha256: cd3543bd5798f6ad290ea73d210f423502e71900302dde696f8bff84bf89a1cb
+      url: "https://pub.dev"
+    source: hosted
+    version: "1.1.0"
+  win32:
+    dependency: transitive
+    description:
+      name: win32
+      sha256: "154360849a56b7b67331c21f09a386562d88903f90a1099c5987afc1912e1f29"
+      url: "https://pub.dev"
+    source: hosted
+    version: "5.10.0"
+  xdg_directories:
+    dependency: transitive
+    description:
+      name: xdg_directories
+      sha256: "7a3f37b05d989967cdddcbb571f1ea834867ae2faa29725fd085180e0883aa15"
+      url: "https://pub.dev"
+    source: hosted
+    version: "1.1.0"
+sdks:
+  dart: ">=3.6.0 <4.0.0"
+  flutter: ">=3.24.0"
diff --git a/pubspec.yaml b/pubspec.yaml
new file mode 100644
index 0000000..a0962c0
--- /dev/null
+++ b/pubspec.yaml
@@ -0,0 +1,43 @@
+name: suguru
+description: A suguru game application.
+
+publish_to: "none"
+
+version: 0.0.1+1
+
+environment:
+  sdk: "^3.0.0"
+
+dependencies:
+  flutter:
+    sdk: flutter
+
+  # base
+  flutter_custom_toolbox:
+    hosted: https://pub.harrault.fr
+    version: ^1.0.0
+
+  # specific
+  badges: ^3.1.2
+
+dev_dependencies:
+  flutter_lints: ^5.0.0
+
+flutter:
+  uses-material-design: true
+  assets:
+    - assets/skins/
+    - assets/translations/
+    - assets/ui/
+
+  fonts:
+    - family: Nunito
+      fonts:
+        - asset: packages/flutter_custom_toolbox/fonts/Nunito-Bold.ttf
+          weight: 700
+        - asset: packages/flutter_custom_toolbox/fonts/Nunito-Medium.ttf
+          weight: 500
+        - asset: packages/flutter_custom_toolbox/fonts/Nunito-Regular.ttf
+          weight: 400
+        - asset: packages/flutter_custom_toolbox/fonts/Nunito-Light.ttf
+          weight: 300
diff --git a/resources/app/build_application_resources.sh b/resources/app/build_application_resources.sh
new file mode 100755
index 0000000..1ace90d
--- /dev/null
+++ b/resources/app/build_application_resources.sh
@@ -0,0 +1,127 @@
+#! /bin/bash
+
+# Check dependencies
+command -v inkscape >/dev/null 2>&1 || {
+  echo >&2 "I require inkscape but it's not installed. Aborting."
+  exit 1
+}
+command -v scour >/dev/null 2>&1 || {
+  echo >&2 "I require scour but it's not installed. Aborting."
+  exit 1
+}
+command -v optipng >/dev/null 2>&1 || {
+  echo >&2 "I require optipng but it's not installed. Aborting."
+  exit 1
+}
+
+CURRENT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
+BASE_DIR="$(dirname "$(dirname "${CURRENT_DIR}")")"
+
+SOURCE_ICON="${CURRENT_DIR}/icon.svg"
+SOURCE_FASTLANE="${CURRENT_DIR}/featureGraphic.svg"
+SOURCE_LAUNCH_IMAGE="${CURRENT_DIR}/icon.svg"
+
+OPTIPNG_OPTIONS="-preserve -quiet -o7"
+
+if [ ! -f "${SOURCE_ICON}" ]; then
+  echo "Missing file: ${SOURCE_ICON}"
+fi
+
+if [ ! -f "${SOURCE_FASTLANE}" ]; then
+  echo "Missing file: ${SOURCE_FASTLANE}"
+fi
+
+if [ ! -f "${SOURCE_LAUNCH_IMAGE}" ]; then
+  echo "Missing file: ${SOURCE_LAUNCH_IMAGE}"
+fi
+
+function optimize_svg() {
+  SVG="$1"
+
+  cp ${SVG} ${SVG}.tmp
+  scour \
+    --remove-descriptive-elements \
+    --enable-id-stripping \
+    --enable-viewboxing \
+    --enable-comment-stripping \
+    --nindent=4 \
+    --quiet \
+    -i ${SVG}.tmp \
+    -o ${SVG}
+  rm ${SVG}.tmp
+}
+
+# optimize source svg files
+optimize_svg ${SOURCE_ICON}
+optimize_svg ${SOURCE_FASTLANE}
+optimize_svg ${SOURCE_LAUNCH_IMAGE}
+
+# build icons
+function build_application_icon() {
+  ICON_SIZE="$1"
+  TARGET="$2"
+
+  echo "Building ${TARGET}"
+
+  TARGET_PNG="${TARGET}.png"
+
+  inkscape \
+    --export-width=${ICON_SIZE} \
+    --export-height=${ICON_SIZE} \
+    --export-filename=${TARGET_PNG} \
+    ${SOURCE_ICON}
+
+  optipng ${OPTIPNG_OPTIONS} ${TARGET_PNG}
+}
+
+# build fastlane image
+function build_fastlane_image() {
+  WIDTH="$1"
+  HEIGHT="$2"
+  TARGET="$3"
+
+  echo "Building ${TARGET}"
+
+  TARGET_PNG="${TARGET}.png"
+
+  inkscape \
+    --export-width=${WIDTH} \
+    --export-height=${HEIGHT} \
+    --export-filename=${TARGET_PNG} \
+    ${SOURCE_FASTLANE}
+
+  optipng ${OPTIPNG_OPTIONS} ${TARGET_PNG}
+}
+
+# build launch images (splash screen)
+function build_launch_image() {
+  ICON_SIZE="$1"
+  TARGET="$2"
+
+  echo "Building ${TARGET}"
+
+  TARGET_PNG="${TARGET}.png"
+
+  inkscape \
+    --export-width=${ICON_SIZE} \
+    --export-height=${ICON_SIZE} \
+    --export-filename=${TARGET_PNG} \
+    ${SOURCE_LAUNCH_IMAGE}
+
+  optipng ${OPTIPNG_OPTIONS} ${TARGET_PNG}
+}
+
+build_application_icon 72 ${BASE_DIR}/android/app/src/main/res/mipmap-hdpi/ic_launcher
+build_application_icon 48 ${BASE_DIR}/android/app/src/main/res/mipmap-mdpi/ic_launcher
+build_application_icon 96 ${BASE_DIR}/android/app/src/main/res/mipmap-xhdpi/ic_launcher
+build_application_icon 144 ${BASE_DIR}/android/app/src/main/res/mipmap-xxhdpi/ic_launcher
+build_application_icon 192 ${BASE_DIR}/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher
+build_application_icon 512 ${BASE_DIR}/fastlane/metadata/android/en-US/images/icon
+
+build_launch_image 72 ${BASE_DIR}/android/app/src/main/res/mipmap-hdpi/launch_image
+build_launch_image 48 ${BASE_DIR}/android/app/src/main/res/mipmap-mdpi/launch_image
+build_launch_image 96 ${BASE_DIR}/android/app/src/main/res/mipmap-xhdpi/launch_image
+build_launch_image 144 ${BASE_DIR}/android/app/src/main/res/mipmap-xxhdpi/launch_image
+build_launch_image 192 ${BASE_DIR}/android/app/src/main/res/mipmap-xxxhdpi/launch_image
+
+build_fastlane_image 1024 500 ${BASE_DIR}/fastlane/metadata/android/en-US/images/featureGraphic
diff --git a/resources/app/featureGraphic.svg b/resources/app/featureGraphic.svg
new file mode 100644
index 0000000..412f224
--- /dev/null
+++ b/resources/app/featureGraphic.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg enable-background="new 0 0 100 100" version="1.1" viewBox="0 0 1024 500" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect width="1024" height="500" rx="0" ry="0" fill="#fcddff"/></svg>
diff --git a/resources/app/icon.svg b/resources/app/icon.svg
new file mode 100644
index 0000000..8c8b82b
--- /dev/null
+++ b/resources/app/icon.svg
@@ -0,0 +1,92 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg version="1.1" viewBox="0 0 28.747 28.747" xmlns="http://www.w3.org/2000/svg">
+    <defs>
+        <filter id="filter6206-7" x="-.072" y="-.072" width="1.144" height="1.144" color-interpolation-filters="sRGB">
+            <feGaussianBlur stdDeviation="0.658125"/>
+        </filter>
+    </defs>
+    <g transform="translate(0 -1093.8)">
+        <path transform="matrix(1.0781 0 0 1.0641 -.093733 2.7509)" d="m4.4177 1028.2v1.6051h-1.6052v18.192h1.6052v2.1402h18.192v-2.1402h2.1402v-18.192h-2.1402v-1.6051z" fill="#3e2723" filter="url(#filter6206-7)" opacity=".2"/>
+        <rect x="2.9987" y="1096.8" width="22.749" height="22.749" rx="1.1973" ry="1.1974" fill="#ff5722"/>
+        <g transform="translate(-22.32 1056.5)">
+            <path d="m0 0h51.2v51.2h-51.2z" fill="none" stroke-width="1.0667"/>
+            <g transform="matrix(.33601 0 0 .33601 1.5296 73.043)">
+                <path d="m0 0h51.2v51.2h-51.2z" fill="none" stroke-width="1.0667"/>
+            </g>
+            <g transform="matrix(.37187 0 0 .37187 38.802 63.239)">
+                <path d="m0 0h51.2v51.2h-51.2z" fill="none" stroke-width="1.0667"/>
+                <g transform="matrix(2.6891 0 0 2.6891 -82.906 -48.45)">
+                    <path d="m0 0h51.2v51.2h-51.2z" fill="none" stroke-width="1.0667"/>
+                </g>
+            </g>
+        </g>
+        <path d="m4.1958 1096.8c-0.66332 0-1.1979 0.5346-1.1979 1.1979v0.3334c0-0.6634 0.53459-1.1979 1.1979-1.1979h20.354c0.66332 0 1.1979 0.5345 1.1979 1.1979v-0.3334c0-0.6633-0.5346-1.1979-1.1979-1.1979z" fill="#fff" opacity=".2"/>
+        <rect x="128" y="546.52" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="128" y="631.85" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="128" y="674.52" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="128" y="589.19" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="128" y="717.19" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="213.33" y="546.52" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="213.33" y="631.85" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="213.33" y="674.52" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="213.33" y="589.19" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="213.33" y="717.19" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="298.67" y="546.52" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="298.67" y="631.85" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="298.67" y="674.52" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="298.67" y="589.19" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="298.67" y="717.19" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="170.67" y="546.52" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="170.67" y="631.85" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="170.67" y="674.52" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="170.67" y="589.19" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="170.67" y="717.19" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="256" y="546.52" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="256" y="631.85" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="256" y="674.52" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="256" y="589.19" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="256" y="717.19" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="128" y="759.85" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="213.33" y="759.85" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="298.67" y="759.85" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="170.67" y="759.85" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="256" y="759.85" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="341.33" y="589.19" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="341.33" y="631.85" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="341.33" y="717.19" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="341.33" y="546.52" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="341.33" y="674.52" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="341.33" y="759.85" width="42.667" height="42.667" fill="none" stroke-width="1.0667"/>
+        <rect x="160" y="578.52" width="192" height="192" fill="none" stroke-width="1.0667"/>
+        <g transform="matrix(.37344 0 0 .37344 4.7333 1097.4)">
+            <path d="m0 0h51.2v51.2h-51.2z" fill="none" stroke-width="1.0667"/>
+        </g>
+        <g transform="matrix(.36471 0 0 .36471 5.1356 1097.4)">
+            <path d="m0 0h51.2v51.2h-51.2z" fill="none" stroke-width="1.0667"/>
+        </g>
+        <g transform="matrix(.41585 0 0 .41585 84.325 1055.9)">
+            <g transform="matrix(.062269 0 0 .062269 -28.238 185.29)">
+                <g transform="matrix(38.618 0 0 38.618 14724 -13542)">
+                    <g transform="matrix(.71436 0 0 .71436 -400.52 188.34)">
+                        <path d="m1293.2-120.67c-181.75 0.2763-511.18 0.13525-699.05 0.13998-2.3216 10.413-3.593 21.251-3.593 32.384v114c207.65 0.73695 494.72 0.38136 706.23 0.3733v-114.37c0-11.18-1.2522-22.07-3.593-32.523zm-458.69 295.56c-78.385-4e-3 -158.85 0.17892-243.95 0.55995v138.63c286.34-0.39317 421.73-0.13827 706.23-0.32664v-137.75c-163.2-0.53005-311.22-1.1113-462.28-1.1199z" opacity="0" stroke-width="1.4932"/>
+                    </g>
+                </g>
+            </g>
+        </g>
+        <path d="m24.549 1119.5c0.66325 0 1.1979-0.5346 1.1979-1.1979v-0.3333c0 0.6632-0.53461 1.1978-1.1979 1.1978h-20.354c-0.66325 0-1.1979-0.5346-1.1979-1.1978v0.3333c0 0.6633 0.53461 1.1979 1.1979 1.1979z" fill="#3e2723" opacity=".2"/>
+    </g>
+    <g transform="matrix(1.28 0 0 1.28 -3.9012 -4.6043)" fill="#fff">
+        <rect x="9.7236" y="14.528" width="8.7839" height=".51811" stroke="#fff" stroke-width=".238"/>
+        <rect x="13.989" y="19.272" width="5.077" height=".56673" stroke="#fff" stroke-width=".18718"/>
+        <rect transform="rotate(90)" x="10.425" y="-14.524" width="9.3043" height=".51324" stroke="#fff" stroke-width=".238"/>
+        <rect transform="rotate(90)" x="9.8494" y="-19.039" width="9.9255" height=".50701" stroke="#fff" stroke-width=".2438"/>
+        <g transform="matrix(.5886 0 0 .5886 2.2289 -587.71)">
+            <path d="m23.863 1021.3h2.5664v1.1055h-4.2383v-1.1055l2.1289-1.8789c0.1901-0.1719 0.33073-0.3398 0.42188-0.5039 0.09114-0.1641 0.13672-0.3346 0.13672-0.5117-3e-6 -0.2735-0.09245-0.4935-0.27734-0.6602-0.1823-0.1666-0.42578-0.25-0.73047-0.25-0.23438 0-0.49089 0.051-0.76953 0.1524-0.27865 0.099-0.57682 0.2474-0.89453 0.4453v-1.2813c0.33854-0.1119 0.67318-0.1966 1.0039-0.2539 0.33073-0.06 0.65494-0.09 0.97266-0.09 0.69791 0 1.2396 0.1536 1.625 0.4609 0.38802 0.3073 0.58203 0.7357 0.58203 1.2852-5e-6 0.3177-0.08204 0.6146-0.24609 0.8906-0.16407 0.2734-0.50912 0.6406-1.0352 1.1016l-1.2461 1.0937"/>
+        </g>
+        <g transform="matrix(.58243 0 0 .58243 2.4665 -581.8)">
+            <path d="m25.169 1028.2c0.39322 0.1015 0.6914 0.2786 0.89453 0.5312 0.20572 0.25 0.30859 0.569 0.30859 0.957-5e-6 0.5782-0.22136 1.0183-0.66406 1.3203-0.44271 0.2995-1.0885 0.4493-1.9375 0.4493-0.29948 0-0.60026-0.025-0.90234-0.074-0.29948-0.047-0.59636-0.1184-0.89062-0.2148v-1.1602c0.28125 0.1407 0.5599 0.2474 0.83594 0.3204 0.27864 0.07 0.55208 0.1054 0.82031 0.1054 0.39844 0 0.70312-0.069 0.91406-0.207 0.21354-0.138 0.32031-0.3359 0.32031-0.5938-3e-6 -0.2656-0.10938-0.4661-0.32812-0.6015-0.21615-0.138-0.53646-0.207-0.96094-0.207h-0.60156v-0.9688h0.63281c0.3776 0 0.65885-0.059 0.84375-0.1758 0.18489-0.1198 0.27734-0.3008 0.27734-0.5429-4e-6 -0.224-0.08985-0.3972-0.26953-0.5196-0.17969-0.1224-0.4336-0.1836-0.76172-0.1836-0.24219 0-0.48698 0.027-0.73438 0.082s-0.49349 0.1354-0.73828 0.2421v-1.1015c0.29687-0.083 0.59114-0.1458 0.88281-0.1875 0.29166-0.042 0.57812-0.063 0.85938-0.063 0.75781 0 1.3242 0.125 1.6992 0.375 0.3776 0.2474 0.5664 0.6211 0.56641 1.1211-5e-6 0.3411-0.08985 0.6211-0.26953 0.8398-0.17969 0.2162-0.44532 0.3685-0.79688 0.4571"/>
+        </g>
+        <rect transform="rotate(90)" x="10.399" y="-10.035" width="4.7057" height=".56519" stroke="#fff" stroke-width=".15281"/>
+        <rect x="9.4971" y="9.8244" width="9.5594" height=".51092" stroke="#fff" stroke-width=".20708"/>
+    </g>
+</svg>
diff --git a/resources/build_resources.sh b/resources/build_resources.sh
new file mode 100755
index 0000000..774953c
--- /dev/null
+++ b/resources/build_resources.sh
@@ -0,0 +1,6 @@
+#! /bin/bash
+
+CURRENT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
+
+${CURRENT_DIR}/app/build_application_resources.sh
+${CURRENT_DIR}/ui/build_ui_resources.sh
diff --git a/resources/ui/build_ui_resources.sh b/resources/ui/build_ui_resources.sh
new file mode 100755
index 0000000..4fa137a
--- /dev/null
+++ b/resources/ui/build_ui_resources.sh
@@ -0,0 +1,115 @@
+#! /bin/bash
+
+# Check dependencies
+command -v inkscape >/dev/null 2>&1 || {
+  echo >&2 "I require inkscape but it's not installed. Aborting."
+  exit 1
+}
+command -v scour >/dev/null 2>&1 || {
+  echo >&2 "I require scour but it's not installed. Aborting."
+  exit 1
+}
+command -v optipng >/dev/null 2>&1 || {
+  echo >&2 "I require optipng but it's not installed. Aborting."
+  exit 1
+}
+
+CURRENT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
+BASE_DIR="$(dirname "$(dirname "${CURRENT_DIR}")")"
+ASSETS_DIR="${BASE_DIR}/assets"
+
+OPTIPNG_OPTIONS="-preserve -quiet -o7"
+ICON_SIZE=192
+
+#######################################################
+
+# Game images (svg files found in `images` folder)
+AVAILABLE_GAME_IMAGES=""
+if [ -d "${CURRENT_DIR}/images" ]; then
+  AVAILABLE_GAME_IMAGES="$(find "${CURRENT_DIR}/images" -type f -name "*.svg" | awk -F/ '{print $NF}' | cut -d"." -f1 | sort)"
+fi
+
+# Skins (subfolders found in `skins` folder)
+AVAILABLE_SKINS=""
+if [ -d "${CURRENT_DIR}/skins" ]; then
+  AVAILABLE_SKINS="$(find "${CURRENT_DIR}/skins" -mindepth 1 -type d | awk -F/ '{print $NF}')"
+fi
+
+# Images per skin (svg files found recursively in `skins` folder and subfolders)
+SKIN_IMAGES=""
+if [ -d "${CURRENT_DIR}/skins" ]; then
+  SKIN_IMAGES="$(find "${CURRENT_DIR}/skins" -type f -name "*.svg" | awk -F/ '{print $NF}' | cut -d"." -f1 | sort | uniq)"
+fi
+
+#######################################################
+
+# optimize svg
+function optimize_svg() {
+  SOURCE="$1"
+
+  cp ${SOURCE} ${SOURCE}.tmp
+  scour \
+    --remove-descriptive-elements \
+    --enable-id-stripping \
+    --enable-viewboxing \
+    --enable-comment-stripping \
+    --nindent=4 \
+    --quiet \
+    -i ${SOURCE}.tmp \
+    -o ${SOURCE}
+  rm ${SOURCE}.tmp
+}
+
+# build icons
+function build_image() {
+  SOURCE="$1"
+  TARGET="$2"
+
+  echo "Building ${TARGET}"
+
+  if [ ! -f "${SOURCE}" ]; then
+    echo "Missing file: ${SOURCE}"
+    exit 1
+  fi
+
+  optimize_svg "${SOURCE}"
+
+  mkdir -p "$(dirname "${TARGET}")"
+
+  inkscape \
+    --export-width=${ICON_SIZE} \
+    --export-height=${ICON_SIZE} \
+    --export-filename=${TARGET} \
+    "${SOURCE}"
+
+  optipng ${OPTIPNG_OPTIONS} "${TARGET}"
+}
+
+function build_image_for_skin() {
+  SKIN_CODE="$1"
+
+  # skin images
+  for SKIN_IMAGE in ${SKIN_IMAGES}; do
+    build_image ${CURRENT_DIR}/skins/${SKIN_CODE}/${SKIN_IMAGE}.svg ${ASSETS_DIR}/skins/${SKIN_CODE}_${SKIN_IMAGE}.png
+  done
+}
+
+#######################################################
+
+# Delete existing generated images
+if [ -d "${ASSETS_DIR}/ui" ]; then
+  find ${ASSETS_DIR}/ui -type f -name "*.png" -delete
+fi
+if [ -d "${ASSETS_DIR}/skins" ]; then
+  find ${ASSETS_DIR}/skins -type f -name "*.png" -delete
+fi
+
+# build game images
+for GAME_IMAGE in ${AVAILABLE_GAME_IMAGES}; do
+  build_image ${CURRENT_DIR}/images/${GAME_IMAGE}.svg ${ASSETS_DIR}/ui/${GAME_IMAGE}.png
+done
+
+# build skins images
+for SKIN in ${AVAILABLE_SKINS}; do
+  build_image_for_skin "${SKIN}"
+done
diff --git a/resources/ui/images/button_help.svg b/resources/ui/images/button_help.svg
new file mode 100644
index 0000000..7cb7746
--- /dev/null
+++ b/resources/ui/images/button_help.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg enable-background="new 0 0 100 100" version="1.1" viewBox="0 0 91.389 91.821" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="m45.696 2.4343a43.476 43.476 0 0 0-43.478 43.476 43.476 43.476 0 0 0 43.478 43.476 43.476 43.476 0 0 0 43.476-43.476 43.476 43.476 0 0 0-43.476-43.476zm3.1366 9.6579c0.591-6e-6 1.126 0.24403 1.5134 0.63142h0.0026c0.38728 0.38725 0.62881 0.92227 0.62886 1.5134v5.7058c0 1.1821-0.9627 2.1448-2.1448 2.1448-1.1819 0-2.1422-0.9627-2.1422-2.1448v-5.7058c-7.1e-5 -1.1819 0.96028-2.1448 2.1422-2.1448zm-20.177 8.3593c0.54774 9e-6 1.0955 0.21097 1.5134 0.62886l4.0365 4.0339c0.83585 0.83585 0.83585 2.1909 0 3.0267-0.83578 0.83585-2.1909 0.83585-3.0267 0l-4.0365-4.0339c-0.83578-0.83578-0.83578-2.1909 0-3.0267 0.41793-0.41792 0.96562-0.62887 1.5134-0.62886zm40.357 0c0.54775 0 1.0955 0.20842 1.5134 0.62631 0.83585 0.83585 0.83578 2.1909 0 3.0267l-4.0365 4.0365c-0.83585 0.83585-2.1909 0.83585-3.0267 0-0.83578-0.83578-0.83585-2.1909 0-3.0267l4.0365-4.0365c0.41789-0.41789 0.96561-0.62631 1.5134-0.62631zm-22.447 3.9496c5.4516-0.25629 10.98 1.8586 14.881 5.7595 6.9349 6.9345 8.2262 19.017 0.5854 26.658-4.7578 4.7575-9.7253 5.955-13.779 6.6516-4.0538 0.6968-6.9802 0.99072-9.5071 3.5175l-6.0534 6.0534c-1.9889 1.989-5.1849 1.8782-7.0632 0l-7.0632-7.0632c-1.8783-1.8782-1.9889-5.0744 0-7.0632l6.0534-6.0534c2.5267-2.527 2.8208-5.4535 3.5175-9.5071 0.69673-4.0537 1.8942-9.0187 6.6516-13.776 3.3429-3.343 7.537-4.9773 11.777-5.1766zm0.32977 4.2717c-3.2795 0.13023-6.516 1.3649-9.0802 3.9291-4.002 4.0023-4.8061 7.5968-5.4706 11.463-0.56653 3.2962-0.97171 6.9455-3.3105 10.184l8.3235 8.3235c3.2392-2.3388 6.8885-2.744 10.184-3.3105 3.8661-0.66448 7.458-1.4685 11.46-5.4706 5.8609-5.8608 4.7865-15.235-0.58285-20.604-3.0202-3.0202-7.3075-4.6819-11.524-4.5145zm0.63142 1.7869c2.1262-0.0535 4.2645 0.36548 6.2426 1.2603 0.28967 0.17483 0.54908 0.37763 0.75668 0.60074 0.62287 0.66941 0.80579 1.5401 0.1406 2.5691-0.56817 0.81323-1.7464 1.1365-2.6484 0.72345-3.1577-1.4285-6.89-1.1193-9.8036 0.91517-0.92039 0.64824-2.3633 0.40152-3.0114-0.51894-0.64801-0.92039-0.3837-2.3481 0.53683-2.996 2.3392-1.6335 5.0529-2.485 7.7866-2.5538zm24.134 10.167h5.7083c0.59107 5e-5 1.1261 0.24414 1.5134 0.63142 0.38738 0.38742 0.62886 0.92236 0.62886 1.5134 0 1.182-0.96028 2.1448-2.1422 2.1448h-5.7083c-1.1821 0-2.1422-0.96277-2.1422-2.1448 0-1.1821 0.96014-2.1448 2.1422-2.1448zm-6.6823 16.148c0.54774-9e-6 1.0954 0.20838 1.5134 0.6263l4.0339 4.0365c0.8358 0.83585 0.83578 2.1909 0 3.0267-0.83578 0.83585-2.1909 0.83585-3.0267 0l-4.0339-4.0365c-0.83584-0.83592-0.83585-2.1908 0-3.0267 0.41789-0.41789 0.96562-0.6263 1.5134-0.6263zm-38.846 0.6263-1.0072 1.0098 8.0704 8.0704 1.0098-1.0072zm-4.0339 4.0365-0.50616 0.5036c-0.32977 0.32975-0.25105 0.75863 0 1.0098l7.0632 7.0632c0.25106 0.25106 0.68 0.32975 1.0098 0l0.5036-0.50616z" color="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.3088" style="-inkscape-stroke:none"/></svg>
diff --git a/resources/ui/images/button_show_conflicts.svg b/resources/ui/images/button_show_conflicts.svg
new file mode 100644
index 0000000..6a31ce0
--- /dev/null
+++ b/resources/ui/images/button_show_conflicts.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg enable-background="new 0 0 100 100" version="1.1" viewBox="0 0 91.389 91.821" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="m45.693 7.5248c-21.798 0-39.519 16.214-39.519 36.163 0 11.415 5.7398 21.549 14.726 28.163-0.83199 3.307-2.5787 7.5755-5.9899 12.697-2.1632 3.2003 0.41555 8.1073 3.4939 6.6139 6.4896-3.0936 13.977-7.4673 20.882-11.734 2.08 0.32004 4.2436 0.53349 6.4067 0.53349 21.798 0 39.521-16.216 39.521-36.166 0-20.056-17.723-36.268-39.521-36.268zm0.03572 14.926c1.6203 0 2.9398 0.5333 3.9583 1.5981 1.0648 1.0648 1.5957 2.3843 1.5957 3.9583 0 0.32407-0.04555 1.0875-0.13814 2.2912l-2.0149 20.625c-0.23148 2.2685-1.364 3.4034-3.401 3.4034-0.9722 0-1.7835-0.30081-2.4317-0.90265-0.60184-0.60184-0.9482-1.436-1.0408-2.5008l-2.0149-20.625c-0.09259-1.1111-0.13814-1.8745-0.13814-2.2912 0-1.6203 0.5333-2.9398 1.5981-3.9583 1.0648-1.0648 2.4071-1.5981 4.0274-1.5981zm-0.62638 36.18h1.1813c1.2963 0 2.3833 0.43983 3.2629 1.3194 0.87961 0.87961 1.3194 1.969 1.3194 3.2653s-0.43983 2.3833-1.3194 3.2629c-0.87961 0.87961-1.9666 1.3194-3.2629 1.3194h-1.1813c-1.2963 0-2.406-0.43983-3.332-1.3194-0.87961-0.92591-1.3194-2.0129-1.3194-3.2629s0.43983-2.3142 1.3194-3.1938c0.92591-0.92591 2.0357-1.3909 3.332-1.3909z" stroke-width="1.2194"/></svg>
diff --git a/resources/ui/images/cell_empty.svg b/resources/ui/images/cell_empty.svg
new file mode 100644
index 0000000..6b7cca7
--- /dev/null
+++ b/resources/ui/images/cell_empty.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg enable-background="new 0 0 100 100" version="1.1" viewBox="0 0 100 100" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" ry="2" fill="none"/></svg>
diff --git a/resources/ui/images/game_win.svg b/resources/ui/images/game_win.svg
new file mode 100644
index 0000000..fe20923
--- /dev/null
+++ b/resources/ui/images/game_win.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg enable-background="new 0 0 100 100" version="1.1" viewBox="0 0 93.665 93.676" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><g transform="matrix(.17604 0 0 .17604 7.9341 1.7716)"><path d="m101.92 496.35c-1.8555 0-3.7109-0.69532-5.1484-2.0898-2.9297-2.8438-3-7.5234-0.15234-10.453l9.1875-9.4648c2.8438-2.9297 7.5234-3 10.453-0.15625s3 7.5234 0.15625 10.453l-9.1914 9.4648c-1.4492 1.4961-3.375 2.2461-5.3047 2.2461z" fill="#ff4e61"/><path d="m201.65 133.26c-1.8516 0-3.7109-0.69531-5.1445-2.0898-2.9297-2.8438-3-7.5234-0.15625-10.449l9.1914-9.4688c2.8438-2.9297 7.5195-3 10.449-0.15625s3 7.5234 0.15625 10.453l-9.1914 9.4688c-1.4492 1.4922-3.375 2.2422-5.3047 2.2422z" fill="#ff4e61"/><path d="m413.8 100.39c-1.8555 0-3.7109-0.69141-5.1484-2.0859-2.9297-2.8438-3-7.5234-0.15625-10.453l9.1914-9.4688c2.8438-2.9258 7.5234-2.9961 10.453-0.15234 2.9297 2.8398 3 7.5234 0.15625 10.449l-9.1914 9.4688c-1.4492 1.4922-3.375 2.2422-5.3047 2.2422z" fill="#5c73bc"/><path d="m413.8 463.77c-1.8555 0-3.7109-0.69532-5.1484-2.0859-2.9297-2.8438-3-7.5234-0.15625-10.453l9.1914-9.4688c2.8438-2.9258 7.5234-3 10.453-0.15625s3 7.5234 0.15625 10.453l-9.1914 9.4688c-1.4492 1.4922-3.375 2.2422-5.3047 2.2422z" fill="#fa0"/><path d="m63.07 112.91c-1.8516 0-3.7109-0.69141-5.1445-2.0859-2.9297-2.8438-3-7.5234-0.15625-10.453l9.1914-9.4687c2.8438-2.9258 7.5234-2.9961 10.453-0.15234 2.9258 2.8438 2.9961 7.5234 0.15234 10.449l-9.1914 9.4688c-1.4492 1.4922-3.375 2.2422-5.3047 2.2422z" fill="#fa0"/><path d="m12.309 278.82c-1.8516 0-3.7109-0.69141-5.1445-2.0859-2.9297-2.8438-3-7.5234-0.15625-10.453l9.1875-9.4688c2.8438-2.9297 7.5234-3 10.453-0.15625 2.9297 2.8438 3 7.5234 0.15625 10.453l-9.1914 9.4688c-1.4453 1.4922-3.375 2.2422-5.3047 2.2422z" fill="#2dc471"/><path d="m216.29 278.49-23.996 12.996c-6.2226 3.3711-13.496-2.0742-12.309-9.2148l4.582-27.523c0.47266-2.8359-0.4375-5.7266-2.4375-7.7344l-19.414-19.496c-5.0352-5.0547-2.2578-13.863 4.7031-14.906l26.824-4.0156c2.7656-0.41407 5.1524-2.1992 6.3867-4.7812l12-25.043c3.1133-6.4922 12.102-6.4922 15.215 0l11.996 25.043c1.2383 2.582 3.625 4.3672 6.3867 4.7812l26.828 4.0156c6.957 1.043 9.7344 9.8516 4.6992 14.906l-19.41 19.496c-2 2.0078-2.9141 4.8984-2.4414 7.7344l4.582 27.523c1.1914 7.1406-6.082 12.586-12.305 9.2148l-23.996-12.996c-2.4727-1.3398-5.4258-1.3398-7.8945 0z" fill="#ffd02f"/><path d="m220.24 512c-4.082 0-7.3906-3.3086-7.3906-7.3906v-115.59c0-4.082 3.3086-7.3945 7.3906-7.3945s7.3906 3.3125 7.3906 7.3945v115.59c0 4.082-3.3086 7.3906-7.3906 7.3906z" fill="#5c73bc"/><path d="m220.3 357.42h-0.11328c-4.082 0-7.3945-3.3125-7.3945-7.3945s3.3086-7.3906 7.3945-7.3906h0.11328c4.082 0 7.3906 3.3086 7.3906 7.3906s-3.3086 7.3945-7.3906 7.3945z" fill="#5c73bc"/><path d="m220.3 332h-0.14838c-4.082-0.0156-7.375-3.3398-7.3594-7.4219 0.0195-4.0742 3.3242-7.3594 7.3906-7.3594h0.14848c4.082 0.0156 7.375 3.3398 7.3594 7.4219-0.0156 4.0703-3.3242 7.3594-7.3906 7.3594z" fill="#fa0"/><path d="m87.234 230.89c-1.9297 0-3.8555-0.75-5.3047-2.2422l-79.34-81.738c-2.8438-2.9297-2.7773-7.6094 0.15234-10.449 2.9297-2.8438 7.6094-2.7734 10.453 0.15235l79.344 81.738c2.8438 2.9258 2.7734 7.6094-0.15625 10.449-1.4375 1.3945-3.293 2.0898-5.1484 2.0898z" fill="#ff4e61"/><path d="m113.95 258.5c-1.8633 0-3.7266-0.69922-5.1641-2.1055-2.9219-2.8516-2.9766-7.5312-0.125-10.453l0.082-0.082c2.8516-2.918 7.5312-2.9766 10.453-0.12109 2.9219 2.8516 2.9766 7.5312 0.12109 10.453l-0.0781 0.082c-1.4492 1.4805-3.3672 2.2266-5.2891 2.2266z" fill="#fa0"/><path d="m131.4 276.48c-1.8555 0-3.7109-0.69531-5.1484-2.0898-2.9258-2.8438-2.9961-7.5234-0.15235-10.449l0.0781-0.0859c2.8476-2.9297 7.5273-2.9961 10.453-0.15235 2.9297 2.8438 3 7.5234 0.15625 10.453l-0.082 0.082c-1.4492 1.4922-3.375 2.2422-5.3047 2.2422z" fill="#5c73bc"/><path d="m353.24 227.99c-1.8555 0-3.7109-0.69141-5.1445-2.0859-2.9297-2.8438-3-7.5234-0.15625-10.453l79.34-81.734c2.8438-2.9297 7.5234-3 10.453-0.15625 2.9297 2.8438 3 7.5234 0.15625 10.453l-79.344 81.734c-1.4492 1.4922-3.375 2.2422-5.3047 2.2422z" fill="#fa0"/><path d="m326.52 255.6c-1.9141 0-3.8242-0.73828-5.2695-2.2109l-0.082-0.082c-2.8633-2.9141-2.8203-7.5938 0.0899-10.453 2.9141-2.8633 7.5938-2.8203 10.453 0.0898l0.082 0.082c2.8594 2.9141 2.8203 7.5938-0.0937 10.453-1.4375 1.4141-3.3086 2.1211-5.1797 2.1211z" fill="#ff4e61"/><path d="m309.07 273.58c-1.9297 0-3.8555-0.75-5.3047-2.2422l-0.082-0.082c-2.8398-2.9297-2.7734-7.6094 0.15625-10.453s7.6094-2.7734 10.453 0.15234l0.082 0.082c2.8398 2.9297 2.7734 7.6094-0.15625 10.453-1.4375 1.3945-3.293 2.0898-5.1484 2.0898z" fill="#fa0"/><path d="m300.65 116.69c-1.2422 0-2.5-0.3125-3.6523-0.97266-3.5469-2.0234-4.7812-6.5391-2.7578-10.082l56.863-99.652c2.0234-3.543 6.5352-4.7773 10.082-2.7539 3.5469 2.0234 4.7812 6.5391 2.7578 10.082l-56.863 99.652c-1.3633 2.3867-3.8594 3.7266-6.4297 3.7266z" fill="#62d38f"/><path d="m281.52 150.33c-1.293 0-2.5977-0.33593-3.7891-1.0469l-0.0976-0.0586c-3.5-2.0938-4.6445-6.6328-2.5469-10.137 2.0938-3.5078 6.6328-4.6445 10.137-2.5508l0.0977 0.0586c3.5039 2.0938 4.6445 6.6328 2.5508 10.137-1.3867 2.3164-3.8359 3.5976-6.3516 3.5976z" fill="#fa0"/><path d="m269.02 172.25c-1.3008 0-2.6172-0.34375-3.8086-1.0625l-0.0977-0.0586c-3.4961-2.1094-4.6211-6.6523-2.5156-10.148 2.1094-3.4961 6.6523-4.6172 10.148-2.5117l0.0976 0.0586c3.4961 2.1094 4.6211 6.6523 2.5117 10.148-1.3867 2.3008-3.832 3.5742-6.3359 3.5742z" fill="#2dc471"/><path d="m139.96 116.69c-2.5703 0-5.0664-1.3398-6.4297-3.7305l-56.863-99.648c-2.0234-3.5469-0.78906-8.0586 2.7539-10.082 3.5469-2.0234 8.0625-0.79297 10.086 2.7539l56.863 99.648c2.0234 3.5469 0.78906 8.0625-2.7539 10.086-1.1562 0.66016-2.4141 0.97266-3.6562 0.97266z" fill="#5c73bc"/><path d="m159.09 150.33c-2.5078 0-4.957-1.2773-6.3438-3.582-2.1016-3.5-0.96875-8.043 2.5273-10.145l0.10157-0.0586c3.5-2.1016 8.0391-0.97266 10.141 2.5273 2.1055 3.5 0.97266 8.0391-2.5273 10.145l-0.0977 0.0586c-1.1914 0.71484-2.5039 1.0547-3.8008 1.0547z" fill="#ff4e61"/><path d="m171.6 172.25c-2.5 0-4.9375-1.2656-6.3281-3.5625-2.1172-3.4922-1-8.0352 2.4883-10.152l0.0977-0.0586c3.4961-2.1133 8.0391-1 10.156 2.4922 2.1133 3.4922 1 8.0352-2.4922 10.152l-0.0977 0.0586c-1.1992 0.72656-2.5195 1.0703-3.8242 1.0703z" fill="#fa0"/><path d="m402.14 357.28-15.523 11.602c-4.0234 3.0117-9.6523-0.043-9.5234-5.1641l0.5039-19.75c0.0508-2.0352-0.87109-3.9648-2.4688-5.1641l-15.508-11.621c-4.0234-3.0156-2.9453-9.4726 1.8242-10.93l18.391-5.6094c1.8906-0.57812 3.3906-2.082 4-4.0156l5.9375-18.785c1.5391-4.875 7.8359-5.8125 10.652-1.5898l10.863 16.285c1.1211 1.6758 2.9688 2.6797 4.9414 2.6797l19.18 0.0117c4.9766 4e-3 7.7891 5.8828 4.7578 9.9492l-11.676 15.672c-1.2031 1.6172-1.5586 3.7383-0.94922 5.6719l5.918 18.797c1.5312 4.875-3.0273 9.4453-7.7148 7.7344l-18.078-6.5977c-1.8594-0.67969-3.9258-0.37109-5.5273 0.82422z" fill="#ffd02f"/><path d="m261.51 512c-4.082 0-7.3906-3.3086-7.3906-7.3906 0-57.23 22.832-95.922 41.984-118.3 20.828-24.332 41.613-35.023 42.488-35.469 3.6406-1.8477 8.0898-0.39063 9.9336 3.2539 1.8438 3.6367 0.39453 8.0781-3.2422 9.9297-0.3125 0.16016-19.5 10.164-38.367 32.395-25.227 29.719-38.016 66.121-38.016 108.2 0 4.082-3.3086 7.3906-7.3906 7.3906z" fill="#ff4e61"/><path d="m102.86 397.35 11.766 15.605c3.0547 4.0469 9.2852 2.7305 10.547-2.2266l4.8633-19.113c0.5-1.9648 1.9102-3.5547 3.7695-4.2461l18.039-6.707c4.6797-1.7383 5.3906-8.25 1.207-11.016l-16.141-10.672c-1.6602-1.1016-2.6914-2.9726-2.7578-5.0039l-0.61719-19.75c-0.15625-5.1211-5.9492-7.832-9.7969-4.5859l-14.84 12.516c-1.5312 1.2891-3.5781 1.7227-5.4726 1.1562l-18.422-5.5c-4.7773-1.4258-9.0703 3.4102-7.2617 8.1836l6.9688 18.41c0.71875 1.8945 0.48438 4.0352-0.625 5.7188l-10.77 16.348c-2.793 4.2422 0.34375 9.9375 5.3125 9.6445l19.145-1.1406c1.9727-0.11719 3.875 0.77343 5.0859 2.3789z" fill="#ffd02f"/><path d="m179.02 512c-4.082 0-7.3906-3.3086-7.3906-7.3906 0-30.059-6.6797-57.559-19.852-81.734-1.9531-3.5859-0.62891-8.0742 2.957-10.027 3.5859-1.9531 8.0742-0.62891 10.027 2.9531 14.363 26.375 21.648 56.254 21.648 88.809 0 4.082-3.3086 7.3906-7.3906 7.3906z" fill="#fa0"/><path d="m268.93 55.898c0-11.285-8.8828-20.434-19.836-20.434-10.957 0-19.836 9.1484-19.836 20.434 0 11.285 8.8789 20.438 19.836 20.438 10.953 0 19.836-9.1523 19.836-20.438z" fill="#ffd02f"/><path d="m373.08 446.81c0-11.285-8.8789-20.434-19.832-20.434-10.957 0-19.836 9.1484-19.836 20.434s8.8789 20.434 19.836 20.434c10.953 0 19.832-9.1484 19.832-20.434z" fill="#5c73bc"/><path d="m44.129 450.86c0-9.0508-7.1211-16.387-15.91-16.387-8.7852 0-15.906 7.3359-15.906 16.387 0 9.0547 7.1211 16.391 15.906 16.391 8.7891 0 15.91-7.3359 15.91-16.391z" fill="#62d38f"/><path d="m88.172 288.35c0-9.0508-7.1211-16.387-15.91-16.387-8.7852 0-15.906 7.3359-15.906 16.387s7.1211 16.391 15.906 16.391c8.7891 0 15.91-7.3398 15.91-16.391z" fill="#5c73bc"/><g fill="#ff4e61"><path d="m210.84 16.391c0-9.0547-7.1211-16.391-15.906-16.391-8.7891 0-15.91 7.3359-15.91 16.391 0 9.0508 7.1211 16.387 15.91 16.387 8.7852 0 15.906-7.3359 15.906-16.387z"/><path d="m365.23 152.88c0-9.0508-7.125-16.391-15.91-16.391-8.7852 0-15.91 7.3398-15.91 16.391s7.125 16.387 15.91 16.387c8.7852 0 15.91-7.3359 15.91-16.387z"/><path d="m139.96 32.746c-1.8555 0-3.7109-0.69141-5.1484-2.0898-2.9297-2.8438-3-7.5195-0.15625-10.449l9.1914-9.4688c2.8438-2.9297 7.5234-3 10.449-0.15625 2.9297 2.8438 3 7.5234 0.15625 10.453l-9.1875 9.4688c-1.4492 1.4922-3.3789 2.2422-5.3047 2.2422z"/></g></g></svg>
diff --git a/resources/ui/images/placeholder.svg b/resources/ui/images/placeholder.svg
new file mode 100644
index 0000000..23ace81
--- /dev/null
+++ b/resources/ui/images/placeholder.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg enable-background="new 0 0 100 100" version="1.1" viewBox="0 0 102 102" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"/>
diff --git a/resources/ui/images/skin_digits.svg b/resources/ui/images/skin_digits.svg
new file mode 100644
index 0000000..37ebe19
--- /dev/null
+++ b/resources/ui/images/skin_digits.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg enable-background="new 0 0 100 100" version="1.1" viewBox="0 0 102 102" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><g transform="translate(-1.177 -.0046054)" stroke="#000"><g transform="matrix(1.5228 0 0 1.5228 -16.912 -7.9424)" aria-label="1"><path d="m36.69 6.9411v29.121h-8.0469v-19.082q-1.9531 1.4844-3.7891 2.4023-1.8164 0.91797-4.5703 1.7578v-6.5234q4.0625-1.3086 6.3086-3.1445t3.5156-4.5312z" stroke="#000"/></g><g transform="matrix(1.3442 0 0 1.3442 -8.5815 -3.4915)" aria-label="2"><path d="m77.189 37.541h-27.036q0.46462-4.0045 2.8098-7.5223 2.3673-3.5399 8.8498-8.3409 3.9603-2.9426 5.0665-4.4691 1.1062-1.5266 1.1062-2.8983 0-1.4823-1.1062-2.5222-1.0841-1.062-2.7434-1.062-1.7257 0-2.8319 1.0841-1.0841 1.0841-1.4602 3.8275l-9.0268-0.73011q0.53099-3.8054 1.947-5.9294 1.416-2.1461 3.9824-3.2744 2.5886-1.1505 7.1462-1.1505 4.7568 0 7.3896 1.0841 2.6549 1.0841 4.1594 3.3408 1.5266 2.2346 1.5266 5.0223 0 2.9647-1.7478 5.6639-1.7257 2.6992-6.3055 5.9294-2.7213 1.8806-3.6505 2.6328-0.9071 0.75223-2.1461 1.9691h14.071z" stroke="#000" stroke-width="1.1328"/></g><g transform="matrix(1.5228 0 0 1.5228 -18.11 -43.364)" aria-label="3"><path d="m25.468 72.902-7.5195-1.3477q0.9375-3.5938 3.5938-5.5078 2.6758-1.9141 7.5586-1.9141 5.6055 0 8.1055 2.0898t2.5 5.2539q0 1.8555-1.0156 3.3594t-3.0664 2.6367q1.6602 0.41016 2.5391 0.95703 1.4258 0.87891 2.207 2.3242 0.80078 1.4258 0.80078 3.418 0 2.5-1.3086 4.8047-1.3086 2.2852-3.7695 3.5352-2.4609 1.2305-6.4648 1.2305-3.9062 0-6.1719-0.91797-2.2461-0.91797-3.7109-2.6758-1.4453-1.7773-2.2266-4.4531l7.9492-1.0547q0.46875 2.4023 1.4453 3.3398 0.99609 0.91797 2.5195 0.91797 1.6016 0 2.6562-1.1719 1.0742-1.1719 1.0742-3.125 0-1.9922-1.0352-3.0859-1.0156-1.0938-2.7734-1.0938-0.9375 0-2.5781 0.46875l0.41016-5.6836q0.66406 0.09766 1.0352 0.09766 1.5625 0 2.5977-0.99609 1.0547-0.99609 1.0547-2.3633 0-1.3086-0.78125-2.0898t-2.1484-0.78125q-1.4062 0-2.2852 0.85938-0.87891 0.83984-1.1914 2.9688z" stroke="#000"/></g><g transform="matrix(1.5228 0 0 1.5228 -20.748 -41.608)" aria-label="4"><path d="m66.145 86.993h-14.492v-6.543l14.492-17.227h6.9336v17.598h3.5938v6.1719h-3.5938v5.3516h-6.9336zm0-6.1719v-9.0039l-7.6562 9.0039z" stroke="#000"/></g></g></svg>
diff --git a/resources/ui/skins/digits/1.svg b/resources/ui/skins/digits/1.svg
new file mode 100644
index 0000000..81640a4
--- /dev/null
+++ b/resources/ui/skins/digits/1.svg
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg enable-background="new 0 0 100 100" version="1.1" viewBox="0 0 100 100" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" ry="2" fill="none"/>
+  
+<g stroke-width="3.1763" aria-label="1"><path d="m66.056 3.7513v92.497h-25.559v-60.61q-6.2037 4.7148-12.035 7.6306-5.7695 2.9157-14.517 5.5833v-20.72q12.904-4.1565 20.038-9.988t11.167-14.393z"/></g></svg>
diff --git a/resources/ui/skins/digits/2.svg b/resources/ui/skins/digits/2.svg
new file mode 100644
index 0000000..7f1a27e
--- /dev/null
+++ b/resources/ui/skins/digits/2.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg enable-background="new 0 0 100 100" version="1.1" viewBox="0 0 100 100" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" ry="2" fill="none"/><g stroke-width="3.1763" aria-label="2"><path d="m87.905 96.249h-75.809q1.3028-11.229 7.8787-21.093 6.638-9.9259 24.815-23.388 11.105-8.2509 14.206-12.531 3.1019-4.2806 3.1019-8.1269 0-4.1565-3.1019-7.0722-3.0398-2.9778-7.6926-2.9778-4.8389 0-7.9408 3.0398-3.0398 3.0398-4.0944 10.732l-25.311-2.0472q1.4889-10.67 5.4593-16.626 3.9704-6.0176 11.167-9.1815 7.2583-3.2259 20.038-3.2259 13.338 0 20.72 3.0398 7.4445 3.0398 11.663 9.3676 4.2806 6.2657 4.2806 14.082 0 8.313-4.9009 15.882-4.8389 7.5685-17.681 16.626-7.6306 5.2732-10.236 7.3824-2.5435 2.1093-6.0176 5.5213h39.456z"/></g></svg>
diff --git a/resources/ui/skins/digits/3.svg b/resources/ui/skins/digits/3.svg
new file mode 100644
index 0000000..e48bb58
--- /dev/null
+++ b/resources/ui/skins/digits/3.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg enable-background="new 0 0 100 100" version="1.1" viewBox="0 0 100 100" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" ry="2" fill="none"/><g stroke-width="3.1763" aria-label="3"><path d="m37.686 30.831-23.884-4.2806q2.9778-11.415 11.415-17.494 8.4991-6.0796 24.008-6.0796 17.805 0 25.745 6.638 7.9408 6.638 7.9408 16.688 0 5.8935-3.2259 10.67-3.2259 4.7769-9.7398 8.375 5.2732 1.3028 8.0648 3.0398 4.5287 2.7917 7.0102 7.3824 2.5435 4.5287 2.5435 10.856 0 7.9408-4.1565 15.261-4.1565 7.2583-11.973 11.229-7.8167 3.9083-20.534 3.9083-12.407 0-19.604-2.9157-7.1343-2.9157-11.787-8.4991-4.5907-5.6454-7.0722-14.144l25.249-3.35q1.4889 7.6306 4.5907 10.608 3.1639 2.9157 8.0028 2.9157 5.087 0 8.437-3.7222 3.412-3.7222 3.412-9.9259 0-6.3278-3.288-9.8019-3.2259-3.4741-8.8093-3.4741-2.9778 0-8.1889 1.4889l1.3028-18.053q2.1093 0.31018 3.288 0.31018 4.963 0 8.2509-3.1639 3.35-3.1639 3.35-7.5065 0-4.1565-2.4815-6.638t-6.8241-2.4815q-4.4667 0-7.2583 2.7296-2.7917 2.6676-3.7843 9.4296z"/></g></svg>
diff --git a/resources/ui/skins/digits/4.svg b/resources/ui/skins/digits/4.svg
new file mode 100644
index 0000000..609d440
--- /dev/null
+++ b/resources/ui/skins/digits/4.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg enable-background="new 0 0 100 100" version="1.1" viewBox="0 0 100 100" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" ry="2" fill="none"/><g stroke-width="3.1763" aria-label="4"><path d="m56.297 79.25h-46.032v-20.782l46.032-54.717h22.023v55.895h11.415v19.604h-11.415v16.998h-22.023zm0-19.604v-28.599l-24.319 28.599z"/></g></svg>
diff --git a/resources/ui/skins/digits/5.svg b/resources/ui/skins/digits/5.svg
new file mode 100644
index 0000000..3e4ce20
--- /dev/null
+++ b/resources/ui/skins/digits/5.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg enable-background="new 0 0 100 100" version="1.1" viewBox="0 0 100 100" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" ry="2" fill="none"/><g stroke-width="3.1763" aria-label="5"><path d="m23.479 3.7513h59.99v20.162h-40.634l-2.1713 13.648q4.2185-1.9852 8.313-2.9778 4.1565-0.99259 8.1889-0.99259 13.648 0 22.147 8.2509 8.4991 8.2509 8.4991 20.782 0 8.8093-4.4046 16.936-4.3426 8.1269-12.407 12.407-8.0028 4.2806-20.534 4.2806-8.9954 0-15.447-1.675-6.3898-1.737-10.919-5.087-4.4667-3.412-7.2583-7.6926-2.7917-4.2806-4.6528-10.67l25.559-2.7917q0.93056 6.1417 4.3426 9.3676 3.412 3.1639 8.1269 3.1639 5.2732 0 8.6852-3.9704 3.4741-4.0324 3.4741-11.973 0-8.1269-3.4741-11.911-3.4741-3.7843-9.2435-3.7843-3.6602 0-7.0722 1.7991-2.5435 1.3028-5.5833 4.7148l-21.527-3.1019z"/></g></svg>
diff --git a/resources/ui/skins/digits/6.svg b/resources/ui/skins/digits/6.svg
new file mode 100644
index 0000000..684ec0f
--- /dev/null
+++ b/resources/ui/skins/digits/6.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg enable-background="new 0 0 100 100" version="1.1" viewBox="0 0 100 100" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" ry="2" fill="none"/><g stroke-width="3.1763" aria-label="6"><path d="m85.547 24.999-25.125 3.1019q-0.99259-5.2732-3.35-7.4445-2.2954-2.1713-5.7074-2.1713-6.1417 0-9.5537 6.2037-2.4815 4.4667-3.6602 19.107 4.5287-4.5907 9.3056-6.762 4.7769-2.2333 11.043-2.2333 12.159 0 20.534 8.6852 8.437 8.6852 8.437 22.023 0 8.9954-4.2806 16.44-4.2185 7.4445-11.787 11.291-7.5065 3.7843-18.859 3.7843-13.648 0-21.899-4.6528-8.2509-4.6528-13.214-14.827-4.9009-10.236-4.9009-27.048 0-24.629 10.36-36.044 10.36-11.477 28.723-11.477 10.856 0 17.122 2.5435 6.3278 2.4815 10.484 7.3204 4.1565 4.8389 6.3278 12.159zm-46.528 40.51q0 7.3824 3.7222 11.601 3.7222 4.1565 9.1195 4.1565 4.963 0 8.313-3.7843t3.35-11.291q0-7.6926-3.4741-11.725t-8.6232-4.0324q-5.2732 0-8.8713 3.9083-3.5361 3.9083-3.5361 11.167z"/></g></svg>
diff --git a/resources/ui/skins/digits/7.svg b/resources/ui/skins/digits/7.svg
new file mode 100644
index 0000000..40d418c
--- /dev/null
+++ b/resources/ui/skins/digits/7.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg enable-background="new 0 0 100 100" version="1.1" viewBox="0 0 100 100" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" ry="2" fill="none"/><g stroke-width="3.1763" aria-label="7"><path d="m13.119 4.5268h73.762v17.06q-9.6158 8.6852-16.068 18.797-7.8167 12.283-12.345 27.358-3.5982 11.725-4.8389 27.731h-25.187q2.9778-22.271 9.3676-37.346t20.224-32.259h-44.915z"/></g></svg>
diff --git a/resources/ui/skins/digits/8.svg b/resources/ui/skins/digits/8.svg
new file mode 100644
index 0000000..c444e92
--- /dev/null
+++ b/resources/ui/skins/digits/8.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg enable-background="new 0 0 100 100" version="1.1" viewBox="0 0 100 100" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" ry="2" fill="none"/><g stroke-width="3.1763" aria-label="8"><path d="m28.039 46.588q-5.9556-3.1639-8.6852-7.0722-3.7222-5.3352-3.7222-12.283 0-11.415 10.732-18.673 8.375-5.5833 22.147-5.5833 18.239 0 26.924 6.9482 8.7472 6.9482 8.7472 17.494 0 6.1417-3.4741 11.477-2.6056 3.9704-8.1889 7.6926 7.3824 3.5361 10.981 9.3676 3.6602 5.8315 3.6602 12.904 0 6.8241-3.1639 12.78-3.1019 5.8935-7.6926 9.1195-4.5287 3.2259-11.353 4.7148-6.762 1.5509-14.455 1.5509-14.455 0-22.085-3.412-7.6306-3.412-11.601-10.05t-3.9704-14.827q0-8.0028 3.7222-13.524 3.7222-5.5833 11.477-8.6232zm11.353-17.867q0 4.7148 2.9157 7.6306 2.9778 2.8537 7.8787 2.8537 4.3426 0 7.1343-2.8537t2.7917-7.3824q0-4.7148-2.9157-7.6306-2.9157-2.9778-7.4445-2.9778-4.5907 0-7.5065 2.9157-2.8537 2.8537-2.8537 7.4445zm-1.3648 39.145q0 6.0176 3.6602 9.8639 3.6602 3.7843 8.375 3.7843 4.5287 0 8.1269-3.8463 3.5982-3.9083 3.5982-9.8639 0-6.0176-3.6602-9.8639-3.5982-3.8463-8.375-3.8463-4.7148 0-8.2509 3.7222-3.4741 3.7222-3.4741 10.05z"/></g></svg>
diff --git a/resources/ui/skins/digits/9.svg b/resources/ui/skins/digits/9.svg
new file mode 100644
index 0000000..611b3f9
--- /dev/null
+++ b/resources/ui/skins/digits/9.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg enable-background="new 0 0 100 100" version="1.1" viewBox="0 0 100 100" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" ry="2" fill="none"/><g stroke-width="3.1763" aria-label="9"><path d="m14.453 75.063 25.125-3.1639q0.99259 5.2732 3.35 7.4445t5.7695 2.1713q6.0796 0 9.4917-6.1417 2.4815-4.5287 3.7222-19.169-4.5287 4.6528-9.3056 6.8241t-11.043 2.1713q-12.221 0-20.658-8.6852-8.375-8.6852-8.375-21.961 0-9.0574 4.2806-16.502 4.2806-7.4445 11.787-11.229 7.5065-3.8463 18.859-3.8463 13.648 0 21.899 4.7148 8.2509 4.6528 13.152 14.889 4.963 10.174 4.963 26.924 0 24.629-10.36 36.106-10.36 11.415-28.723 11.415-10.856 0-17.122-2.4815-6.2657-2.5435-10.422-7.3824-4.1565-4.8389-6.3898-12.097zm46.528-40.572q0-7.3824-3.7222-11.539-3.7222-4.2185-9.0574-4.2185-5.025 0-8.375 3.7843-3.288 3.7843-3.288 11.353 0 7.6306 3.412 11.663 3.4741 4.0324 8.6232 4.0324 5.3352 0 8.8713-3.9083t3.5361-11.167z"/></g></svg>
-- 
GitLab