diff --git a/Lottery.sln b/Lottery.sln
new file mode 100644
index 0000000..16d1618
--- /dev/null
+++ b/Lottery.sln
@@ -0,0 +1,27 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.11.35222.181
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lottery", "Lottery\Lottery.csproj", "{1695D2A5-8733-4FC4-A090-361AB9E6B030}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {1695D2A5-8733-4FC4-A090-361AB9E6B030}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {1695D2A5-8733-4FC4-A090-361AB9E6B030}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {1695D2A5-8733-4FC4-A090-361AB9E6B030}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
+ {1695D2A5-8733-4FC4-A090-361AB9E6B030}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {1695D2A5-8733-4FC4-A090-361AB9E6B030}.Release|Any CPU.Build.0 = Release|Any CPU
+ {1695D2A5-8733-4FC4-A090-361AB9E6B030}.Release|Any CPU.Deploy.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {DED38B08-45CE-4155-8CAC-05742FBF5375}
+ EndGlobalSection
+EndGlobal
diff --git a/Lottery/App.xaml b/Lottery/App.xaml
new file mode 100644
index 0000000..4793086
--- /dev/null
+++ b/Lottery/App.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Lottery/App.xaml.cs b/Lottery/App.xaml.cs
new file mode 100644
index 0000000..4bf6709
--- /dev/null
+++ b/Lottery/App.xaml.cs
@@ -0,0 +1,12 @@
+namespace Lottery
+{
+ public partial class App : Application
+ {
+ public App()
+ {
+ InitializeComponent();
+
+ MainPage = new AppShell();
+ }
+ }
+}
diff --git a/Lottery/AppShell.xaml b/Lottery/AppShell.xaml
new file mode 100644
index 0000000..cc5706d
--- /dev/null
+++ b/Lottery/AppShell.xaml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
diff --git a/Lottery/AppShell.xaml.cs b/Lottery/AppShell.xaml.cs
new file mode 100644
index 0000000..3f67ae2
--- /dev/null
+++ b/Lottery/AppShell.xaml.cs
@@ -0,0 +1,10 @@
+namespace Lottery
+{
+ public partial class AppShell : Shell
+ {
+ public AppShell()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/Lottery/Generator.cs b/Lottery/Generator.cs
new file mode 100644
index 0000000..879d715
--- /dev/null
+++ b/Lottery/Generator.cs
@@ -0,0 +1,53 @@
+namespace Lottery
+{
+ ///
+ ///
+ ///
+ class UKGenerator : IGenerator
+ {
+ public int Count { get; } = 6;
+
+ public List Generate()
+ {
+ List numbers = [];
+ for (int i = 0; i < Count; i++)
+ {
+ numbers.Add(Random.Shared.Next(60));
+ }
+ return numbers;
+ }
+ }
+
+ ///
+ ///
+ ///
+ class EuroGenerator : IGenerator
+ {
+ public int Count { get; } = 8;
+
+ public List Generate()
+ {
+ List numbers = [];
+ for (int i = 0; i < Count; i++)
+ {
+ numbers.Add(Random.Shared.Next(60));
+ }
+ return numbers;
+ }
+ }
+
+ class SetForLifeGenerator : IGenerator
+ {
+ public int Count { get; } = 10;
+
+ public List Generate()
+ {
+ List numbers = [];
+ for (int i = 0; i < Count; i++)
+ {
+ numbers.Add(Random.Shared.Next(60));
+ }
+ return numbers;
+ }
+ }
+}
diff --git a/Lottery/IGenerator.cs b/Lottery/IGenerator.cs
new file mode 100644
index 0000000..4892400
--- /dev/null
+++ b/Lottery/IGenerator.cs
@@ -0,0 +1,12 @@
+namespace Lottery
+{
+ ///
+ ///
+ ///
+ interface IGenerator
+ {
+ int Count { get; }
+
+ List Generate();
+ }
+}
diff --git a/Lottery/KindOfLotto.cs b/Lottery/KindOfLotto.cs
new file mode 100644
index 0000000..49b9944
--- /dev/null
+++ b/Lottery/KindOfLotto.cs
@@ -0,0 +1,9 @@
+namespace Lottery
+{
+ enum KindOfLotto : int
+ {
+ Uk,
+ Euro,
+ SetForLife,
+ }
+}
diff --git a/Lottery/Lottery.csproj b/Lottery/Lottery.csproj
new file mode 100644
index 0000000..dea6831
--- /dev/null
+++ b/Lottery/Lottery.csproj
@@ -0,0 +1,65 @@
+
+
+
+ net8.0-android;net8.0-ios;net8.0-maccatalyst
+ $(TargetFrameworks);net8.0-windows10.0.19041.0
+
+
+
+
+
+
+ Exe
+ Lottery
+ true
+ true
+ enable
+ enable
+
+
+ Lottery
+
+
+ com.companyname.lottery
+
+
+ 1.0
+ 1
+
+ 11.0
+ 13.1
+ 21.0
+ 10.0.17763.0
+ 10.0.17763.0
+ 6.5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Lottery/MainPage.xaml b/Lottery/MainPage.xaml
new file mode 100644
index 0000000..e693811
--- /dev/null
+++ b/Lottery/MainPage.xaml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Lottery/MainPage.xaml.cs b/Lottery/MainPage.xaml.cs
new file mode 100644
index 0000000..44f828c
--- /dev/null
+++ b/Lottery/MainPage.xaml.cs
@@ -0,0 +1,31 @@
+namespace Lottery
+{
+ public partial class MainPage : ContentPage
+ {
+ List generators = [new UKGenerator(), new EuroGenerator(), new SetForLifeGenerator()];
+ IGenerator generator;
+ const KindOfLotto DEFAULT_GENERATOR = KindOfLotto.Uk;
+
+ public MainPage()
+ {
+ InitializeComponent();
+
+ List lottos = ["UK", "Euro", "Set For Life"];
+ LottoPicker.ItemsSource = lottos;
+ LottoPicker.SelectedIndex = (int)DEFAULT_GENERATOR;
+
+ generator = generators[LottoPicker.SelectedIndex];
+ }
+
+ private void SpinButton_Clicked(object sender, EventArgs e)
+ {
+ List numbers = generator.Generate();
+ Numbers.Text = $"Numbers: {string.Join(", ", numbers)}";
+ }
+
+ private void LottoPicker_SelectedIndexChanged(object sender, EventArgs e)
+ {
+ generator = generators[LottoPicker.SelectedIndex];
+ }
+ }
+}
diff --git a/Lottery/MauiProgram.cs b/Lottery/MauiProgram.cs
new file mode 100644
index 0000000..5003af1
--- /dev/null
+++ b/Lottery/MauiProgram.cs
@@ -0,0 +1,25 @@
+using Microsoft.Extensions.Logging;
+
+namespace Lottery
+{
+ public static class MauiProgram
+ {
+ public static MauiApp CreateMauiApp()
+ {
+ var builder = MauiApp.CreateBuilder();
+ builder
+ .UseMauiApp()
+ .ConfigureFonts(fonts =>
+ {
+ fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
+ fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
+ });
+
+#if DEBUG
+ builder.Logging.AddDebug();
+#endif
+
+ return builder.Build();
+ }
+ }
+}
diff --git a/Lottery/Platforms/Android/AndroidManifest.xml b/Lottery/Platforms/Android/AndroidManifest.xml
new file mode 100644
index 0000000..e9937ad
--- /dev/null
+++ b/Lottery/Platforms/Android/AndroidManifest.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lottery/Platforms/Android/MainActivity.cs b/Lottery/Platforms/Android/MainActivity.cs
new file mode 100644
index 0000000..3ec3927
--- /dev/null
+++ b/Lottery/Platforms/Android/MainActivity.cs
@@ -0,0 +1,11 @@
+using Android.App;
+using Android.Content.PM;
+using Android.OS;
+
+namespace Lottery
+{
+ [Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, LaunchMode = LaunchMode.SingleTop, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
+ public class MainActivity : MauiAppCompatActivity
+ {
+ }
+}
diff --git a/Lottery/Platforms/Android/MainApplication.cs b/Lottery/Platforms/Android/MainApplication.cs
new file mode 100644
index 0000000..62d7b30
--- /dev/null
+++ b/Lottery/Platforms/Android/MainApplication.cs
@@ -0,0 +1,16 @@
+using Android.App;
+using Android.Runtime;
+
+namespace Lottery
+{
+ [Application]
+ public class MainApplication : MauiApplication
+ {
+ public MainApplication(IntPtr handle, JniHandleOwnership ownership)
+ : base(handle, ownership)
+ {
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/Lottery/Platforms/Android/Resources/values/colors.xml b/Lottery/Platforms/Android/Resources/values/colors.xml
new file mode 100644
index 0000000..c04d749
--- /dev/null
+++ b/Lottery/Platforms/Android/Resources/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #512BD4
+ #2B0B98
+ #2B0B98
+
\ No newline at end of file
diff --git a/Lottery/Platforms/MacCatalyst/AppDelegate.cs b/Lottery/Platforms/MacCatalyst/AppDelegate.cs
new file mode 100644
index 0000000..b0c0435
--- /dev/null
+++ b/Lottery/Platforms/MacCatalyst/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace Lottery
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/Lottery/Platforms/MacCatalyst/Entitlements.plist b/Lottery/Platforms/MacCatalyst/Entitlements.plist
new file mode 100644
index 0000000..de4adc9
--- /dev/null
+++ b/Lottery/Platforms/MacCatalyst/Entitlements.plist
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+ com.apple.security.app-sandbox
+
+
+ com.apple.security.network.client
+
+
+
+
diff --git a/Lottery/Platforms/MacCatalyst/Info.plist b/Lottery/Platforms/MacCatalyst/Info.plist
new file mode 100644
index 0000000..7268977
--- /dev/null
+++ b/Lottery/Platforms/MacCatalyst/Info.plist
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ UIDeviceFamily
+
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/Lottery/Platforms/MacCatalyst/Program.cs b/Lottery/Platforms/MacCatalyst/Program.cs
new file mode 100644
index 0000000..c3bf272
--- /dev/null
+++ b/Lottery/Platforms/MacCatalyst/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace Lottery
+{
+ public class Program
+ {
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+ }
+}
diff --git a/Lottery/Platforms/Tizen/Main.cs b/Lottery/Platforms/Tizen/Main.cs
new file mode 100644
index 0000000..1c7a71e
--- /dev/null
+++ b/Lottery/Platforms/Tizen/Main.cs
@@ -0,0 +1,17 @@
+using Microsoft.Maui;
+using Microsoft.Maui.Hosting;
+using System;
+
+namespace Lottery
+{
+ internal class Program : MauiApplication
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+
+ static void Main(string[] args)
+ {
+ var app = new Program();
+ app.Run(args);
+ }
+ }
+}
diff --git a/Lottery/Platforms/Tizen/tizen-manifest.xml b/Lottery/Platforms/Tizen/tizen-manifest.xml
new file mode 100644
index 0000000..fca424b
--- /dev/null
+++ b/Lottery/Platforms/Tizen/tizen-manifest.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+ maui-appicon-placeholder
+
+
+
+
+ http://tizen.org/privilege/internet
+
+
+
+
\ No newline at end of file
diff --git a/Lottery/Platforms/Windows/App.xaml b/Lottery/Platforms/Windows/App.xaml
new file mode 100644
index 0000000..c3ae195
--- /dev/null
+++ b/Lottery/Platforms/Windows/App.xaml
@@ -0,0 +1,8 @@
+
+
+
diff --git a/Lottery/Platforms/Windows/App.xaml.cs b/Lottery/Platforms/Windows/App.xaml.cs
new file mode 100644
index 0000000..9d6adc9
--- /dev/null
+++ b/Lottery/Platforms/Windows/App.xaml.cs
@@ -0,0 +1,25 @@
+using Microsoft.UI.Xaml;
+
+// To learn more about WinUI, the WinUI project structure,
+// and more about our project templates, see: http://aka.ms/winui-project-info.
+
+namespace Lottery.WinUI
+{
+ ///
+ /// Provides application-specific behavior to supplement the default Application class.
+ ///
+ public partial class App : MauiWinUIApplication
+ {
+ ///
+ /// Initializes the singleton application object. This is the first line of authored code
+ /// executed, and as such is the logical equivalent of main() or WinMain().
+ ///
+ public App()
+ {
+ this.InitializeComponent();
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+
+}
diff --git a/Lottery/Platforms/Windows/Package.appxmanifest b/Lottery/Platforms/Windows/Package.appxmanifest
new file mode 100644
index 0000000..2dc82a1
--- /dev/null
+++ b/Lottery/Platforms/Windows/Package.appxmanifest
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+ $placeholder$
+ User Name
+ $placeholder$.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Lottery/Platforms/Windows/app.manifest b/Lottery/Platforms/Windows/app.manifest
new file mode 100644
index 0000000..3340548
--- /dev/null
+++ b/Lottery/Platforms/Windows/app.manifest
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+ true/PM
+ PerMonitorV2, PerMonitor
+
+
+
diff --git a/Lottery/Platforms/iOS/AppDelegate.cs b/Lottery/Platforms/iOS/AppDelegate.cs
new file mode 100644
index 0000000..b0c0435
--- /dev/null
+++ b/Lottery/Platforms/iOS/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace Lottery
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/Lottery/Platforms/iOS/Info.plist b/Lottery/Platforms/iOS/Info.plist
new file mode 100644
index 0000000..0004a4f
--- /dev/null
+++ b/Lottery/Platforms/iOS/Info.plist
@@ -0,0 +1,32 @@
+
+
+
+
+ LSRequiresIPhoneOS
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/Lottery/Platforms/iOS/Program.cs b/Lottery/Platforms/iOS/Program.cs
new file mode 100644
index 0000000..c3bf272
--- /dev/null
+++ b/Lottery/Platforms/iOS/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace Lottery
+{
+ public class Program
+ {
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+ }
+}
diff --git a/Lottery/Platforms/iOS/Resources/PrivacyInfo.xcprivacy b/Lottery/Platforms/iOS/Resources/PrivacyInfo.xcprivacy
new file mode 100644
index 0000000..24ab3b4
--- /dev/null
+++ b/Lottery/Platforms/iOS/Resources/PrivacyInfo.xcprivacy
@@ -0,0 +1,51 @@
+
+
+
+
+
+ NSPrivacyAccessedAPITypes
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategoryFileTimestamp
+ NSPrivacyAccessedAPITypeReasons
+
+ C617.1
+
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategorySystemBootTime
+ NSPrivacyAccessedAPITypeReasons
+
+ 35F9.1
+
+
+
+ NSPrivacyAccessedAPIType
+ NSPrivacyAccessedAPICategoryDiskSpace
+ NSPrivacyAccessedAPITypeReasons
+
+ E174.1
+
+
+
+
+
+
diff --git a/Lottery/Properties/launchSettings.json b/Lottery/Properties/launchSettings.json
new file mode 100644
index 0000000..edf8aad
--- /dev/null
+++ b/Lottery/Properties/launchSettings.json
@@ -0,0 +1,8 @@
+{
+ "profiles": {
+ "Windows Machine": {
+ "commandName": "MsixPackage",
+ "nativeDebugging": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/Lottery/Resources/AppIcon/appicon.svg b/Lottery/Resources/AppIcon/appicon.svg
new file mode 100644
index 0000000..9d63b65
--- /dev/null
+++ b/Lottery/Resources/AppIcon/appicon.svg
@@ -0,0 +1,4 @@
+
+
\ No newline at end of file
diff --git a/Lottery/Resources/AppIcon/appiconfg.svg b/Lottery/Resources/AppIcon/appiconfg.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/Lottery/Resources/AppIcon/appiconfg.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/Lottery/Resources/Fonts/OpenSans-Regular.ttf b/Lottery/Resources/Fonts/OpenSans-Regular.ttf
new file mode 100644
index 0000000..2291fcb
Binary files /dev/null and b/Lottery/Resources/Fonts/OpenSans-Regular.ttf differ
diff --git a/Lottery/Resources/Fonts/OpenSans-Semibold.ttf b/Lottery/Resources/Fonts/OpenSans-Semibold.ttf
new file mode 100644
index 0000000..3cbe2f8
Binary files /dev/null and b/Lottery/Resources/Fonts/OpenSans-Semibold.ttf differ
diff --git a/Lottery/Resources/Images/dotnet_bot.png b/Lottery/Resources/Images/dotnet_bot.png
new file mode 100644
index 0000000..f93ce02
Binary files /dev/null and b/Lottery/Resources/Images/dotnet_bot.png differ
diff --git a/Lottery/Resources/Raw/AboutAssets.txt b/Lottery/Resources/Raw/AboutAssets.txt
new file mode 100644
index 0000000..89dc758
--- /dev/null
+++ b/Lottery/Resources/Raw/AboutAssets.txt
@@ -0,0 +1,15 @@
+Any raw assets you want to be deployed with your application can be placed in
+this directory (and child directories). Deployment of the asset to your application
+is automatically handled by the following `MauiAsset` Build Action within your `.csproj`.
+
+
+
+These files will be deployed with your package and will be accessible using Essentials:
+
+ async Task LoadMauiAsset()
+ {
+ using var stream = await FileSystem.OpenAppPackageFileAsync("AboutAssets.txt");
+ using var reader = new StreamReader(stream);
+
+ var contents = reader.ReadToEnd();
+ }
diff --git a/Lottery/Resources/Splash/splash.svg b/Lottery/Resources/Splash/splash.svg
new file mode 100644
index 0000000..21dfb25
--- /dev/null
+++ b/Lottery/Resources/Splash/splash.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/Lottery/Resources/Styles/Colors.xaml b/Lottery/Resources/Styles/Colors.xaml
new file mode 100644
index 0000000..30307a5
--- /dev/null
+++ b/Lottery/Resources/Styles/Colors.xaml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+ #512BD4
+ #ac99ea
+ #242424
+ #DFD8F7
+ #9880e5
+ #2B0B98
+
+ White
+ Black
+ #D600AA
+ #190649
+ #1f1f1f
+
+ #E1E1E1
+ #C8C8C8
+ #ACACAC
+ #919191
+ #6E6E6E
+ #404040
+ #212121
+ #141414
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lottery/Resources/Styles/Styles.xaml b/Lottery/Resources/Styles/Styles.xaml
new file mode 100644
index 0000000..6641e3a
--- /dev/null
+++ b/Lottery/Resources/Styles/Styles.xaml
@@ -0,0 +1,427 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+