|
@@ -1,74 +1,125 @@
|
|
-#pragma warning disable CS1591
|
|
|
|
|
|
+#pragma warning disable CS1591
|
|
#pragma warning disable SA1601
|
|
#pragma warning disable SA1601
|
|
|
|
|
|
|
|
+using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
|
|
namespace Jellyfin.Server.Implementations.Migrations
|
|
namespace Jellyfin.Server.Implementations.Migrations
|
|
{
|
|
{
|
|
- public partial class UserSchema : Migration
|
|
|
|
|
|
+ public partial class AddUsers : Migration
|
|
{
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
migrationBuilder.CreateTable(
|
|
- name: "User",
|
|
|
|
|
|
+ name: "ImageInfo",
|
|
schema: "jellyfin",
|
|
schema: "jellyfin",
|
|
columns: table => new
|
|
columns: table => new
|
|
{
|
|
{
|
|
Id = table.Column<int>(nullable: false)
|
|
Id = table.Column<int>(nullable: false)
|
|
.Annotation("Sqlite:Autoincrement", true),
|
|
.Annotation("Sqlite:Autoincrement", true),
|
|
|
|
+ Path = table.Column<string>(nullable: false),
|
|
|
|
+ LastModified = table.Column<DateTime>(nullable: false)
|
|
|
|
+ },
|
|
|
|
+ constraints: table =>
|
|
|
|
+ {
|
|
|
|
+ table.PrimaryKey("PK_ImageInfo", x => x.Id);
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ migrationBuilder.CreateTable(
|
|
|
|
+ name: "Users",
|
|
|
|
+ schema: "jellyfin",
|
|
|
|
+ columns: table => new
|
|
|
|
+ {
|
|
|
|
+ Id = table.Column<Guid>(nullable: false),
|
|
Username = table.Column<string>(maxLength: 255, nullable: false),
|
|
Username = table.Column<string>(maxLength: 255, nullable: false),
|
|
Password = table.Column<string>(maxLength: 65535, nullable: true),
|
|
Password = table.Column<string>(maxLength: 65535, nullable: true),
|
|
|
|
+ EasyPassword = table.Column<string>(maxLength: 65535, nullable: true),
|
|
MustUpdatePassword = table.Column<bool>(nullable: false),
|
|
MustUpdatePassword = table.Column<bool>(nullable: false),
|
|
- AudioLanguagePreference = table.Column<string>(maxLength: 255, nullable: false),
|
|
|
|
|
|
+ AudioLanguagePreference = table.Column<string>(maxLength: 255, nullable: true),
|
|
AuthenticationProviderId = table.Column<string>(maxLength: 255, nullable: false),
|
|
AuthenticationProviderId = table.Column<string>(maxLength: 255, nullable: false),
|
|
- GroupedFolders = table.Column<string>(maxLength: 65535, nullable: true),
|
|
|
|
|
|
+ PasswordResetProviderId = table.Column<string>(maxLength: 255, nullable: false),
|
|
InvalidLoginAttemptCount = table.Column<int>(nullable: false),
|
|
InvalidLoginAttemptCount = table.Column<int>(nullable: false),
|
|
- LatestItemExcludes = table.Column<string>(maxLength: 65535, nullable: true),
|
|
|
|
|
|
+ LastActivityDate = table.Column<DateTime>(nullable: false),
|
|
|
|
+ LastLoginDate = table.Column<DateTime>(nullable: false),
|
|
LoginAttemptsBeforeLockout = table.Column<int>(nullable: true),
|
|
LoginAttemptsBeforeLockout = table.Column<int>(nullable: true),
|
|
- MyMediaExcludes = table.Column<string>(maxLength: 65535, nullable: true),
|
|
|
|
- OrderedViews = table.Column<string>(maxLength: 65535, nullable: true),
|
|
|
|
- SubtitleMode = table.Column<string>(maxLength: 255, nullable: false),
|
|
|
|
|
|
+ SubtitleMode = table.Column<int>(nullable: false),
|
|
PlayDefaultAudioTrack = table.Column<bool>(nullable: false),
|
|
PlayDefaultAudioTrack = table.Column<bool>(nullable: false),
|
|
- SubtitleLanguagePrefernce = table.Column<string>(maxLength: 255, nullable: true),
|
|
|
|
- DisplayMissingEpisodes = table.Column<bool>(nullable: true),
|
|
|
|
- DisplayCollectionsView = table.Column<bool>(nullable: true),
|
|
|
|
- HidePlayedInLatest = table.Column<bool>(nullable: true),
|
|
|
|
- RememberAudioSelections = table.Column<bool>(nullable: true),
|
|
|
|
- RememberSubtitleSelections = table.Column<bool>(nullable: true),
|
|
|
|
- EnableNextEpisodeAutoPlay = table.Column<bool>(nullable: true),
|
|
|
|
- EnableUserPreferenceAccess = table.Column<bool>(nullable: true),
|
|
|
|
|
|
+ SubtitleLanguagePreference = table.Column<string>(maxLength: 255, nullable: true),
|
|
|
|
+ DisplayMissingEpisodes = table.Column<bool>(nullable: false),
|
|
|
|
+ DisplayCollectionsView = table.Column<bool>(nullable: false),
|
|
|
|
+ EnableLocalPassword = table.Column<bool>(nullable: false),
|
|
|
|
+ HidePlayedInLatest = table.Column<bool>(nullable: false),
|
|
|
|
+ RememberAudioSelections = table.Column<bool>(nullable: false),
|
|
|
|
+ RememberSubtitleSelections = table.Column<bool>(nullable: false),
|
|
|
|
+ EnableNextEpisodeAutoPlay = table.Column<bool>(nullable: false),
|
|
|
|
+ EnableAutoLogin = table.Column<bool>(nullable: false),
|
|
|
|
+ EnableUserPreferenceAccess = table.Column<bool>(nullable: false),
|
|
|
|
+ MaxParentalAgeRating = table.Column<int>(nullable: true),
|
|
|
|
+ RemoteClientBitrateLimit = table.Column<int>(nullable: true),
|
|
|
|
+ InternalId = table.Column<long>(nullable: false),
|
|
|
|
+ ProfileImageId = table.Column<int>(nullable: true),
|
|
RowVersion = table.Column<uint>(nullable: false)
|
|
RowVersion = table.Column<uint>(nullable: false)
|
|
},
|
|
},
|
|
constraints: table =>
|
|
constraints: table =>
|
|
{
|
|
{
|
|
- table.PrimaryKey("PK_User", x => x.Id);
|
|
|
|
|
|
+ table.PrimaryKey("PK_Users", x => x.Id);
|
|
|
|
+ table.ForeignKey(
|
|
|
|
+ name: "FK_Users_ImageInfo_ProfileImageId",
|
|
|
|
+ column: x => x.ProfileImageId,
|
|
|
|
+ principalSchema: "jellyfin",
|
|
|
|
+ principalTable: "ImageInfo",
|
|
|
|
+ principalColumn: "Id",
|
|
|
|
+ onDelete: ReferentialAction.Restrict);
|
|
});
|
|
});
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
migrationBuilder.CreateTable(
|
|
- name: "Group",
|
|
|
|
|
|
+ name: "AccessSchedule",
|
|
schema: "jellyfin",
|
|
schema: "jellyfin",
|
|
columns: table => new
|
|
columns: table => new
|
|
{
|
|
{
|
|
Id = table.Column<int>(nullable: false)
|
|
Id = table.Column<int>(nullable: false)
|
|
.Annotation("Sqlite:Autoincrement", true),
|
|
.Annotation("Sqlite:Autoincrement", true),
|
|
|
|
+ UserId = table.Column<Guid>(nullable: false),
|
|
|
|
+ DayOfWeek = table.Column<int>(nullable: false),
|
|
|
|
+ StartHour = table.Column<double>(nullable: false),
|
|
|
|
+ EndHour = table.Column<double>(nullable: false)
|
|
|
|
+ },
|
|
|
|
+ constraints: table =>
|
|
|
|
+ {
|
|
|
|
+ table.PrimaryKey("PK_AccessSchedule", x => x.Id);
|
|
|
|
+ table.ForeignKey(
|
|
|
|
+ name: "FK_AccessSchedule_Users_UserId",
|
|
|
|
+ column: x => x.UserId,
|
|
|
|
+ principalSchema: "jellyfin",
|
|
|
|
+ principalTable: "Users",
|
|
|
|
+ principalColumn: "Id",
|
|
|
|
+ onDelete: ReferentialAction.Cascade);
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ migrationBuilder.CreateTable(
|
|
|
|
+ name: "Groups",
|
|
|
|
+ schema: "jellyfin",
|
|
|
|
+ columns: table => new
|
|
|
|
+ {
|
|
|
|
+ Id = table.Column<Guid>(nullable: false),
|
|
Name = table.Column<string>(maxLength: 255, nullable: false),
|
|
Name = table.Column<string>(maxLength: 255, nullable: false),
|
|
RowVersion = table.Column<uint>(nullable: false),
|
|
RowVersion = table.Column<uint>(nullable: false),
|
|
- Group_Groups_Id = table.Column<int>(nullable: true)
|
|
|
|
|
|
+ Group_Groups_Guid = table.Column<Guid>(nullable: true)
|
|
},
|
|
},
|
|
constraints: table =>
|
|
constraints: table =>
|
|
{
|
|
{
|
|
- table.PrimaryKey("PK_Group", x => x.Id);
|
|
|
|
|
|
+ table.PrimaryKey("PK_Groups", x => x.Id);
|
|
table.ForeignKey(
|
|
table.ForeignKey(
|
|
- name: "FK_Group_User_Group_Groups_Id",
|
|
|
|
- column: x => x.Group_Groups_Id,
|
|
|
|
|
|
+ name: "FK_Groups_Users_Group_Groups_Guid",
|
|
|
|
+ column: x => x.Group_Groups_Guid,
|
|
principalSchema: "jellyfin",
|
|
principalSchema: "jellyfin",
|
|
- principalTable: "User",
|
|
|
|
|
|
+ principalTable: "Users",
|
|
principalColumn: "Id",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
onDelete: ReferentialAction.Restrict);
|
|
});
|
|
});
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
migrationBuilder.CreateTable(
|
|
- name: "Permission",
|
|
|
|
|
|
+ name: "Permissions",
|
|
schema: "jellyfin",
|
|
schema: "jellyfin",
|
|
columns: table => new
|
|
columns: table => new
|
|
{
|
|
{
|
|
@@ -77,30 +128,30 @@ namespace Jellyfin.Server.Implementations.Migrations
|
|
Kind = table.Column<int>(nullable: false),
|
|
Kind = table.Column<int>(nullable: false),
|
|
Value = table.Column<bool>(nullable: false),
|
|
Value = table.Column<bool>(nullable: false),
|
|
RowVersion = table.Column<uint>(nullable: false),
|
|
RowVersion = table.Column<uint>(nullable: false),
|
|
- Permission_GroupPermissions_Id = table.Column<int>(nullable: true),
|
|
|
|
- Permission_Permissions_Id = table.Column<int>(nullable: true)
|
|
|
|
|
|
+ Permission_GroupPermissions_Id = table.Column<Guid>(nullable: true),
|
|
|
|
+ Permission_Permissions_Guid = table.Column<Guid>(nullable: true)
|
|
},
|
|
},
|
|
constraints: table =>
|
|
constraints: table =>
|
|
{
|
|
{
|
|
- table.PrimaryKey("PK_Permission", x => x.Id);
|
|
|
|
|
|
+ table.PrimaryKey("PK_Permissions", x => x.Id);
|
|
table.ForeignKey(
|
|
table.ForeignKey(
|
|
- name: "FK_Permission_Group_Permission_GroupPermissions_Id",
|
|
|
|
|
|
+ name: "FK_Permissions_Groups_Permission_GroupPermissions_Id",
|
|
column: x => x.Permission_GroupPermissions_Id,
|
|
column: x => x.Permission_GroupPermissions_Id,
|
|
principalSchema: "jellyfin",
|
|
principalSchema: "jellyfin",
|
|
- principalTable: "Group",
|
|
|
|
|
|
+ principalTable: "Groups",
|
|
principalColumn: "Id",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
onDelete: ReferentialAction.Restrict);
|
|
table.ForeignKey(
|
|
table.ForeignKey(
|
|
- name: "FK_Permission_User_Permission_Permissions_Id",
|
|
|
|
- column: x => x.Permission_Permissions_Id,
|
|
|
|
|
|
+ name: "FK_Permissions_Users_Permission_Permissions_Guid",
|
|
|
|
+ column: x => x.Permission_Permissions_Guid,
|
|
principalSchema: "jellyfin",
|
|
principalSchema: "jellyfin",
|
|
- principalTable: "User",
|
|
|
|
|
|
+ principalTable: "Users",
|
|
principalColumn: "Id",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
onDelete: ReferentialAction.Restrict);
|
|
});
|
|
});
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
migrationBuilder.CreateTable(
|
|
- name: "Preference",
|
|
|
|
|
|
+ name: "Preferences",
|
|
schema: "jellyfin",
|
|
schema: "jellyfin",
|
|
columns: table => new
|
|
columns: table => new
|
|
{
|
|
{
|
|
@@ -109,23 +160,24 @@ namespace Jellyfin.Server.Implementations.Migrations
|
|
Kind = table.Column<int>(nullable: false),
|
|
Kind = table.Column<int>(nullable: false),
|
|
Value = table.Column<string>(maxLength: 65535, nullable: false),
|
|
Value = table.Column<string>(maxLength: 65535, nullable: false),
|
|
RowVersion = table.Column<uint>(nullable: false),
|
|
RowVersion = table.Column<uint>(nullable: false),
|
|
- Preference_Preferences_Id = table.Column<int>(nullable: true)
|
|
|
|
|
|
+ Preference_Preferences_Guid = table.Column<Guid>(nullable: true),
|
|
|
|
+ Preference_Preferences_Id = table.Column<Guid>(nullable: true)
|
|
},
|
|
},
|
|
constraints: table =>
|
|
constraints: table =>
|
|
{
|
|
{
|
|
- table.PrimaryKey("PK_Preference", x => x.Id);
|
|
|
|
|
|
+ table.PrimaryKey("PK_Preferences", x => x.Id);
|
|
table.ForeignKey(
|
|
table.ForeignKey(
|
|
- name: "FK_Preference_Group_Preference_Preferences_Id",
|
|
|
|
- column: x => x.Preference_Preferences_Id,
|
|
|
|
|
|
+ name: "FK_Preferences_Users_Preference_Preferences_Guid",
|
|
|
|
+ column: x => x.Preference_Preferences_Guid,
|
|
principalSchema: "jellyfin",
|
|
principalSchema: "jellyfin",
|
|
- principalTable: "Group",
|
|
|
|
|
|
+ principalTable: "Users",
|
|
principalColumn: "Id",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
onDelete: ReferentialAction.Restrict);
|
|
table.ForeignKey(
|
|
table.ForeignKey(
|
|
- name: "FK_Preference_User_Preference_Preferences_Id",
|
|
|
|
|
|
+ name: "FK_Preferences_Groups_Preference_Preferences_Id",
|
|
column: x => x.Preference_Preferences_Id,
|
|
column: x => x.Preference_Preferences_Id,
|
|
principalSchema: "jellyfin",
|
|
principalSchema: "jellyfin",
|
|
- principalTable: "User",
|
|
|
|
|
|
+ principalTable: "Groups",
|
|
principalColumn: "Id",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
onDelete: ReferentialAction.Restrict);
|
|
});
|
|
});
|
|
@@ -141,49 +193,61 @@ namespace Jellyfin.Server.Implementations.Migrations
|
|
ProviderSecrets = table.Column<string>(maxLength: 65535, nullable: false),
|
|
ProviderSecrets = table.Column<string>(maxLength: 65535, nullable: false),
|
|
ProviderData = table.Column<string>(maxLength: 65535, nullable: false),
|
|
ProviderData = table.Column<string>(maxLength: 65535, nullable: false),
|
|
RowVersion = table.Column<uint>(nullable: false),
|
|
RowVersion = table.Column<uint>(nullable: false),
|
|
- ProviderMapping_ProviderMappings_Id = table.Column<int>(nullable: true)
|
|
|
|
|
|
+ ProviderMapping_ProviderMappings_Id = table.Column<Guid>(nullable: true)
|
|
},
|
|
},
|
|
constraints: table =>
|
|
constraints: table =>
|
|
{
|
|
{
|
|
table.PrimaryKey("PK_ProviderMapping", x => x.Id);
|
|
table.PrimaryKey("PK_ProviderMapping", x => x.Id);
|
|
table.ForeignKey(
|
|
table.ForeignKey(
|
|
- name: "FK_ProviderMapping_Group_ProviderMapping_ProviderMappings_Id",
|
|
|
|
|
|
+ name: "FK_ProviderMapping_Groups_ProviderMapping_ProviderMappings_Id",
|
|
column: x => x.ProviderMapping_ProviderMappings_Id,
|
|
column: x => x.ProviderMapping_ProviderMappings_Id,
|
|
principalSchema: "jellyfin",
|
|
principalSchema: "jellyfin",
|
|
- principalTable: "Group",
|
|
|
|
|
|
+ principalTable: "Groups",
|
|
principalColumn: "Id",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
onDelete: ReferentialAction.Restrict);
|
|
table.ForeignKey(
|
|
table.ForeignKey(
|
|
- name: "FK_ProviderMapping_User_ProviderMapping_ProviderMappings_Id",
|
|
|
|
|
|
+ name: "FK_ProviderMapping_Users_ProviderMapping_ProviderMappings_Id",
|
|
column: x => x.ProviderMapping_ProviderMappings_Id,
|
|
column: x => x.ProviderMapping_ProviderMappings_Id,
|
|
principalSchema: "jellyfin",
|
|
principalSchema: "jellyfin",
|
|
- principalTable: "User",
|
|
|
|
|
|
+ principalTable: "Users",
|
|
principalColumn: "Id",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
onDelete: ReferentialAction.Restrict);
|
|
});
|
|
});
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
migrationBuilder.CreateIndex(
|
|
- name: "IX_Group_Group_Groups_Id",
|
|
|
|
|
|
+ name: "IX_AccessSchedule_UserId",
|
|
schema: "jellyfin",
|
|
schema: "jellyfin",
|
|
- table: "Group",
|
|
|
|
- column: "Group_Groups_Id");
|
|
|
|
|
|
+ table: "AccessSchedule",
|
|
|
|
+ column: "UserId");
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
migrationBuilder.CreateIndex(
|
|
- name: "IX_Permission_Permission_GroupPermissions_Id",
|
|
|
|
|
|
+ name: "IX_Groups_Group_Groups_Guid",
|
|
schema: "jellyfin",
|
|
schema: "jellyfin",
|
|
- table: "Permission",
|
|
|
|
|
|
+ table: "Groups",
|
|
|
|
+ column: "Group_Groups_Guid");
|
|
|
|
+
|
|
|
|
+ migrationBuilder.CreateIndex(
|
|
|
|
+ name: "IX_Permissions_Permission_GroupPermissions_Id",
|
|
|
|
+ schema: "jellyfin",
|
|
|
|
+ table: "Permissions",
|
|
column: "Permission_GroupPermissions_Id");
|
|
column: "Permission_GroupPermissions_Id");
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
migrationBuilder.CreateIndex(
|
|
- name: "IX_Permission_Permission_Permissions_Id",
|
|
|
|
|
|
+ name: "IX_Permissions_Permission_Permissions_Guid",
|
|
|
|
+ schema: "jellyfin",
|
|
|
|
+ table: "Permissions",
|
|
|
|
+ column: "Permission_Permissions_Guid");
|
|
|
|
+
|
|
|
|
+ migrationBuilder.CreateIndex(
|
|
|
|
+ name: "IX_Preferences_Preference_Preferences_Guid",
|
|
schema: "jellyfin",
|
|
schema: "jellyfin",
|
|
- table: "Permission",
|
|
|
|
- column: "Permission_Permissions_Id");
|
|
|
|
|
|
+ table: "Preferences",
|
|
|
|
+ column: "Preference_Preferences_Guid");
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
migrationBuilder.CreateIndex(
|
|
- name: "IX_Preference_Preference_Preferences_Id",
|
|
|
|
|
|
+ name: "IX_Preferences_Preference_Preferences_Id",
|
|
schema: "jellyfin",
|
|
schema: "jellyfin",
|
|
- table: "Preference",
|
|
|
|
|
|
+ table: "Preferences",
|
|
column: "Preference_Preferences_Id");
|
|
column: "Preference_Preferences_Id");
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
migrationBuilder.CreateIndex(
|
|
@@ -191,16 +255,26 @@ namespace Jellyfin.Server.Implementations.Migrations
|
|
schema: "jellyfin",
|
|
schema: "jellyfin",
|
|
table: "ProviderMapping",
|
|
table: "ProviderMapping",
|
|
column: "ProviderMapping_ProviderMappings_Id");
|
|
column: "ProviderMapping_ProviderMappings_Id");
|
|
|
|
+
|
|
|
|
+ migrationBuilder.CreateIndex(
|
|
|
|
+ name: "IX_Users_ProfileImageId",
|
|
|
|
+ schema: "jellyfin",
|
|
|
|
+ table: "Users",
|
|
|
|
+ column: "ProfileImageId");
|
|
}
|
|
}
|
|
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
{
|
|
migrationBuilder.DropTable(
|
|
migrationBuilder.DropTable(
|
|
- name: "Permission",
|
|
|
|
|
|
+ name: "AccessSchedule",
|
|
|
|
+ schema: "jellyfin");
|
|
|
|
+
|
|
|
|
+ migrationBuilder.DropTable(
|
|
|
|
+ name: "Permissions",
|
|
schema: "jellyfin");
|
|
schema: "jellyfin");
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
migrationBuilder.DropTable(
|
|
- name: "Preference",
|
|
|
|
|
|
+ name: "Preferences",
|
|
schema: "jellyfin");
|
|
schema: "jellyfin");
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
migrationBuilder.DropTable(
|
|
@@ -208,11 +282,15 @@ namespace Jellyfin.Server.Implementations.Migrations
|
|
schema: "jellyfin");
|
|
schema: "jellyfin");
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
migrationBuilder.DropTable(
|
|
- name: "Group",
|
|
|
|
|
|
+ name: "Groups",
|
|
|
|
+ schema: "jellyfin");
|
|
|
|
+
|
|
|
|
+ migrationBuilder.DropTable(
|
|
|
|
+ name: "Users",
|
|
schema: "jellyfin");
|
|
schema: "jellyfin");
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
migrationBuilder.DropTable(
|
|
- name: "User",
|
|
|
|
|
|
+ name: "ImageInfo",
|
|
schema: "jellyfin");
|
|
schema: "jellyfin");
|
|
}
|
|
}
|
|
}
|
|
}
|