diff --git a/GameDatabase/Entities/AiScoreDatum.cs b/GameDatabase/Entities/AiScoreDatum.cs index 071afc3..fda3a58 100644 --- a/GameDatabase/Entities/AiScoreDatum.cs +++ b/GameDatabase/Entities/AiScoreDatum.cs @@ -4,7 +4,7 @@ namespace GameDatabase.Entities; public class AiScoreDatum { - public uint Baid { get; set; } + public ulong Baid { get; set; } public uint SongId { get; set; } diff --git a/GameDatabase/Entities/AiSectionScoreDatum.cs b/GameDatabase/Entities/AiSectionScoreDatum.cs index 4113e98..e27eb3e 100644 --- a/GameDatabase/Entities/AiSectionScoreDatum.cs +++ b/GameDatabase/Entities/AiSectionScoreDatum.cs @@ -4,7 +4,7 @@ namespace GameDatabase.Entities; public class AiSectionScoreDatum { - public uint Baid { get; set; } + public ulong Baid { get; set; } public uint SongId { get; set; } diff --git a/GameDatabase/Entities/Card.cs b/GameDatabase/Entities/Card.cs index 97538ee..a3fac1b 100644 --- a/GameDatabase/Entities/Card.cs +++ b/GameDatabase/Entities/Card.cs @@ -3,6 +3,8 @@ public partial class Card { public string AccessCode { get; set; } = null!; - public uint Baid { get; set; } + public ulong Baid { get; set; } + public string Password { get; set; } = null!; + public string Salt { get; set; } = null!; } } \ No newline at end of file diff --git a/GameDatabase/Entities/DanScoreDatum.cs b/GameDatabase/Entities/DanScoreDatum.cs index d50a443..430d0c2 100644 --- a/GameDatabase/Entities/DanScoreDatum.cs +++ b/GameDatabase/Entities/DanScoreDatum.cs @@ -4,7 +4,7 @@ namespace GameDatabase.Entities; public class DanScoreDatum { - public uint Baid { get; set; } + public ulong Baid { get; set; } public uint DanId { get; set; } public uint ArrivalSongCount { get; set; } public uint SoulGaugeTotal { get; set; } diff --git a/GameDatabase/Entities/DanStageScoreDatum.cs b/GameDatabase/Entities/DanStageScoreDatum.cs index 5f134ba..a4ade62 100644 --- a/GameDatabase/Entities/DanStageScoreDatum.cs +++ b/GameDatabase/Entities/DanStageScoreDatum.cs @@ -2,7 +2,7 @@ public class DanStageScoreDatum { - public uint Baid { get; set; } + public ulong Baid { get; set; } public uint DanId { get; set; } diff --git a/GameDatabase/Entities/SongBestDatum.cs b/GameDatabase/Entities/SongBestDatum.cs index 214ba21..8d26e9a 100644 --- a/GameDatabase/Entities/SongBestDatum.cs +++ b/GameDatabase/Entities/SongBestDatum.cs @@ -2,16 +2,16 @@ namespace GameDatabase.Entities { - public partial class SongBestDatum - { - public uint Baid { get; set; } - public uint SongId { get; set; } - public Difficulty Difficulty { get; set; } - public uint BestScore { get; set; } - public uint BestRate { get; set; } - public CrownType BestCrown { get; set; } - public ScoreRank BestScoreRank { get; set; } + public partial class SongBestDatum + { + public ulong Baid { get; set; } + public uint SongId { get; set; } + public Difficulty Difficulty { get; set; } + public uint BestScore { get; set; } + public uint BestRate { get; set; } + public CrownType BestCrown { get; set; } + public ScoreRank BestScoreRank { get; set; } - public virtual Card? Ba { get; set; } - } + public virtual Card? Ba { get; set; } + } } \ No newline at end of file diff --git a/GameDatabase/Entities/SongPlayDatum.cs b/GameDatabase/Entities/SongPlayDatum.cs index 173e4c1..a6e85a6 100644 --- a/GameDatabase/Entities/SongPlayDatum.cs +++ b/GameDatabase/Entities/SongPlayDatum.cs @@ -5,7 +5,7 @@ namespace GameDatabase.Entities public partial class SongPlayDatum { public long Id { get; set; } - public uint Baid { get; set; } + public ulong Baid { get; set; } public uint SongNumber { get; set; } diff --git a/GameDatabase/Entities/UserDatum.cs b/GameDatabase/Entities/UserDatum.cs index 246b70c..2dc25b2 100644 --- a/GameDatabase/Entities/UserDatum.cs +++ b/GameDatabase/Entities/UserDatum.cs @@ -2,33 +2,37 @@ namespace GameDatabase.Entities { - public partial class UserDatum - { - public uint Baid { get; set; } - public string MyDonName { get; set; } = string.Empty; - public string Title { get; set; } = string.Empty; - public uint TitlePlateId { get; set; } - public string FavoriteSongsArray { get; set; } = "[]"; - public string ToneFlgArray { get; set; } = "[]"; - public string TitleFlgArray { get; set; } = "[]"; - public string CostumeFlgArray { get; set; } = "[[],[],[],[],[]]"; - public string GenericInfoFlgArray { get; set; } = "[]"; - public short OptionSetting { get; set; } - public int NotesPosition { get; set; } - public bool IsVoiceOn { get; set; } - public bool IsSkipOn { get; set; } - public uint SelectedToneId { get; set; } - public DateTime LastPlayDatetime { get; set; } - public uint LastPlayMode { get; set; } - public uint ColorBody { get; set; } - public uint ColorFace { get; set; } - public uint ColorLimb { get; set; } - public string CostumeData { get; set; } = "[[],[],[],[],[]]"; - public bool DisplayDan { get; set; } - public bool DisplayAchievement { get; set; } - public Difficulty AchievementDisplayDifficulty { get; set; } - - public int AiWinCount { get; set; } - public virtual Card? Ba { get; set; } - } + public partial class UserDatum + { + public ulong Baid { get; set; } + public string MyDonName { get; set; } = string.Empty; + public uint MyDonNameLanguage { get; set; } + public string Title { get; set; } = string.Empty; + public uint TitlePlateId { get; set; } + public string FavoriteSongsArray { get; set; } = "[]"; + public string ToneFlgArray { get; set; } = "[]"; + public string TitleFlgArray { get; set; } = "[]"; + public string CostumeFlgArray { get; set; } = "[[],[],[],[],[]]"; + public string GenericInfoFlgArray { get; set; } = "[]"; + public short OptionSetting { get; set; } + public int NotesPosition { get; set; } + public bool IsVoiceOn { get; set; } + public bool IsSkipOn { get; set; } + public string DifficultyPlayedArray { get; set; } = "[]"; + public string DifficultySettingArray { get; set; } = "[]"; + public uint SelectedToneId { get; set; } + public DateTime LastPlayDatetime { get; set; } + public uint LastPlayMode { get; set; } + public uint ColorBody { get; set; } + public uint ColorFace { get; set; } + public uint ColorLimb { get; set; } + public string CostumeData { get; set; } = "[]"; + public bool DisplayDan { get; set; } + public bool DisplayAchievement { get; set; } + public Difficulty AchievementDisplayDifficulty { get; set; } + public int AiWinCount { get; set; } + public string TokenCountDict { get; set; } = "{}"; + public string UnlockedSongIdList { get; set; } = "[]"; + public virtual Card? Ba { get; set; } + } } \ No newline at end of file diff --git a/GameDatabase/GameDatabase.csproj b/GameDatabase/GameDatabase.csproj index 79420dd..b3f8cfc 100644 --- a/GameDatabase/GameDatabase.csproj +++ b/GameDatabase/GameDatabase.csproj @@ -1,22 +1,23 @@ - net6.0 + net8.0 enable enable + 11 - + - - - - all - runtime; build; native; contentfiles; analyzers; buildtransitive - + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + - + \ No newline at end of file diff --git a/GameDatabase/Migrations/20230916161613_AddTokenCountDictAndUnlockedSongIdListToUserdata.Designer.cs b/GameDatabase/Migrations/20230916161613_AddTokenCountDictAndUnlockedSongIdListToUserdata.Designer.cs new file mode 100644 index 0000000..767f34d --- /dev/null +++ b/GameDatabase/Migrations/20230916161613_AddTokenCountDictAndUnlockedSongIdListToUserdata.Designer.cs @@ -0,0 +1,443 @@ +// +using System; +using GameDatabase.Context; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace TaikoLocalServer.Migrations +{ + [DbContext(typeof(TaikoDbContext))] + [Migration("20230916161613_AddTokenCountDictAndUnlockedSongIdListToUserdata")] + partial class AddTokenCountDictAndUnlockedSongIdListToUserdata + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "7.0.0-rc.1.22426.7"); + + modelBuilder.Entity("GameDatabase.Entities.AiScoreDatum", b => + { + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("SongId") + .HasColumnType("INTEGER"); + + b.Property("Difficulty") + .HasColumnType("INTEGER"); + + b.Property("IsWin") + .HasColumnType("INTEGER"); + + b.HasKey("Baid", "SongId", "Difficulty"); + + b.ToTable("AiScoreData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.AiSectionScoreDatum", b => + { + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("SongId") + .HasColumnType("INTEGER"); + + b.Property("Difficulty") + .HasColumnType("INTEGER"); + + b.Property("SectionIndex") + .HasColumnType("INTEGER"); + + b.Property("Crown") + .HasColumnType("INTEGER"); + + b.Property("DrumrollCount") + .HasColumnType("INTEGER"); + + b.Property("GoodCount") + .HasColumnType("INTEGER"); + + b.Property("IsWin") + .HasColumnType("INTEGER"); + + b.Property("MissCount") + .HasColumnType("INTEGER"); + + b.Property("OkCount") + .HasColumnType("INTEGER"); + + b.Property("Score") + .HasColumnType("INTEGER"); + + b.HasKey("Baid", "SongId", "Difficulty", "SectionIndex"); + + b.ToTable("AiSectionScoreData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.Card", b => + { + b.Property("AccessCode") + .HasColumnType("TEXT"); + + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.HasKey("AccessCode"); + + b.HasIndex(new[] { "Baid" }, "IX_Card_Baid") + .IsUnique(); + + b.ToTable("Card", (string)null); + }); + + modelBuilder.Entity("GameDatabase.Entities.DanScoreDatum", b => + { + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("DanId") + .HasColumnType("INTEGER"); + + b.Property("ArrivalSongCount") + .HasColumnType("INTEGER"); + + b.Property("ClearState") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasDefaultValue(0u); + + b.Property("ComboCountTotal") + .HasColumnType("INTEGER"); + + b.Property("SoulGaugeTotal") + .HasColumnType("INTEGER"); + + b.HasKey("Baid", "DanId"); + + b.ToTable("DanScoreData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.DanStageScoreDatum", b => + { + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("DanId") + .HasColumnType("INTEGER"); + + b.Property("SongNumber") + .HasColumnType("INTEGER"); + + b.Property("BadCount") + .HasColumnType("INTEGER"); + + b.Property("ComboCount") + .HasColumnType("INTEGER"); + + b.Property("DrumrollCount") + .HasColumnType("INTEGER"); + + b.Property("GoodCount") + .HasColumnType("INTEGER"); + + b.Property("HighScore") + .HasColumnType("INTEGER"); + + b.Property("OkCount") + .HasColumnType("INTEGER"); + + b.Property("PlayScore") + .HasColumnType("INTEGER"); + + b.Property("TotalHitCount") + .HasColumnType("INTEGER"); + + b.HasKey("Baid", "DanId", "SongNumber"); + + b.ToTable("DanStageScoreData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.SongBestDatum", b => + { + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("SongId") + .HasColumnType("INTEGER"); + + b.Property("Difficulty") + .HasColumnType("INTEGER"); + + b.Property("BestCrown") + .HasColumnType("INTEGER"); + + b.Property("BestRate") + .HasColumnType("INTEGER"); + + b.Property("BestScore") + .HasColumnType("INTEGER"); + + b.Property("BestScoreRank") + .HasColumnType("INTEGER"); + + b.HasKey("Baid", "SongId", "Difficulty"); + + b.ToTable("SongBestData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.SongPlayDatum", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("ComboCount") + .HasColumnType("INTEGER"); + + b.Property("Crown") + .HasColumnType("INTEGER"); + + b.Property("Difficulty") + .HasColumnType("INTEGER"); + + b.Property("DrumrollCount") + .HasColumnType("INTEGER"); + + b.Property("GoodCount") + .HasColumnType("INTEGER"); + + b.Property("HitCount") + .HasColumnType("INTEGER"); + + b.Property("MissCount") + .HasColumnType("INTEGER"); + + b.Property("OkCount") + .HasColumnType("INTEGER"); + + b.Property("PlayTime") + .HasColumnType("datetime"); + + b.Property("Score") + .HasColumnType("INTEGER"); + + b.Property("ScoreRank") + .HasColumnType("INTEGER"); + + b.Property("ScoreRate") + .HasColumnType("INTEGER"); + + b.Property("Skipped") + .HasColumnType("INTEGER"); + + b.Property("SongId") + .HasColumnType("INTEGER"); + + b.Property("SongNumber") + .HasColumnType("INTEGER"); + + b.HasKey("Id"); + + b.HasIndex("Baid"); + + b.ToTable("SongPlayData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.UserDatum", b => + { + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("AchievementDisplayDifficulty") + .HasColumnType("INTEGER"); + + b.Property("AiWinCount") + .HasColumnType("INTEGER"); + + b.Property("ColorBody") + .HasColumnType("INTEGER"); + + b.Property("ColorFace") + .HasColumnType("INTEGER"); + + b.Property("ColorLimb") + .HasColumnType("INTEGER"); + + b.Property("CostumeData") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("CostumeFlgArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("DisplayAchievement") + .HasColumnType("INTEGER"); + + b.Property("DisplayDan") + .HasColumnType("INTEGER"); + + b.Property("FavoriteSongsArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("GenericInfoFlgArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("IsSkipOn") + .HasColumnType("INTEGER"); + + b.Property("IsVoiceOn") + .HasColumnType("INTEGER"); + + b.Property("LastPlayDatetime") + .HasColumnType("datetime"); + + b.Property("LastPlayMode") + .HasColumnType("INTEGER"); + + b.Property("MyDonName") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("NotesPosition") + .HasColumnType("INTEGER"); + + b.Property("OptionSetting") + .HasColumnType("INTEGER"); + + b.Property("SelectedToneId") + .HasColumnType("INTEGER"); + + b.Property("Title") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("TitleFlgArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("TitlePlateId") + .HasColumnType("INTEGER"); + + b.Property("TokenCountDict") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("ToneFlgArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("UnlockedSongIdList") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Baid"); + + b.ToTable("UserData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.AiScoreDatum", b => + { + b.HasOne("GameDatabase.Entities.Card", "Ba") + .WithMany() + .HasForeignKey("Baid") + .HasPrincipalKey("Baid") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Ba"); + }); + + modelBuilder.Entity("GameDatabase.Entities.AiSectionScoreDatum", b => + { + b.HasOne("GameDatabase.Entities.AiScoreDatum", "Parent") + .WithMany("AiSectionScoreData") + .HasForeignKey("Baid", "SongId", "Difficulty") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Parent"); + }); + + modelBuilder.Entity("GameDatabase.Entities.DanScoreDatum", b => + { + b.HasOne("GameDatabase.Entities.Card", "Ba") + .WithMany() + .HasForeignKey("Baid") + .HasPrincipalKey("Baid") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Ba"); + }); + + modelBuilder.Entity("GameDatabase.Entities.DanStageScoreDatum", b => + { + b.HasOne("GameDatabase.Entities.DanScoreDatum", "Parent") + .WithMany("DanStageScoreData") + .HasForeignKey("Baid", "DanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Parent"); + }); + + modelBuilder.Entity("GameDatabase.Entities.SongBestDatum", b => + { + b.HasOne("GameDatabase.Entities.Card", "Ba") + .WithMany() + .HasForeignKey("Baid") + .HasPrincipalKey("Baid") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Ba"); + }); + + modelBuilder.Entity("GameDatabase.Entities.SongPlayDatum", b => + { + b.HasOne("GameDatabase.Entities.Card", "Ba") + .WithMany() + .HasForeignKey("Baid") + .HasPrincipalKey("Baid") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Ba"); + }); + + modelBuilder.Entity("GameDatabase.Entities.UserDatum", b => + { + b.HasOne("GameDatabase.Entities.Card", "Ba") + .WithMany() + .HasForeignKey("Baid") + .HasPrincipalKey("Baid") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Ba"); + }); + + modelBuilder.Entity("GameDatabase.Entities.AiScoreDatum", b => + { + b.Navigation("AiSectionScoreData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.DanScoreDatum", b => + { + b.Navigation("DanStageScoreData"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/GameDatabase/Migrations/20230916161613_AddTokenCountDictAndUnlockedSongIdListToUserdata.cs b/GameDatabase/Migrations/20230916161613_AddTokenCountDictAndUnlockedSongIdListToUserdata.cs new file mode 100644 index 0000000..816aee1 --- /dev/null +++ b/GameDatabase/Migrations/20230916161613_AddTokenCountDictAndUnlockedSongIdListToUserdata.cs @@ -0,0 +1,40 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace TaikoLocalServer.Migrations +{ + /// + public partial class AddTokenCountDictAndUnlockedSongIdListToUserdata : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "TokenCountDict", + table: "UserData", + type: "TEXT", + nullable: false, + defaultValue: ""); + + migrationBuilder.AddColumn( + name: "UnlockedSongIdList", + table: "UserData", + type: "TEXT", + nullable: false, + defaultValue: ""); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "TokenCountDict", + table: "UserData"); + + migrationBuilder.DropColumn( + name: "UnlockedSongIdList", + table: "UserData"); + } + } +} diff --git a/GameDatabase/Migrations/20230918052543_AddDifficultyPlayedArrayAndDifficultySettingArrayToUserData.Designer.cs b/GameDatabase/Migrations/20230918052543_AddDifficultyPlayedArrayAndDifficultySettingArrayToUserData.Designer.cs new file mode 100644 index 0000000..1e75389 --- /dev/null +++ b/GameDatabase/Migrations/20230918052543_AddDifficultyPlayedArrayAndDifficultySettingArrayToUserData.Designer.cs @@ -0,0 +1,451 @@ +// +using System; +using GameDatabase.Context; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace TaikoLocalServer.Migrations +{ + [DbContext(typeof(TaikoDbContext))] + [Migration("20230918052543_AddDifficultyPlayedArrayAndDifficultySettingArrayToUserData")] + partial class AddDifficultyPlayedArrayAndDifficultySettingArrayToUserData + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "7.0.0-rc.1.22426.7"); + + modelBuilder.Entity("GameDatabase.Entities.AiScoreDatum", b => + { + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("SongId") + .HasColumnType("INTEGER"); + + b.Property("Difficulty") + .HasColumnType("INTEGER"); + + b.Property("IsWin") + .HasColumnType("INTEGER"); + + b.HasKey("Baid", "SongId", "Difficulty"); + + b.ToTable("AiScoreData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.AiSectionScoreDatum", b => + { + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("SongId") + .HasColumnType("INTEGER"); + + b.Property("Difficulty") + .HasColumnType("INTEGER"); + + b.Property("SectionIndex") + .HasColumnType("INTEGER"); + + b.Property("Crown") + .HasColumnType("INTEGER"); + + b.Property("DrumrollCount") + .HasColumnType("INTEGER"); + + b.Property("GoodCount") + .HasColumnType("INTEGER"); + + b.Property("IsWin") + .HasColumnType("INTEGER"); + + b.Property("MissCount") + .HasColumnType("INTEGER"); + + b.Property("OkCount") + .HasColumnType("INTEGER"); + + b.Property("Score") + .HasColumnType("INTEGER"); + + b.HasKey("Baid", "SongId", "Difficulty", "SectionIndex"); + + b.ToTable("AiSectionScoreData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.Card", b => + { + b.Property("AccessCode") + .HasColumnType("TEXT"); + + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.HasKey("AccessCode"); + + b.HasIndex(new[] { "Baid" }, "IX_Card_Baid") + .IsUnique(); + + b.ToTable("Card", (string)null); + }); + + modelBuilder.Entity("GameDatabase.Entities.DanScoreDatum", b => + { + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("DanId") + .HasColumnType("INTEGER"); + + b.Property("ArrivalSongCount") + .HasColumnType("INTEGER"); + + b.Property("ClearState") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasDefaultValue(0u); + + b.Property("ComboCountTotal") + .HasColumnType("INTEGER"); + + b.Property("SoulGaugeTotal") + .HasColumnType("INTEGER"); + + b.HasKey("Baid", "DanId"); + + b.ToTable("DanScoreData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.DanStageScoreDatum", b => + { + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("DanId") + .HasColumnType("INTEGER"); + + b.Property("SongNumber") + .HasColumnType("INTEGER"); + + b.Property("BadCount") + .HasColumnType("INTEGER"); + + b.Property("ComboCount") + .HasColumnType("INTEGER"); + + b.Property("DrumrollCount") + .HasColumnType("INTEGER"); + + b.Property("GoodCount") + .HasColumnType("INTEGER"); + + b.Property("HighScore") + .HasColumnType("INTEGER"); + + b.Property("OkCount") + .HasColumnType("INTEGER"); + + b.Property("PlayScore") + .HasColumnType("INTEGER"); + + b.Property("TotalHitCount") + .HasColumnType("INTEGER"); + + b.HasKey("Baid", "DanId", "SongNumber"); + + b.ToTable("DanStageScoreData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.SongBestDatum", b => + { + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("SongId") + .HasColumnType("INTEGER"); + + b.Property("Difficulty") + .HasColumnType("INTEGER"); + + b.Property("BestCrown") + .HasColumnType("INTEGER"); + + b.Property("BestRate") + .HasColumnType("INTEGER"); + + b.Property("BestScore") + .HasColumnType("INTEGER"); + + b.Property("BestScoreRank") + .HasColumnType("INTEGER"); + + b.HasKey("Baid", "SongId", "Difficulty"); + + b.ToTable("SongBestData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.SongPlayDatum", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("ComboCount") + .HasColumnType("INTEGER"); + + b.Property("Crown") + .HasColumnType("INTEGER"); + + b.Property("Difficulty") + .HasColumnType("INTEGER"); + + b.Property("DrumrollCount") + .HasColumnType("INTEGER"); + + b.Property("GoodCount") + .HasColumnType("INTEGER"); + + b.Property("HitCount") + .HasColumnType("INTEGER"); + + b.Property("MissCount") + .HasColumnType("INTEGER"); + + b.Property("OkCount") + .HasColumnType("INTEGER"); + + b.Property("PlayTime") + .HasColumnType("datetime"); + + b.Property("Score") + .HasColumnType("INTEGER"); + + b.Property("ScoreRank") + .HasColumnType("INTEGER"); + + b.Property("ScoreRate") + .HasColumnType("INTEGER"); + + b.Property("Skipped") + .HasColumnType("INTEGER"); + + b.Property("SongId") + .HasColumnType("INTEGER"); + + b.Property("SongNumber") + .HasColumnType("INTEGER"); + + b.HasKey("Id"); + + b.HasIndex("Baid"); + + b.ToTable("SongPlayData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.UserDatum", b => + { + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("AchievementDisplayDifficulty") + .HasColumnType("INTEGER"); + + b.Property("AiWinCount") + .HasColumnType("INTEGER"); + + b.Property("ColorBody") + .HasColumnType("INTEGER"); + + b.Property("ColorFace") + .HasColumnType("INTEGER"); + + b.Property("ColorLimb") + .HasColumnType("INTEGER"); + + b.Property("CostumeData") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("CostumeFlgArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("DifficultyPlayedArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("DifficultySettingArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("DisplayAchievement") + .HasColumnType("INTEGER"); + + b.Property("DisplayDan") + .HasColumnType("INTEGER"); + + b.Property("FavoriteSongsArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("GenericInfoFlgArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("IsSkipOn") + .HasColumnType("INTEGER"); + + b.Property("IsVoiceOn") + .HasColumnType("INTEGER"); + + b.Property("LastPlayDatetime") + .HasColumnType("datetime"); + + b.Property("LastPlayMode") + .HasColumnType("INTEGER"); + + b.Property("MyDonName") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("NotesPosition") + .HasColumnType("INTEGER"); + + b.Property("OptionSetting") + .HasColumnType("INTEGER"); + + b.Property("SelectedToneId") + .HasColumnType("INTEGER"); + + b.Property("Title") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("TitleFlgArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("TitlePlateId") + .HasColumnType("INTEGER"); + + b.Property("TokenCountDict") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("ToneFlgArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("UnlockedSongIdList") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Baid"); + + b.ToTable("UserData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.AiScoreDatum", b => + { + b.HasOne("GameDatabase.Entities.Card", "Ba") + .WithMany() + .HasForeignKey("Baid") + .HasPrincipalKey("Baid") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Ba"); + }); + + modelBuilder.Entity("GameDatabase.Entities.AiSectionScoreDatum", b => + { + b.HasOne("GameDatabase.Entities.AiScoreDatum", "Parent") + .WithMany("AiSectionScoreData") + .HasForeignKey("Baid", "SongId", "Difficulty") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Parent"); + }); + + modelBuilder.Entity("GameDatabase.Entities.DanScoreDatum", b => + { + b.HasOne("GameDatabase.Entities.Card", "Ba") + .WithMany() + .HasForeignKey("Baid") + .HasPrincipalKey("Baid") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Ba"); + }); + + modelBuilder.Entity("GameDatabase.Entities.DanStageScoreDatum", b => + { + b.HasOne("GameDatabase.Entities.DanScoreDatum", "Parent") + .WithMany("DanStageScoreData") + .HasForeignKey("Baid", "DanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Parent"); + }); + + modelBuilder.Entity("GameDatabase.Entities.SongBestDatum", b => + { + b.HasOne("GameDatabase.Entities.Card", "Ba") + .WithMany() + .HasForeignKey("Baid") + .HasPrincipalKey("Baid") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Ba"); + }); + + modelBuilder.Entity("GameDatabase.Entities.SongPlayDatum", b => + { + b.HasOne("GameDatabase.Entities.Card", "Ba") + .WithMany() + .HasForeignKey("Baid") + .HasPrincipalKey("Baid") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Ba"); + }); + + modelBuilder.Entity("GameDatabase.Entities.UserDatum", b => + { + b.HasOne("GameDatabase.Entities.Card", "Ba") + .WithMany() + .HasForeignKey("Baid") + .HasPrincipalKey("Baid") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Ba"); + }); + + modelBuilder.Entity("GameDatabase.Entities.AiScoreDatum", b => + { + b.Navigation("AiSectionScoreData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.DanScoreDatum", b => + { + b.Navigation("DanStageScoreData"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/GameDatabase/Migrations/20230918052543_AddDifficultyPlayedArrayAndDifficultySettingArrayToUserData.cs b/GameDatabase/Migrations/20230918052543_AddDifficultyPlayedArrayAndDifficultySettingArrayToUserData.cs new file mode 100644 index 0000000..240b325 --- /dev/null +++ b/GameDatabase/Migrations/20230918052543_AddDifficultyPlayedArrayAndDifficultySettingArrayToUserData.cs @@ -0,0 +1,40 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace TaikoLocalServer.Migrations +{ + /// + public partial class AddDifficultyPlayedArrayAndDifficultySettingArrayToUserData : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "DifficultyPlayedArray", + table: "UserData", + type: "TEXT", + nullable: false, + defaultValue: "[]"); + + migrationBuilder.AddColumn( + name: "DifficultySettingArray", + table: "UserData", + type: "TEXT", + nullable: false, + defaultValue: "[]"); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "DifficultyPlayedArray", + table: "UserData"); + + migrationBuilder.DropColumn( + name: "DifficultySettingArray", + table: "UserData"); + } + } +} diff --git a/GameDatabase/Migrations/20230918101009_AddMyDonNameLanguageToUserData.Designer.cs b/GameDatabase/Migrations/20230918101009_AddMyDonNameLanguageToUserData.Designer.cs new file mode 100644 index 0000000..9e38bac --- /dev/null +++ b/GameDatabase/Migrations/20230918101009_AddMyDonNameLanguageToUserData.Designer.cs @@ -0,0 +1,454 @@ +// +using System; +using GameDatabase.Context; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace TaikoLocalServer.Migrations +{ + [DbContext(typeof(TaikoDbContext))] + [Migration("20230918101009_AddMyDonNameLanguageToUserData")] + partial class AddMyDonNameLanguageToUserData + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "7.0.0-rc.1.22426.7"); + + modelBuilder.Entity("GameDatabase.Entities.AiScoreDatum", b => + { + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("SongId") + .HasColumnType("INTEGER"); + + b.Property("Difficulty") + .HasColumnType("INTEGER"); + + b.Property("IsWin") + .HasColumnType("INTEGER"); + + b.HasKey("Baid", "SongId", "Difficulty"); + + b.ToTable("AiScoreData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.AiSectionScoreDatum", b => + { + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("SongId") + .HasColumnType("INTEGER"); + + b.Property("Difficulty") + .HasColumnType("INTEGER"); + + b.Property("SectionIndex") + .HasColumnType("INTEGER"); + + b.Property("Crown") + .HasColumnType("INTEGER"); + + b.Property("DrumrollCount") + .HasColumnType("INTEGER"); + + b.Property("GoodCount") + .HasColumnType("INTEGER"); + + b.Property("IsWin") + .HasColumnType("INTEGER"); + + b.Property("MissCount") + .HasColumnType("INTEGER"); + + b.Property("OkCount") + .HasColumnType("INTEGER"); + + b.Property("Score") + .HasColumnType("INTEGER"); + + b.HasKey("Baid", "SongId", "Difficulty", "SectionIndex"); + + b.ToTable("AiSectionScoreData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.Card", b => + { + b.Property("AccessCode") + .HasColumnType("TEXT"); + + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.HasKey("AccessCode"); + + b.HasIndex(new[] { "Baid" }, "IX_Card_Baid") + .IsUnique(); + + b.ToTable("Card", (string)null); + }); + + modelBuilder.Entity("GameDatabase.Entities.DanScoreDatum", b => + { + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("DanId") + .HasColumnType("INTEGER"); + + b.Property("ArrivalSongCount") + .HasColumnType("INTEGER"); + + b.Property("ClearState") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasDefaultValue(0u); + + b.Property("ComboCountTotal") + .HasColumnType("INTEGER"); + + b.Property("SoulGaugeTotal") + .HasColumnType("INTEGER"); + + b.HasKey("Baid", "DanId"); + + b.ToTable("DanScoreData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.DanStageScoreDatum", b => + { + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("DanId") + .HasColumnType("INTEGER"); + + b.Property("SongNumber") + .HasColumnType("INTEGER"); + + b.Property("BadCount") + .HasColumnType("INTEGER"); + + b.Property("ComboCount") + .HasColumnType("INTEGER"); + + b.Property("DrumrollCount") + .HasColumnType("INTEGER"); + + b.Property("GoodCount") + .HasColumnType("INTEGER"); + + b.Property("HighScore") + .HasColumnType("INTEGER"); + + b.Property("OkCount") + .HasColumnType("INTEGER"); + + b.Property("PlayScore") + .HasColumnType("INTEGER"); + + b.Property("TotalHitCount") + .HasColumnType("INTEGER"); + + b.HasKey("Baid", "DanId", "SongNumber"); + + b.ToTable("DanStageScoreData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.SongBestDatum", b => + { + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("SongId") + .HasColumnType("INTEGER"); + + b.Property("Difficulty") + .HasColumnType("INTEGER"); + + b.Property("BestCrown") + .HasColumnType("INTEGER"); + + b.Property("BestRate") + .HasColumnType("INTEGER"); + + b.Property("BestScore") + .HasColumnType("INTEGER"); + + b.Property("BestScoreRank") + .HasColumnType("INTEGER"); + + b.HasKey("Baid", "SongId", "Difficulty"); + + b.ToTable("SongBestData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.SongPlayDatum", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("ComboCount") + .HasColumnType("INTEGER"); + + b.Property("Crown") + .HasColumnType("INTEGER"); + + b.Property("Difficulty") + .HasColumnType("INTEGER"); + + b.Property("DrumrollCount") + .HasColumnType("INTEGER"); + + b.Property("GoodCount") + .HasColumnType("INTEGER"); + + b.Property("HitCount") + .HasColumnType("INTEGER"); + + b.Property("MissCount") + .HasColumnType("INTEGER"); + + b.Property("OkCount") + .HasColumnType("INTEGER"); + + b.Property("PlayTime") + .HasColumnType("datetime"); + + b.Property("Score") + .HasColumnType("INTEGER"); + + b.Property("ScoreRank") + .HasColumnType("INTEGER"); + + b.Property("ScoreRate") + .HasColumnType("INTEGER"); + + b.Property("Skipped") + .HasColumnType("INTEGER"); + + b.Property("SongId") + .HasColumnType("INTEGER"); + + b.Property("SongNumber") + .HasColumnType("INTEGER"); + + b.HasKey("Id"); + + b.HasIndex("Baid"); + + b.ToTable("SongPlayData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.UserDatum", b => + { + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("AchievementDisplayDifficulty") + .HasColumnType("INTEGER"); + + b.Property("AiWinCount") + .HasColumnType("INTEGER"); + + b.Property("ColorBody") + .HasColumnType("INTEGER"); + + b.Property("ColorFace") + .HasColumnType("INTEGER"); + + b.Property("ColorLimb") + .HasColumnType("INTEGER"); + + b.Property("CostumeData") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("CostumeFlgArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("DifficultyPlayedArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("DifficultySettingArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("DisplayAchievement") + .HasColumnType("INTEGER"); + + b.Property("DisplayDan") + .HasColumnType("INTEGER"); + + b.Property("FavoriteSongsArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("GenericInfoFlgArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("IsSkipOn") + .HasColumnType("INTEGER"); + + b.Property("IsVoiceOn") + .HasColumnType("INTEGER"); + + b.Property("LastPlayDatetime") + .HasColumnType("datetime"); + + b.Property("LastPlayMode") + .HasColumnType("INTEGER"); + + b.Property("MyDonName") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("MyDonNameLanguage") + .HasColumnType("INTEGER"); + + b.Property("NotesPosition") + .HasColumnType("INTEGER"); + + b.Property("OptionSetting") + .HasColumnType("INTEGER"); + + b.Property("SelectedToneId") + .HasColumnType("INTEGER"); + + b.Property("Title") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("TitleFlgArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("TitlePlateId") + .HasColumnType("INTEGER"); + + b.Property("TokenCountDict") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("ToneFlgArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("UnlockedSongIdList") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Baid"); + + b.ToTable("UserData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.AiScoreDatum", b => + { + b.HasOne("GameDatabase.Entities.Card", "Ba") + .WithMany() + .HasForeignKey("Baid") + .HasPrincipalKey("Baid") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Ba"); + }); + + modelBuilder.Entity("GameDatabase.Entities.AiSectionScoreDatum", b => + { + b.HasOne("GameDatabase.Entities.AiScoreDatum", "Parent") + .WithMany("AiSectionScoreData") + .HasForeignKey("Baid", "SongId", "Difficulty") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Parent"); + }); + + modelBuilder.Entity("GameDatabase.Entities.DanScoreDatum", b => + { + b.HasOne("GameDatabase.Entities.Card", "Ba") + .WithMany() + .HasForeignKey("Baid") + .HasPrincipalKey("Baid") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Ba"); + }); + + modelBuilder.Entity("GameDatabase.Entities.DanStageScoreDatum", b => + { + b.HasOne("GameDatabase.Entities.DanScoreDatum", "Parent") + .WithMany("DanStageScoreData") + .HasForeignKey("Baid", "DanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Parent"); + }); + + modelBuilder.Entity("GameDatabase.Entities.SongBestDatum", b => + { + b.HasOne("GameDatabase.Entities.Card", "Ba") + .WithMany() + .HasForeignKey("Baid") + .HasPrincipalKey("Baid") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Ba"); + }); + + modelBuilder.Entity("GameDatabase.Entities.SongPlayDatum", b => + { + b.HasOne("GameDatabase.Entities.Card", "Ba") + .WithMany() + .HasForeignKey("Baid") + .HasPrincipalKey("Baid") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Ba"); + }); + + modelBuilder.Entity("GameDatabase.Entities.UserDatum", b => + { + b.HasOne("GameDatabase.Entities.Card", "Ba") + .WithMany() + .HasForeignKey("Baid") + .HasPrincipalKey("Baid") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Ba"); + }); + + modelBuilder.Entity("GameDatabase.Entities.AiScoreDatum", b => + { + b.Navigation("AiSectionScoreData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.DanScoreDatum", b => + { + b.Navigation("DanStageScoreData"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/GameDatabase/Migrations/20230918101009_AddMyDonNameLanguageToUserData.cs b/GameDatabase/Migrations/20230918101009_AddMyDonNameLanguageToUserData.cs new file mode 100644 index 0000000..27bc80a --- /dev/null +++ b/GameDatabase/Migrations/20230918101009_AddMyDonNameLanguageToUserData.cs @@ -0,0 +1,29 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace TaikoLocalServer.Migrations +{ + /// + public partial class AddMyDonNameLanguageToUserData : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "MyDonNameLanguage", + table: "UserData", + type: "INTEGER", + nullable: false, + defaultValue: 0u); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "MyDonNameLanguage", + table: "UserData"); + } + } +} diff --git a/GameDatabase/Migrations/20230928150650_AddPasswordAndSaltToCard.Designer.cs b/GameDatabase/Migrations/20230928150650_AddPasswordAndSaltToCard.Designer.cs new file mode 100644 index 0000000..3e71f49 --- /dev/null +++ b/GameDatabase/Migrations/20230928150650_AddPasswordAndSaltToCard.Designer.cs @@ -0,0 +1,462 @@ +// +using System; +using GameDatabase.Context; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace TaikoLocalServer.Migrations +{ + [DbContext(typeof(TaikoDbContext))] + [Migration("20230928150650_AddPasswordAndSaltToCard")] + partial class AddPasswordAndSaltToCard + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "8.0.0-rc.1.23419.6"); + + modelBuilder.Entity("GameDatabase.Entities.AiScoreDatum", b => + { + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("SongId") + .HasColumnType("INTEGER"); + + b.Property("Difficulty") + .HasColumnType("INTEGER"); + + b.Property("IsWin") + .HasColumnType("INTEGER"); + + b.HasKey("Baid", "SongId", "Difficulty"); + + b.ToTable("AiScoreData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.AiSectionScoreDatum", b => + { + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("SongId") + .HasColumnType("INTEGER"); + + b.Property("Difficulty") + .HasColumnType("INTEGER"); + + b.Property("SectionIndex") + .HasColumnType("INTEGER"); + + b.Property("Crown") + .HasColumnType("INTEGER"); + + b.Property("DrumrollCount") + .HasColumnType("INTEGER"); + + b.Property("GoodCount") + .HasColumnType("INTEGER"); + + b.Property("IsWin") + .HasColumnType("INTEGER"); + + b.Property("MissCount") + .HasColumnType("INTEGER"); + + b.Property("OkCount") + .HasColumnType("INTEGER"); + + b.Property("Score") + .HasColumnType("INTEGER"); + + b.HasKey("Baid", "SongId", "Difficulty", "SectionIndex"); + + b.ToTable("AiSectionScoreData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.Card", b => + { + b.Property("AccessCode") + .HasColumnType("TEXT"); + + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("Password") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Salt") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("AccessCode"); + + b.HasIndex(new[] { "Baid" }, "IX_Card_Baid") + .IsUnique(); + + b.ToTable("Card", (string)null); + }); + + modelBuilder.Entity("GameDatabase.Entities.DanScoreDatum", b => + { + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("DanId") + .HasColumnType("INTEGER"); + + b.Property("ArrivalSongCount") + .HasColumnType("INTEGER"); + + b.Property("ClearState") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasDefaultValue(0u); + + b.Property("ComboCountTotal") + .HasColumnType("INTEGER"); + + b.Property("SoulGaugeTotal") + .HasColumnType("INTEGER"); + + b.HasKey("Baid", "DanId"); + + b.ToTable("DanScoreData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.DanStageScoreDatum", b => + { + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("DanId") + .HasColumnType("INTEGER"); + + b.Property("SongNumber") + .HasColumnType("INTEGER"); + + b.Property("BadCount") + .HasColumnType("INTEGER"); + + b.Property("ComboCount") + .HasColumnType("INTEGER"); + + b.Property("DrumrollCount") + .HasColumnType("INTEGER"); + + b.Property("GoodCount") + .HasColumnType("INTEGER"); + + b.Property("HighScore") + .HasColumnType("INTEGER"); + + b.Property("OkCount") + .HasColumnType("INTEGER"); + + b.Property("PlayScore") + .HasColumnType("INTEGER"); + + b.Property("TotalHitCount") + .HasColumnType("INTEGER"); + + b.HasKey("Baid", "DanId", "SongNumber"); + + b.ToTable("DanStageScoreData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.SongBestDatum", b => + { + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("SongId") + .HasColumnType("INTEGER"); + + b.Property("Difficulty") + .HasColumnType("INTEGER"); + + b.Property("BestCrown") + .HasColumnType("INTEGER"); + + b.Property("BestRate") + .HasColumnType("INTEGER"); + + b.Property("BestScore") + .HasColumnType("INTEGER"); + + b.Property("BestScoreRank") + .HasColumnType("INTEGER"); + + b.HasKey("Baid", "SongId", "Difficulty"); + + b.ToTable("SongBestData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.SongPlayDatum", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("ComboCount") + .HasColumnType("INTEGER"); + + b.Property("Crown") + .HasColumnType("INTEGER"); + + b.Property("Difficulty") + .HasColumnType("INTEGER"); + + b.Property("DrumrollCount") + .HasColumnType("INTEGER"); + + b.Property("GoodCount") + .HasColumnType("INTEGER"); + + b.Property("HitCount") + .HasColumnType("INTEGER"); + + b.Property("MissCount") + .HasColumnType("INTEGER"); + + b.Property("OkCount") + .HasColumnType("INTEGER"); + + b.Property("PlayTime") + .HasColumnType("datetime"); + + b.Property("Score") + .HasColumnType("INTEGER"); + + b.Property("ScoreRank") + .HasColumnType("INTEGER"); + + b.Property("ScoreRate") + .HasColumnType("INTEGER"); + + b.Property("Skipped") + .HasColumnType("INTEGER"); + + b.Property("SongId") + .HasColumnType("INTEGER"); + + b.Property("SongNumber") + .HasColumnType("INTEGER"); + + b.HasKey("Id"); + + b.HasIndex("Baid"); + + b.ToTable("SongPlayData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.UserDatum", b => + { + b.Property("Baid") + .HasColumnType("INTEGER"); + + b.Property("AchievementDisplayDifficulty") + .HasColumnType("INTEGER"); + + b.Property("AiWinCount") + .HasColumnType("INTEGER"); + + b.Property("ColorBody") + .HasColumnType("INTEGER"); + + b.Property("ColorFace") + .HasColumnType("INTEGER"); + + b.Property("ColorLimb") + .HasColumnType("INTEGER"); + + b.Property("CostumeData") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("CostumeFlgArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("DifficultyPlayedArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("DifficultySettingArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("DisplayAchievement") + .HasColumnType("INTEGER"); + + b.Property("DisplayDan") + .HasColumnType("INTEGER"); + + b.Property("FavoriteSongsArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("GenericInfoFlgArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("IsSkipOn") + .HasColumnType("INTEGER"); + + b.Property("IsVoiceOn") + .HasColumnType("INTEGER"); + + b.Property("LastPlayDatetime") + .HasColumnType("datetime"); + + b.Property("LastPlayMode") + .HasColumnType("INTEGER"); + + b.Property("MyDonName") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("MyDonNameLanguage") + .HasColumnType("INTEGER"); + + b.Property("NotesPosition") + .HasColumnType("INTEGER"); + + b.Property("OptionSetting") + .HasColumnType("INTEGER"); + + b.Property("SelectedToneId") + .HasColumnType("INTEGER"); + + b.Property("Title") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("TitleFlgArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("TitlePlateId") + .HasColumnType("INTEGER"); + + b.Property("TokenCountDict") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("ToneFlgArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("UnlockedSongIdList") + .IsRequired() + .HasColumnType("TEXT"); + + b.HasKey("Baid"); + + b.ToTable("UserData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.AiScoreDatum", b => + { + b.HasOne("GameDatabase.Entities.Card", "Ba") + .WithMany() + .HasForeignKey("Baid") + .HasPrincipalKey("Baid") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Ba"); + }); + + modelBuilder.Entity("GameDatabase.Entities.AiSectionScoreDatum", b => + { + b.HasOne("GameDatabase.Entities.AiScoreDatum", "Parent") + .WithMany("AiSectionScoreData") + .HasForeignKey("Baid", "SongId", "Difficulty") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Parent"); + }); + + modelBuilder.Entity("GameDatabase.Entities.DanScoreDatum", b => + { + b.HasOne("GameDatabase.Entities.Card", "Ba") + .WithMany() + .HasForeignKey("Baid") + .HasPrincipalKey("Baid") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Ba"); + }); + + modelBuilder.Entity("GameDatabase.Entities.DanStageScoreDatum", b => + { + b.HasOne("GameDatabase.Entities.DanScoreDatum", "Parent") + .WithMany("DanStageScoreData") + .HasForeignKey("Baid", "DanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Parent"); + }); + + modelBuilder.Entity("GameDatabase.Entities.SongBestDatum", b => + { + b.HasOne("GameDatabase.Entities.Card", "Ba") + .WithMany() + .HasForeignKey("Baid") + .HasPrincipalKey("Baid") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Ba"); + }); + + modelBuilder.Entity("GameDatabase.Entities.SongPlayDatum", b => + { + b.HasOne("GameDatabase.Entities.Card", "Ba") + .WithMany() + .HasForeignKey("Baid") + .HasPrincipalKey("Baid") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Ba"); + }); + + modelBuilder.Entity("GameDatabase.Entities.UserDatum", b => + { + b.HasOne("GameDatabase.Entities.Card", "Ba") + .WithMany() + .HasForeignKey("Baid") + .HasPrincipalKey("Baid") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Ba"); + }); + + modelBuilder.Entity("GameDatabase.Entities.AiScoreDatum", b => + { + b.Navigation("AiSectionScoreData"); + }); + + modelBuilder.Entity("GameDatabase.Entities.DanScoreDatum", b => + { + b.Navigation("DanStageScoreData"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/GameDatabase/Migrations/20230928150650_AddPasswordAndSaltToCard.cs b/GameDatabase/Migrations/20230928150650_AddPasswordAndSaltToCard.cs new file mode 100644 index 0000000..517a1c2 --- /dev/null +++ b/GameDatabase/Migrations/20230928150650_AddPasswordAndSaltToCard.cs @@ -0,0 +1,40 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace TaikoLocalServer.Migrations +{ + /// + public partial class AddPasswordAndSaltToCard : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "Password", + table: "Card", + type: "TEXT", + nullable: false, + defaultValue: ""); + + migrationBuilder.AddColumn( + name: "Salt", + table: "Card", + type: "TEXT", + nullable: false, + defaultValue: ""); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "Password", + table: "Card"); + + migrationBuilder.DropColumn( + name: "Salt", + table: "Card"); + } + } +} diff --git a/GameDatabase/Migrations/TaikoDbContextModelSnapshot.cs b/GameDatabase/Migrations/TaikoDbContextModelSnapshot.cs index d3fa35d..34cab2e 100644 --- a/GameDatabase/Migrations/TaikoDbContextModelSnapshot.cs +++ b/GameDatabase/Migrations/TaikoDbContextModelSnapshot.cs @@ -15,11 +15,11 @@ namespace TaikoLocalServer.Migrations protected override void BuildModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 - modelBuilder.HasAnnotation("ProductVersion", "7.0.0-preview.7.22376.2"); + modelBuilder.HasAnnotation("ProductVersion", "8.0.0-rc.1.23419.6"); - modelBuilder.Entity("TaikoLocalServer.Entities.AiScoreDatum", b => + modelBuilder.Entity("GameDatabase.Entities.AiScoreDatum", b => { - b.Property("Baid") + b.Property("Baid") .HasColumnType("INTEGER"); b.Property("SongId") @@ -36,9 +36,9 @@ namespace TaikoLocalServer.Migrations b.ToTable("AiScoreData"); }); - modelBuilder.Entity("TaikoLocalServer.Entities.AiSectionScoreDatum", b => + modelBuilder.Entity("GameDatabase.Entities.AiSectionScoreDatum", b => { - b.Property("Baid") + b.Property("Baid") .HasColumnType("INTEGER"); b.Property("SongId") @@ -76,14 +76,22 @@ namespace TaikoLocalServer.Migrations b.ToTable("AiSectionScoreData"); }); - modelBuilder.Entity("TaikoLocalServer.Entities.Card", b => + modelBuilder.Entity("GameDatabase.Entities.Card", b => { b.Property("AccessCode") .HasColumnType("TEXT"); - b.Property("Baid") + b.Property("Baid") .HasColumnType("INTEGER"); + b.Property("Password") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Salt") + .IsRequired() + .HasColumnType("TEXT"); + b.HasKey("AccessCode"); b.HasIndex(new[] { "Baid" }, "IX_Card_Baid") @@ -92,9 +100,9 @@ namespace TaikoLocalServer.Migrations b.ToTable("Card", (string)null); }); - modelBuilder.Entity("TaikoLocalServer.Entities.DanScoreDatum", b => + modelBuilder.Entity("GameDatabase.Entities.DanScoreDatum", b => { - b.Property("Baid") + b.Property("Baid") .HasColumnType("INTEGER"); b.Property("DanId") @@ -119,9 +127,9 @@ namespace TaikoLocalServer.Migrations b.ToTable("DanScoreData"); }); - modelBuilder.Entity("TaikoLocalServer.Entities.DanStageScoreDatum", b => + modelBuilder.Entity("GameDatabase.Entities.DanStageScoreDatum", b => { - b.Property("Baid") + b.Property("Baid") .HasColumnType("INTEGER"); b.Property("DanId") @@ -159,9 +167,9 @@ namespace TaikoLocalServer.Migrations b.ToTable("DanStageScoreData"); }); - modelBuilder.Entity("TaikoLocalServer.Entities.SongBestDatum", b => + modelBuilder.Entity("GameDatabase.Entities.SongBestDatum", b => { - b.Property("Baid") + b.Property("Baid") .HasColumnType("INTEGER"); b.Property("SongId") @@ -187,13 +195,13 @@ namespace TaikoLocalServer.Migrations b.ToTable("SongBestData"); }); - modelBuilder.Entity("TaikoLocalServer.Entities.SongPlayDatum", b => + modelBuilder.Entity("GameDatabase.Entities.SongPlayDatum", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); - b.Property("Baid") + b.Property("Baid") .HasColumnType("INTEGER"); b.Property("ComboCount") @@ -248,9 +256,9 @@ namespace TaikoLocalServer.Migrations b.ToTable("SongPlayData"); }); - modelBuilder.Entity("TaikoLocalServer.Entities.UserDatum", b => + modelBuilder.Entity("GameDatabase.Entities.UserDatum", b => { - b.Property("Baid") + b.Property("Baid") .HasColumnType("INTEGER"); b.Property("AchievementDisplayDifficulty") @@ -276,6 +284,14 @@ namespace TaikoLocalServer.Migrations .IsRequired() .HasColumnType("TEXT"); + b.Property("DifficultyPlayedArray") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("DifficultySettingArray") + .IsRequired() + .HasColumnType("TEXT"); + b.Property("DisplayAchievement") .HasColumnType("INTEGER"); @@ -306,6 +322,9 @@ namespace TaikoLocalServer.Migrations .IsRequired() .HasColumnType("TEXT"); + b.Property("MyDonNameLanguage") + .HasColumnType("INTEGER"); + b.Property("NotesPosition") .HasColumnType("INTEGER"); @@ -326,18 +345,26 @@ namespace TaikoLocalServer.Migrations b.Property("TitlePlateId") .HasColumnType("INTEGER"); + b.Property("TokenCountDict") + .IsRequired() + .HasColumnType("TEXT"); + b.Property("ToneFlgArray") .IsRequired() .HasColumnType("TEXT"); + b.Property("UnlockedSongIdList") + .IsRequired() + .HasColumnType("TEXT"); + b.HasKey("Baid"); b.ToTable("UserData"); }); - modelBuilder.Entity("TaikoLocalServer.Entities.AiScoreDatum", b => + modelBuilder.Entity("GameDatabase.Entities.AiScoreDatum", b => { - b.HasOne("TaikoLocalServer.Entities.Card", "Ba") + b.HasOne("GameDatabase.Entities.Card", "Ba") .WithMany() .HasForeignKey("Baid") .HasPrincipalKey("Baid") @@ -347,9 +374,9 @@ namespace TaikoLocalServer.Migrations b.Navigation("Ba"); }); - modelBuilder.Entity("TaikoLocalServer.Entities.AiSectionScoreDatum", b => + modelBuilder.Entity("GameDatabase.Entities.AiSectionScoreDatum", b => { - b.HasOne("TaikoLocalServer.Entities.AiScoreDatum", "Parent") + b.HasOne("GameDatabase.Entities.AiScoreDatum", "Parent") .WithMany("AiSectionScoreData") .HasForeignKey("Baid", "SongId", "Difficulty") .OnDelete(DeleteBehavior.Cascade) @@ -358,9 +385,9 @@ namespace TaikoLocalServer.Migrations b.Navigation("Parent"); }); - modelBuilder.Entity("TaikoLocalServer.Entities.DanScoreDatum", b => + modelBuilder.Entity("GameDatabase.Entities.DanScoreDatum", b => { - b.HasOne("TaikoLocalServer.Entities.Card", "Ba") + b.HasOne("GameDatabase.Entities.Card", "Ba") .WithMany() .HasForeignKey("Baid") .HasPrincipalKey("Baid") @@ -370,9 +397,9 @@ namespace TaikoLocalServer.Migrations b.Navigation("Ba"); }); - modelBuilder.Entity("TaikoLocalServer.Entities.DanStageScoreDatum", b => + modelBuilder.Entity("GameDatabase.Entities.DanStageScoreDatum", b => { - b.HasOne("TaikoLocalServer.Entities.DanScoreDatum", "Parent") + b.HasOne("GameDatabase.Entities.DanScoreDatum", "Parent") .WithMany("DanStageScoreData") .HasForeignKey("Baid", "DanId") .OnDelete(DeleteBehavior.Cascade) @@ -381,9 +408,9 @@ namespace TaikoLocalServer.Migrations b.Navigation("Parent"); }); - modelBuilder.Entity("TaikoLocalServer.Entities.SongBestDatum", b => + modelBuilder.Entity("GameDatabase.Entities.SongBestDatum", b => { - b.HasOne("TaikoLocalServer.Entities.Card", "Ba") + b.HasOne("GameDatabase.Entities.Card", "Ba") .WithMany() .HasForeignKey("Baid") .HasPrincipalKey("Baid") @@ -393,9 +420,9 @@ namespace TaikoLocalServer.Migrations b.Navigation("Ba"); }); - modelBuilder.Entity("TaikoLocalServer.Entities.SongPlayDatum", b => + modelBuilder.Entity("GameDatabase.Entities.SongPlayDatum", b => { - b.HasOne("TaikoLocalServer.Entities.Card", "Ba") + b.HasOne("GameDatabase.Entities.Card", "Ba") .WithMany() .HasForeignKey("Baid") .HasPrincipalKey("Baid") @@ -405,9 +432,9 @@ namespace TaikoLocalServer.Migrations b.Navigation("Ba"); }); - modelBuilder.Entity("TaikoLocalServer.Entities.UserDatum", b => + modelBuilder.Entity("GameDatabase.Entities.UserDatum", b => { - b.HasOne("TaikoLocalServer.Entities.Card", "Ba") + b.HasOne("GameDatabase.Entities.Card", "Ba") .WithMany() .HasForeignKey("Baid") .HasPrincipalKey("Baid") @@ -417,12 +444,12 @@ namespace TaikoLocalServer.Migrations b.Navigation("Ba"); }); - modelBuilder.Entity("TaikoLocalServer.Entities.AiScoreDatum", b => + modelBuilder.Entity("GameDatabase.Entities.AiScoreDatum", b => { b.Navigation("AiSectionScoreData"); }); - modelBuilder.Entity("TaikoLocalServer.Entities.DanScoreDatum", b => + modelBuilder.Entity("GameDatabase.Entities.DanScoreDatum", b => { b.Navigation("DanStageScoreData"); }); diff --git a/LocalSaveModScoreMigrator/LocalSaveModScoreMigrator.csproj b/LocalSaveModScoreMigrator/LocalSaveModScoreMigrator.csproj index ce03ddd..de979d3 100644 --- a/LocalSaveModScoreMigrator/LocalSaveModScoreMigrator.csproj +++ b/LocalSaveModScoreMigrator/LocalSaveModScoreMigrator.csproj @@ -2,17 +2,18 @@ Exe - net6.0 + net8.0 enable enable 1.0.0-beta1 + 11 - - - + + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/LocalSaveModScoreMigrator/Program.cs b/LocalSaveModScoreMigrator/Program.cs index 219595d..343fd7a 100644 --- a/LocalSaveModScoreMigrator/Program.cs +++ b/LocalSaveModScoreMigrator/Program.cs @@ -1,61 +1,61 @@ -using System.CommandLine; -using System.CommandLine.Parsing; -using System.Text; -using System.Text.Json; -using GameDatabase.Context; +using GameDatabase.Context; using GameDatabase.Entities; using ICSharpCode.SharpZipLib.GZip; using JorgeSerrano.Json; using LocalSaveModScoreMigrator; using SharedProject.Enums; +using System.CommandLine; +using System.CommandLine.Parsing; +using System.Text; +using System.Text.Json; var rootCommand = new RootCommand("Command-line tool to migrate saves from local save mod to local server database."); FileInfo? Parse(SymbolResult result, string defaultFileName) { - if (result.Tokens.Count == 0) - { - return new FileInfo(defaultFileName); - } + if (result.Tokens.Count == 0) + { + return new FileInfo(defaultFileName); + } - var filePath = result.Tokens.Single().Value; - if (File.Exists(filePath)) - { - return new FileInfo(filePath); - } + var filePath = result.Tokens.Single().Value; + if (File.Exists(filePath)) + { + return new FileInfo(filePath); + } - result.ErrorMessage = $"File {filePath} does not exist"; - return null; + result.ErrorMessage = $"File {filePath} does not exist"; + return null; } var saveFileArgument = new Option( - name: "--save-file-path", - description: "Path to the save file from local save mod", - isDefault: true, - parseArgument: result => Parse(result, "record_enso_p1.json") + name: "--save-file-path", + description: "Path to the save file from local save mod", + isDefault: true, + parseArgument: result => Parse(result, "record_enso_p1.json") ); saveFileArgument.AddAlias("-s"); var dbFileArgument = new Option( - name: "--db-file-path", - description: "Path to the database file for local server", - isDefault: true, - parseArgument: result => Parse(result, "wwwroot/taiko.db3") + name: "--db-file-path", + description: "Path to the database file for local server", + isDefault: true, + parseArgument: result => Parse(result, "wwwroot/taiko.db3") ); dbFileArgument.AddAlias("-db"); var musicInfoArgument = new Option( - name: "--musicinfo-file-path", - description: "Path to the music info json/bin file", - isDefault: true, - parseArgument: result => Parse(result, "wwwroot/data/musicinfo.json") + name: "--musicinfo-file-path", + description: "Path to the music info json/bin file", + isDefault: true, + parseArgument: result => Parse(result, "wwwroot/data/musicinfo.json") ); musicInfoArgument.AddAlias("-m"); -var baidArgument = new Option( - name: "--baid", - description: "Target card's baid, data will be imported to that card", - getDefaultValue: () => 1 +var baidArgument = new Option( + name: "--baid", + description: "Target card's baid, data will be imported to that card", + getDefaultValue: () => 1 ); baidArgument.AddAlias("-b"); @@ -64,133 +64,133 @@ rootCommand.Add(dbFileArgument); rootCommand.Add(musicInfoArgument); rootCommand.Add(baidArgument); -rootCommand.SetHandler((saveFile, dbFile, musicInfoFile, baid) => Run(saveFile!, dbFile!, musicInfoFile!, baid), - saveFileArgument, dbFileArgument, musicInfoArgument, baidArgument); +rootCommand.SetHandler((saveFile, dbFile, musicInfoFile, baid) => Run(saveFile!, dbFile!, musicInfoFile!, baid), + saveFileArgument, dbFileArgument, musicInfoArgument, baidArgument); await rootCommand.InvokeAsync(args); -void Run(FileSystemInfo saveFile, FileSystemInfo dbFile, FileSystemInfo musicInfoFile, int baid) +void Run(FileSystemInfo saveFile, FileSystemInfo dbFile, FileSystemInfo musicInfoFile, ulong baid) { - using var db = new TaikoDbContext(dbFile.FullName); - var card = db.Cards.FirstOrDefault(card1 => card1.Baid == baid); - if (card is null) - { - Console.ResetColor(); - Console.ForegroundColor = ConsoleColor.Red; - Console.Error.WriteLine($"Card with baid {baid} does not exist!"); - Console.ResetColor(); - return; - } - - Console.ResetColor(); - Console.ForegroundColor = ConsoleColor.Cyan; - Console.WriteLine($"Baid: {card.Baid}"); - Console.WriteLine($"Access code: {card.AccessCode}"); - Console.ResetColor(); + using var db = new TaikoDbContext(dbFile.FullName); + var card = db.Cards.FirstOrDefault(card1 => card1.Baid == baid); + if (card is null) + { + Console.ResetColor(); + Console.ForegroundColor = ConsoleColor.Red; + Console.Error.WriteLine($"Card with baid {baid} does not exist!"); + Console.ResetColor(); + return; + } - var localSaveJson = File.ReadAllText(saveFile.FullName); - var options = new JsonSerializerOptions - { - PropertyNamingPolicy = new JsonSnakeCaseNamingPolicy() - }; - options.Converters.Add(new DateTimeConverter()); - options.Converters.Add(new ScoreRankConverter()); - var playRecordJson = JsonSerializer.Deserialize>(localSaveJson, options); - if (playRecordJson is null) - { - throw new ApplicationException("Play record json is null"); - } + Console.ResetColor(); + Console.ForegroundColor = ConsoleColor.Cyan; + Console.WriteLine($"Baid: {card.Baid}"); + Console.WriteLine($"Access code: {card.AccessCode}"); + Console.ResetColor(); - Console.WriteLine(playRecordJson.First().SongId); - - var musicInfoJson = File.ReadAllText(musicInfoFile.FullName); - if (musicInfoFile.FullName.EndsWith(".bin")) - { - var compressed = File.OpenRead(musicInfoFile.FullName); - using var gZipInputStream = new GZipInputStream(compressed); - using var decompressed = new MemoryStream(); - - // Decompress - gZipInputStream.CopyTo(decompressed); + var localSaveJson = File.ReadAllText(saveFile.FullName); + var options = new JsonSerializerOptions + { + PropertyNamingPolicy = new JsonSnakeCaseNamingPolicy() + }; + options.Converters.Add(new DateTimeConverter()); + options.Converters.Add(new ScoreRankConverter()); + var playRecordJson = JsonSerializer.Deserialize>(localSaveJson, options); + if (playRecordJson is null) + { + throw new ApplicationException("Play record json is null"); + } - // Reset stream for reading - decompressed.Position = 0; - musicInfoJson = Encoding.UTF8.GetString(decompressed.ToArray()); - } - var musicInfo = JsonSerializer.Deserialize(musicInfoJson); + Console.WriteLine(playRecordJson.First().SongId); - if (musicInfo is null) - { - throw new ApplicationException("Music info is null"); - } + var musicInfoJson = File.ReadAllText(musicInfoFile.FullName); + if (musicInfoFile.FullName.EndsWith(".bin")) + { + var compressed = File.OpenRead(musicInfoFile.FullName); + using var gZipInputStream = new GZipInputStream(compressed); + using var decompressed = new MemoryStream(); - var user = db.UserData.First(); - var musicInfoMap = musicInfo.Items.DistinctBy(entry => entry.Id) - .ToDictionary(entry => entry.Id, entry => entry.SongId); - foreach (var playRecord in playRecordJson) - { - var key = playRecord.SongId.Split("_")[1]; - if (!musicInfoMap.ContainsKey(key)) - { - Console.ResetColor(); - Console.ForegroundColor = ConsoleColor.Yellow; - Console.WriteLine($"Key {key} does not exist!!!"); - Console.ResetColor(); - continue; - } - var songId = musicInfoMap[key]; - Console.ResetColor(); - Console.ForegroundColor = ConsoleColor.Cyan; - Console.WriteLine($"Importing song with id: {songId}"); - Console.WriteLine($"Song play time: {playRecord.DateTime}"); - Console.ResetColor(); - var playLog = new SongPlayDatum - { - Baid = user.Baid, - Difficulty = playRecord.Difficulty, - Crown = playRecord.Crown, - Score = playRecord.Score, - ScoreRank = playRecord.Scorerank, - ComboCount = playRecord.Combo, - DrumrollCount = playRecord.Drumroll, - PlayTime = playRecord.DateTime, - GoodCount = playRecord.Good, - MissCount = playRecord.Bad, - OkCount = playRecord.Ok, - Skipped = false, - SongNumber = 0, - SongId = songId - }; - db.SongPlayData.Add(playLog); + // Decompress + gZipInputStream.CopyTo(decompressed); + + // Reset stream for reading + decompressed.Position = 0; + musicInfoJson = Encoding.UTF8.GetString(decompressed.ToArray()); + } + var musicInfo = JsonSerializer.Deserialize(musicInfoJson); + + if (musicInfo is null) + { + throw new ApplicationException("Music info is null"); + } + + var user = db.UserData.First(); + var musicInfoMap = musicInfo.Items.DistinctBy(entry => entry.Id) + .ToDictionary(entry => entry.Id, entry => entry.SongId); + foreach (var playRecord in playRecordJson) + { + var key = playRecord.SongId.Split("_")[1]; + if (!musicInfoMap.ContainsKey(key)) + { + Console.ResetColor(); + Console.ForegroundColor = ConsoleColor.Yellow; + Console.WriteLine($"Key {key} does not exist!!!"); + Console.ResetColor(); + continue; + } + var songId = musicInfoMap[key]; + Console.ResetColor(); + Console.ForegroundColor = ConsoleColor.Cyan; + Console.WriteLine($"Importing song with id: {songId}"); + Console.WriteLine($"Song play time: {playRecord.DateTime}"); + Console.ResetColor(); + var playLog = new SongPlayDatum + { + Baid = user.Baid, + Difficulty = playRecord.Difficulty, + Crown = playRecord.Crown, + Score = playRecord.Score, + ScoreRank = playRecord.Scorerank, + ComboCount = playRecord.Combo, + DrumrollCount = playRecord.Drumroll, + PlayTime = playRecord.DateTime, + GoodCount = playRecord.Good, + MissCount = playRecord.Bad, + OkCount = playRecord.Ok, + Skipped = false, + SongNumber = 0, + SongId = songId + }; + db.SongPlayData.Add(playLog); - var best = new SongBestDatum - { - Baid = user.Baid, - Difficulty = playRecord.Difficulty, - BestCrown = playRecord.Crown, - BestScore = playRecord.Score, - BestScoreRank = playRecord.Scorerank, - SongId = songId - }; + var best = new SongBestDatum + { + Baid = user.Baid, + Difficulty = playRecord.Difficulty, + BestCrown = playRecord.Crown, + BestScore = playRecord.Score, + BestScoreRank = playRecord.Scorerank, + SongId = songId + }; - var existing = db.SongBestData.FirstOrDefault(datum => datum.Baid == user.Baid && - datum.Difficulty == playLog.Difficulty && - datum.SongId == songId); + var existing = db.SongBestData.FirstOrDefault(datum => datum.Baid == user.Baid && + datum.Difficulty == playLog.Difficulty && + datum.SongId == songId); - if (existing is null) - { - db.SongBestData.Add(best); - } - else - { - existing.BestCrown = (CrownType)Math.Max((int)existing.BestCrown, (int)playRecord.Crown); - existing.BestScoreRank = (ScoreRank)Math.Max((int)existing.BestScoreRank, (int)playRecord.Scorerank); - existing.BestScore = Math.Max(existing.BestScore, playRecord.Score); - db.SongBestData.Update(existing); - } - } + if (existing is null) + { + db.SongBestData.Add(best); + } + else + { + existing.BestCrown = (CrownType)Math.Max((int)existing.BestCrown, (int)playRecord.Crown); + existing.BestScoreRank = (ScoreRank)Math.Max((int)existing.BestScoreRank, (int)playRecord.Scorerank); + existing.BestScore = Math.Max(existing.BestScore, playRecord.Score); + db.SongBestData.Update(existing); + } + } - db.SaveChanges(); + db.SaveChanges(); } \ No newline at end of file diff --git a/SharedProject/Enums/PlayMode.cs b/SharedProject/Enums/PlayMode.cs index 958a0f6..d53a498 100644 --- a/SharedProject/Enums/PlayMode.cs +++ b/SharedProject/Enums/PlayMode.cs @@ -4,6 +4,6 @@ public enum PlayMode { Normal = 0, DanMode = 1, - // Not sure about this + GaidenMode = 4, AiBattle = 6 } \ No newline at end of file diff --git a/SharedProject/Enums/SongGenre.cs b/SharedProject/Enums/SongGenre.cs index 2b0400f..655cb35 100644 --- a/SharedProject/Enums/SongGenre.cs +++ b/SharedProject/Enums/SongGenre.cs @@ -8,6 +8,6 @@ public enum SongGenre Vocaloid = 3, GameMusic = 4, NamcoOriginal = 5, - Variety = 7, - Classical = 8 + Variety = 6, + Classical = 7 } \ No newline at end of file diff --git a/SharedProject/Models/EventFolderData.cs b/SharedProject/Models/EventFolderData.cs index 61e7a93..fb183c5 100644 --- a/SharedProject/Models/EventFolderData.cs +++ b/SharedProject/Models/EventFolderData.cs @@ -4,15 +4,18 @@ namespace SharedProject.Models; public class EventFolderData { - [JsonPropertyName("folderId")] - public uint FolderId { get; set; } + [JsonPropertyName("folderId")] + public uint FolderId { get; set; } - [JsonPropertyName("verupNo")] - public uint VerupNo { get; set; } + [JsonPropertyName("verupNo")] + public uint VerupNo { get; set; } - [JsonPropertyName("priority")] - public uint Priority { get; set; } + [JsonPropertyName("priority")] + public uint Priority { get; set; } - [JsonPropertyName("songNo")] - public uint[]? SongNo { get; set; } + [JsonPropertyName("songNo")] + public uint[]? SongNo { get; set; } + + [JsonPropertyName("parentFolderId")] + public uint ParentFolderId { get; set; } } \ No newline at end of file diff --git a/SharedProject/Models/MovieData.cs b/SharedProject/Models/MovieData.cs new file mode 100644 index 0000000..7a3a2b5 --- /dev/null +++ b/SharedProject/Models/MovieData.cs @@ -0,0 +1,12 @@ +using System.Text.Json.Serialization; + +namespace SharedProject.Models; + +public class MovieData +{ + [JsonPropertyName("movie_id")] + public uint MovieId { get; set; } + + [JsonPropertyName("enable_days")] + public uint EnableDays { get; set; } +} \ No newline at end of file diff --git a/SharedProject/Models/QRCodeData.cs b/SharedProject/Models/QRCodeData.cs new file mode 100644 index 0000000..8785b68 --- /dev/null +++ b/SharedProject/Models/QRCodeData.cs @@ -0,0 +1,10 @@ +using System.Text.Json.Serialization; + +namespace SharedProject.Models; + +public class QRCodeData +{ + [JsonPropertyName("serial")] public string Serial { get; set; } = null!; + + [JsonPropertyName("id")] public uint Id { get; set; } +} \ No newline at end of file diff --git a/SharedProject/Models/Requests/SetFavoriteRequest.cs b/SharedProject/Models/Requests/SetFavoriteRequest.cs index a9d6441..a532e99 100644 --- a/SharedProject/Models/Requests/SetFavoriteRequest.cs +++ b/SharedProject/Models/Requests/SetFavoriteRequest.cs @@ -2,7 +2,7 @@ public class SetFavoriteRequest { - public uint Baid { get; set; } + public ulong Baid { get; set; } public uint SongId { get; set; } public bool IsFavorite { get; set; } } \ No newline at end of file diff --git a/SharedProject/Models/Requests/SetPasswordRequest.cs b/SharedProject/Models/Requests/SetPasswordRequest.cs new file mode 100644 index 0000000..c13c441 --- /dev/null +++ b/SharedProject/Models/Requests/SetPasswordRequest.cs @@ -0,0 +1,8 @@ +namespace SharedProject.Models.Requests; + +public class SetPasswordRequest +{ + public string AccessCode { get; set; } = default!; + public string Password { get; set; } = default!; + public string Salt { get; set; } = default!; +} \ No newline at end of file diff --git a/SharedProject/Models/ShopFolderData.cs b/SharedProject/Models/ShopFolderData.cs new file mode 100644 index 0000000..fc0f884 --- /dev/null +++ b/SharedProject/Models/ShopFolderData.cs @@ -0,0 +1,10 @@ +using System.Text.Json.Serialization; + +namespace SharedProject.Models; + +public class ShopFolderData +{ + [JsonPropertyName("songNo")] public uint SongNo { get; set; } + + [JsonPropertyName("price")] public uint Price { get; set; } +} \ No newline at end of file diff --git a/SharedProject/Models/User.cs b/SharedProject/Models/User.cs index 6633ee7..8336e75 100644 --- a/SharedProject/Models/User.cs +++ b/SharedProject/Models/User.cs @@ -3,6 +3,10 @@ public class User { public string AccessCode { get; set; } = string.Empty; - + public uint Baid { get; set; } + + public string Password { get; set; } = string.Empty; + + public string Salt { get; set; } = string.Empty; } \ No newline at end of file diff --git a/SharedProject/Models/UserSetting.cs b/SharedProject/Models/UserSetting.cs index 50808a4..b05460e 100644 --- a/SharedProject/Models/UserSetting.cs +++ b/SharedProject/Models/UserSetting.cs @@ -7,49 +7,57 @@ public class UserSetting public uint ToneId { get; set; } public bool IsDisplayAchievement { get; set; } - + public bool IsDisplayDanOnNamePlate { get; set; } - + + public uint DifficultySettingCourse { get; set; } + + public uint DifficultySettingStar { get; set; } + + public uint DifficultySettingSort { get; set; } + public bool IsVoiceOn { get; set; } - + public bool IsSkipOn { get; set; } public Difficulty AchievementDisplayDifficulty { get; set; } public PlaySetting PlaySetting { get; set; } = new(); - + public int NotesPosition { get; set; } public string MyDonName { get; set; } = string.Empty; + public uint MyDonNameLanguage { get; set; } + public string Title { get; set; } = string.Empty; public uint TitlePlateId { get; set; } public uint Kigurumi { get; set; } - + public uint Head { get; set; } - + public uint Body { get; set; } - + public uint Face { get; set; } - + public uint Puchi { get; set; } public List UnlockedKigurumi { get; set; } = new(); - + public List UnlockedHead { get; set; } = new(); - + public List UnlockedBody { get; set; } = new(); - + public List UnlockedFace { get; set; } = new(); - + public List UnlockedPuchi { get; set; } = new(); public uint FaceColor { get; set; } - + public uint BodyColor { get; set; } - + public uint LimbColor { get; set; } } \ No newline at end of file diff --git a/SharedProject/SharedProject.csproj b/SharedProject/SharedProject.csproj index f6af8be..426878f 100644 --- a/SharedProject/SharedProject.csproj +++ b/SharedProject/SharedProject.csproj @@ -1,9 +1,10 @@ - net6.0 + net8.0 enable enable + 11 diff --git a/TaikoLocalServer/.gitignore b/TaikoLocalServer/.gitignore index 388d155..2c6ddca 100644 --- a/TaikoLocalServer/.gitignore +++ b/TaikoLocalServer/.gitignore @@ -1 +1,3 @@ -wwwroot/data/music_attribute.json \ No newline at end of file +wwwroot/data/music_order.json +wwwroot/data/musicinfo.json +wwwroot/data/wordlist.json \ No newline at end of file diff --git a/TaikoLocalServer/Common/Constants.cs b/TaikoLocalServer/Common/Constants.cs index 7ae9568..1291d57 100644 --- a/TaikoLocalServer/Common/Constants.cs +++ b/TaikoLocalServer/Common/Constants.cs @@ -2,44 +2,18 @@ public static class Constants { - public const string DATE_TIME_FORMAT = "yyyyMMddHHmmss"; + public const string DATE_TIME_FORMAT = "yyyyMMddHHmmss"; - public const int MUSIC_ID_MAX = 1599; + public const int MUSIC_ID_MAX = 1599; - public const int MUSIC_ID_MAX_EXPANDED = 9000; + public const int MUSIC_ID_MAX_EXPANDED = 9000; - public const string DEFAULT_DB_NAME = "taiko.db3"; + public const string DEFAULT_DB_NAME = "taiko.db3"; - public const string MUSIC_ATTRIBUTE_FILE_NAME = "music_attribute.json"; - public const string MUSIC_ATTRIBUTE_COMPRESSED_FILE_NAME = "music_attribute.bin"; - - public const string DAN_DATA_FILE_NAME = "dan_data.json"; - public const string INTRO_DATA_FILE_NAME = "intro_data.json"; - public const string EVENT_FOLDER_DATA_FILE_NAME = "event_folder_data.json"; - - public static readonly int[] EVENT_FOLDER_IDS = { - 1, 2, 3, 4, 5, 6, 7, 8, 12, 13, 14 - }; - - public const int MIN_DAN_ID = 1; - public const int MAX_DAN_ID = 19; - - public const int TONE_UID_MAX = 19; - - public const int TITLE_UID_MAX = 814; - - private const int COSTUME_FLAG_1_ARRAY_SIZE = 154; - private const int COSTUME_FLAG_2_ARRAY_SIZE = 140; - private const int COSTUME_FLAG_3_ARRAY_SIZE = 156; - private const int COSTUME_FLAG_4_ARRAY_SIZE = 58; - private const int COSTUME_FLAG_5_ARRAY_SIZE = 129; - public static readonly int[] CostumeFlagArraySizes = - { - COSTUME_FLAG_1_ARRAY_SIZE, - COSTUME_FLAG_2_ARRAY_SIZE, - COSTUME_FLAG_3_ARRAY_SIZE, - COSTUME_FLAG_4_ARRAY_SIZE, - COSTUME_FLAG_5_ARRAY_SIZE - - }; + public const string MUSIC_INFO_BASE_NAME = "musicinfo"; + public const string WORDLIST_BASE_NAME = "wordlist"; + public const string MUSIC_ORDER_BASE_NAME = "music_order"; + public const string DON_COS_REWARD_BASE_NAME = "don_cos_reward"; + public const string SHOUGOU_BASE_NAME = "shougou"; + public const string NEIRO_BASE_NAME = "neiro"; } \ No newline at end of file diff --git a/TaikoLocalServer/Common/Utils/FlagCalculator.cs b/TaikoLocalServer/Common/Utils/FlagCalculator.cs index 643070f..78e4a55 100644 --- a/TaikoLocalServer/Common/Utils/FlagCalculator.cs +++ b/TaikoLocalServer/Common/Utils/FlagCalculator.cs @@ -1,4 +1,5 @@ using System.Collections; +using System.Collections.Immutable; using System.Collections.Specialized; using System.Runtime.InteropServices; using GameDatabase.Entities; @@ -70,7 +71,7 @@ public static class FlagCalculator return (ushort)(previous | result); } - public static byte[] ComputeGotDanFlags(List danScoreData) + public static byte[] ComputeGotDanFlags(List danScoreData, List danIdList) { var gotDanFlagList = new List(); var gotDanFlag = new BitVector32(); @@ -84,10 +85,9 @@ public static class FlagCalculator var section8 = BitVector32.CreateSection(8, section7); var sections = new[] { section1, section2, section3, section4, section5, section6, section7, section8 }; - - for (var i = Constants.MIN_DAN_ID; i < Constants.MAX_DAN_ID; i++) + + foreach (var danId in danIdList) { - var danId = i; var flag = 0; if (danScoreData.Any(datum => datum.DanId == danId)) { @@ -126,4 +126,22 @@ public static class FlagCalculator return result; } + + public static byte[] GetBitArrayTrue(int bitArraySize) + { + var result = new byte[(bitArraySize / 8) + 1]; + var bitSet = new BitArray(bitArraySize, true); + bitSet.CopyTo(result, 0); + + return result; + } + + public static byte[] GetBitArrayFalse(int bitArraySize) + { + var result = new byte[(bitArraySize / 8) + 1]; + var bitSet = new BitArray(bitArraySize, false); + bitSet.CopyTo(result, 0); + + return result; + } } \ No newline at end of file diff --git a/TaikoLocalServer/Common/Utils/JsonHelper.cs b/TaikoLocalServer/Common/Utils/JsonHelper.cs index 49549d7..ad4b2aa 100644 --- a/TaikoLocalServer/Common/Utils/JsonHelper.cs +++ b/TaikoLocalServer/Common/Utils/JsonHelper.cs @@ -1,15 +1,39 @@ -using System.Text.Json; -using GameDatabase.Entities; +using GameDatabase.Entities; +using System.Text.Json; namespace TaikoLocalServer.Common.Utils; public static class JsonHelper { + public static uint[] GetUIntArrayFromJson(string data, int length, ILogger logger, string fieldName) + { + var array = new uint[length]; + try + { + array = JsonSerializer.Deserialize(data); + } + catch (JsonException e) + { + logger.LogError(e, "Parsing {FieldName} json data failed", fieldName); + } + + if (array != null && array.Length >= length) + { + return array; + } + + logger.LogWarning($"{fieldName} is null or length less than {length}!"); + array = new uint[length]; + + return array; + } + public static List GetCostumeDataFromUserData(UserDatum userData, ILogger logger) { var costumeData = new List { 0, 0, 0, 0, 0 }; try { + // logger.LogInformation(userData.CostumeData); costumeData = JsonSerializer.Deserialize>(userData.CostumeData); } catch (JsonException e) @@ -21,13 +45,13 @@ public static class JsonHelper { return costumeData; } - + logger.LogWarning("Costume data is null or count less than 5!"); costumeData = new List { 0, 0, 0, 0, 0 }; return costumeData; } - + public static List> GetCostumeUnlockDataFromUserData(UserDatum userData, ILogger logger) { var costumeUnlockData = new List> { new(), new(), new(), new(), new() }; @@ -44,7 +68,7 @@ public static class JsonHelper { return costumeUnlockData; } - + logger.LogWarning("Costume unlock data is null or count less than 5!"); costumeUnlockData = new List> { new(), new(), new(), new(), new() }; diff --git a/TaikoLocalServer/Configurations/Kestrel.json b/TaikoLocalServer/Configurations/Kestrel.json index 413f2b9..dea2b88 100644 --- a/TaikoLocalServer/Configurations/Kestrel.json +++ b/TaikoLocalServer/Configurations/Kestrel.json @@ -4,17 +4,8 @@ "BaseServer": { "Url": "http://0.0.0.0:5000" }, - "AmAuthServer": { - "Url": "http://0.0.0.0:80" - }, - "MuchaServer": { - "Url": "https://0.0.0.0:10122" - }, "GameServer1": { - "Url": "https://0.0.0.0:54430" - }, - "GameServer2": { - "Url": "https://0.0.0.0:54431" + "Url": "https://0.0.0.0:57402" } }, "Certificates": { diff --git a/TaikoLocalServer/Configurations/ServerSettings.json b/TaikoLocalServer/Configurations/ServerSettings.json index e5b040c..31294fb 100644 --- a/TaikoLocalServer/Configurations/ServerSettings.json +++ b/TaikoLocalServer/Configurations/ServerSettings.json @@ -2,6 +2,6 @@ "ServerSettings": { "MuchaUrl": "https://v402-front.mucha-prd.nbgi-amnet.jp:10122", "GameUrl": "vsapi.taiko-p.jp", - "EnableMoreSongs": true + "EnableMoreSongs": false } } \ No newline at end of file diff --git a/TaikoLocalServer/Controllers/Api/CardsController.cs b/TaikoLocalServer/Controllers/Api/CardsController.cs index bbbea64..97767e7 100644 --- a/TaikoLocalServer/Controllers/Api/CardsController.cs +++ b/TaikoLocalServer/Controllers/Api/CardsController.cs @@ -1,4 +1,6 @@ -namespace TaikoLocalServer.Controllers.Api; +using SharedProject.Models.Requests; + +namespace TaikoLocalServer.Controllers.Api; [ApiController] [Route("api/[controller]")] @@ -19,4 +21,13 @@ public class CardsController : BaseController return result ? NoContent() : NotFound(); } + [HttpPost] + public async Task UpdatePassword(SetPasswordRequest request) + { + var accessCode = request.AccessCode; + var password = request.Password; + var salt = request.Salt; + var result = await cardService.UpdatePassword(accessCode, password, salt); + return result ? NoContent() : NotFound(); + } } \ No newline at end of file diff --git a/TaikoLocalServer/Controllers/Api/DanBestDataController.cs b/TaikoLocalServer/Controllers/Api/DanBestDataController.cs index 257da2f..184f110 100644 --- a/TaikoLocalServer/Controllers/Api/DanBestDataController.cs +++ b/TaikoLocalServer/Controllers/Api/DanBestDataController.cs @@ -15,7 +15,7 @@ public class DanBestDataController : BaseController } [HttpGet("{baid}")] - public async Task GetDanBestData(uint baid) + public async Task GetDanBestData(ulong baid) { var danScores = await danScoreDatumService.GetDanScoreDatumByBaid(baid); var danDataList = new List(); diff --git a/TaikoLocalServer/Controllers/Api/PlayDataController.cs b/TaikoLocalServer/Controllers/Api/PlayDataController.cs index 5b0a194..95b5766 100644 --- a/TaikoLocalServer/Controllers/Api/PlayDataController.cs +++ b/TaikoLocalServer/Controllers/Api/PlayDataController.cs @@ -21,7 +21,7 @@ public class PlayDataController : BaseController } [HttpGet("{baid}")] - public async Task> GetSongBestRecords(uint baid) + public async Task> GetSongBestRecords(ulong baid) { var user = await userDatumService.GetFirstUserDatumOrNull(baid); if (user is null) diff --git a/TaikoLocalServer/Controllers/Api/UserSettingsController.cs b/TaikoLocalServer/Controllers/Api/UserSettingsController.cs index 0f7b174..632a89e 100644 --- a/TaikoLocalServer/Controllers/Api/UserSettingsController.cs +++ b/TaikoLocalServer/Controllers/Api/UserSettingsController.cs @@ -1,6 +1,6 @@ -using System.Text.Json; -using SharedProject.Models; +using SharedProject.Models; using SharedProject.Utils; +using System.Text.Json; namespace TaikoLocalServer.Controllers.Api; @@ -16,7 +16,7 @@ public class UserSettingsController : BaseController } [HttpGet] - public async Task> GetUserSetting(uint baid) + public async Task> GetUserSetting(ulong baid) { var user = await userDatumService.GetFirstUserDatumOrNull(baid); @@ -25,6 +25,8 @@ public class UserSettingsController : BaseController return NotFound(); } + var difficultySettingArray = JsonHelper.GetUIntArrayFromJson(user.DifficultySettingArray, 3, Logger, nameof(user.DifficultySettingArray)); + var costumeData = JsonHelper.GetCostumeDataFromUserData(user, Logger); var costumeUnlockData = JsonHelper.GetCostumeUnlockDataFromUserData(user, Logger); @@ -34,12 +36,16 @@ public class UserSettingsController : BaseController AchievementDisplayDifficulty = user.AchievementDisplayDifficulty, IsDisplayAchievement = user.DisplayAchievement, IsDisplayDanOnNamePlate = user.DisplayDan, + DifficultySettingCourse = difficultySettingArray[0], + DifficultySettingStar = difficultySettingArray[1], + DifficultySettingSort = difficultySettingArray[2], IsVoiceOn = user.IsVoiceOn, IsSkipOn = user.IsSkipOn, NotesPosition = user.NotesPosition, PlaySetting = PlaySettingConverter.ShortToPlaySetting(user.OptionSetting), ToneId = user.SelectedToneId, MyDonName = user.MyDonName, + MyDonNameLanguage = user.MyDonNameLanguage, Title = user.Title, TitlePlateId = user.TitlePlateId, Kigurumi = costumeData[0], @@ -48,9 +54,9 @@ public class UserSettingsController : BaseController Face = costumeData[3], Puchi = costumeData[4], UnlockedKigurumi = costumeUnlockData[0], - UnlockedHead = costumeUnlockData[1], - UnlockedBody = costumeUnlockData[2], - UnlockedFace = costumeUnlockData[3], + UnlockedHead = costumeUnlockData[1], + UnlockedBody = costumeUnlockData[2], + UnlockedFace = costumeUnlockData[3], UnlockedPuchi = costumeUnlockData[4], BodyColor = user.ColorBody, FaceColor = user.ColorFace, @@ -60,7 +66,7 @@ public class UserSettingsController : BaseController } [HttpPost] - public async Task SaveUserSetting(uint baid, UserSetting userSetting) + public async Task SaveUserSetting(ulong baid, UserSetting userSetting) { var user = await userDatumService.GetFirstUserDatumOrNull(baid); @@ -77,23 +83,31 @@ public class UserSettingsController : BaseController userSetting.Face, userSetting.Puchi, }; - + + var difficultySettings = new List + { + userSetting.DifficultySettingCourse, + userSetting.DifficultySettingStar, + userSetting.DifficultySettingSort + }; + user.IsSkipOn = userSetting.IsSkipOn; user.IsVoiceOn = userSetting.IsVoiceOn; user.DisplayAchievement = userSetting.IsDisplayAchievement; user.DisplayDan = userSetting.IsDisplayDanOnNamePlate; + user.DifficultySettingArray = JsonSerializer.Serialize(difficultySettings); user.NotesPosition = userSetting.NotesPosition; user.SelectedToneId = userSetting.ToneId; user.AchievementDisplayDifficulty = userSetting.AchievementDisplayDifficulty; user.OptionSetting = PlaySettingConverter.PlaySettingToShort(userSetting.PlaySetting); user.MyDonName = userSetting.MyDonName; + user.MyDonNameLanguage = userSetting.MyDonNameLanguage; user.Title = userSetting.Title; user.TitlePlateId = userSetting.TitlePlateId; user.ColorBody = userSetting.BodyColor; user.ColorFace = userSetting.FaceColor; user.ColorLimb = userSetting.LimbColor; user.CostumeData = JsonSerializer.Serialize(costumes); - await userDatumService.UpdateUserDatum(user); diff --git a/TaikoLocalServer/Controllers/Game/AddTokenCountController.cs b/TaikoLocalServer/Controllers/Game/AddTokenCountController.cs index 69fad4d..36c9fda 100644 --- a/TaikoLocalServer/Controllers/Game/AddTokenCountController.cs +++ b/TaikoLocalServer/Controllers/Game/AddTokenCountController.cs @@ -1,15 +1,56 @@ -namespace TaikoLocalServer.Controllers.Game; +using System.Text.Json; +using Throw; -[Route("/v12r03/chassis/addtokencount.php")] +namespace TaikoLocalServer.Controllers.Game; + +[Route("/v12r00_cn/chassis/addtokencount.php")] [ApiController] public class AddTokenCountController : BaseController { + private readonly IUserDatumService userDatumService; + + public AddTokenCountController(IUserDatumService userDatumService) + { + this.userDatumService = userDatumService; + } + [HttpPost] [Produces("application/protobuf")] - public IActionResult AddTokenCount([FromBody] AddTokenCountRequest request) + public async Task AddTokenCount([FromBody] AddTokenCountRequest request) { Logger.LogInformation("AddTokenCount request : {Request}", request.Stringify()); + var user = await userDatumService.GetFirstUserDatumOrNull(request.Baid); + user.ThrowIfNull($"User with baid {request.Baid} does not exist!"); + + var tokenCountDict = new Dictionary(); + try + { + tokenCountDict = !string.IsNullOrEmpty(user.TokenCountDict) + ? JsonSerializer.Deserialize>(user.TokenCountDict) + : new Dictionary(); + } + catch (JsonException e) + { + Logger.LogError(e, "Parsing TokenCountDict data for user with baid {Request} failed!", request.Baid); + } + + tokenCountDict.ThrowIfNull("TokenCountDict should never be null"); + + foreach (var addTokenCountData in request.AryAddTokenCountDatas) + { + var tokenId = addTokenCountData.TokenId; + var addTokenCount = addTokenCountData.AddTokenCount; + + if (tokenCountDict.ContainsKey(tokenId)) + tokenCountDict[tokenId] += addTokenCount; + else + tokenCountDict.Add(tokenId, addTokenCount); + } + + user.TokenCountDict = JsonSerializer.Serialize(tokenCountDict); + await userDatumService.UpdateUserDatum(user); + var response = new AddTokenCountResponse { Result = 1 diff --git a/TaikoLocalServer/Controllers/Game/BaidController.cs b/TaikoLocalServer/Controllers/Game/BaidController.cs index 7e78804..81a24c9 100644 --- a/TaikoLocalServer/Controllers/Game/BaidController.cs +++ b/TaikoLocalServer/Controllers/Game/BaidController.cs @@ -1,206 +1,200 @@ -using System.Text.Json; -using GameDatabase.Entities; +using GameDatabase.Entities; +using System.Text.Json; +using Serilog; using Throw; namespace TaikoLocalServer.Controllers.Game; [ApiController] -[Route("/v12r03/chassis/baidcheck.php")] +[Route("/v12r00_cn/chassis/baidcheck.php")] public class BaidController : BaseController { - private readonly IUserDatumService userDatumService; + private readonly IUserDatumService userDatumService; - private readonly ICardService cardService; + private readonly ICardService cardService; - private readonly ISongBestDatumService songBestDatumService; + private readonly ISongBestDatumService songBestDatumService; - private readonly IDanScoreDatumService danScoreDatumService; + private readonly IDanScoreDatumService danScoreDatumService; - private readonly IAiDatumService aiDatumService; + private readonly IAiDatumService aiDatumService; + + private readonly IGameDataService gameDataService; - public BaidController(IUserDatumService userDatumService, ICardService cardService, - ISongBestDatumService songBestDatumService, IDanScoreDatumService danScoreDatumService, IAiDatumService aiDatumService) - { - this.userDatumService = userDatumService; - this.cardService = cardService; - this.songBestDatumService = songBestDatumService; - this.danScoreDatumService = danScoreDatumService; - this.aiDatumService = aiDatumService; - } + public BaidController(IUserDatumService userDatumService, ICardService cardService, + ISongBestDatumService songBestDatumService, IDanScoreDatumService danScoreDatumService, IAiDatumService aiDatumService, + IGameDataService gameDataService) + { + this.userDatumService = userDatumService; + this.cardService = cardService; + this.songBestDatumService = songBestDatumService; + this.danScoreDatumService = danScoreDatumService; + this.aiDatumService = aiDatumService; + this.gameDataService = gameDataService; + } - [HttpPost] - [Produces("application/protobuf")] - public async Task GetBaid([FromBody] BAIDRequest request) - { - Logger.LogInformation("Baid request: {Request}", request.Stringify()); - BAIDResponse response; - var card = await cardService.GetCardByAccessCode(request.AccessCode); - if (card is null) - { - Logger.LogInformation("New user with access code {AccessCode}", request.AccessCode); - var newId = cardService.GetNextBaid(); + [HttpPost] + [Produces("application/protobuf")] + public async Task GetBaid([FromBody] BAIDRequest request) + { + Logger.LogInformation("Baid request: {Request}", request.Stringify()); + BAIDResponse response; + var card = await cardService.GetCardByAccessCode(request.WechatQrStr); + if (card is null) + { + Logger.LogInformation("New user with access code {AccessCode}", request.WechatQrStr); + var newId = cardService.GetNextBaid(); - response = new BAIDResponse - { - Result = 1, - PlayerType = 1, - ComSvrResult = 1, - MbId = 1, - Baid = newId, - AccessCode = request.AccessCode, - IsPublish = true, - CardOwnNum = 1, - RegCountryId = "JPN", - PurposeId = 1, - RegionId = 1 - }; + response = new BAIDResponse + { + Result = 1, + PlayerType = 1, + Baid = newId, + }; - return Ok(response); - } + return Ok(response); + } - var baid = card.Baid; + var baid = card.Baid; - var userData = await userDatumService.GetFirstUserDatumOrDefault(baid); + var userData = await userDatumService.GetFirstUserDatumOrDefault(baid); - var songBestData = await songBestDatumService.GetAllSongBestData(baid); - - var achievementDisplayDifficulty = userData.AchievementDisplayDifficulty; - if (userData.AchievementDisplayDifficulty == Difficulty.None) - { - achievementDisplayDifficulty = songBestData.Any(datum => datum.BestCrown >= CrownType.Clear) ? - songBestData.Where(datum => datum.BestCrown >= CrownType.Clear).Max(datum => datum.Difficulty) : - Difficulty.Easy; - } + var songBestData = await songBestDatumService.GetAllSongBestData(baid); - var songCountData = songBestData.Where(datum => achievementDisplayDifficulty != Difficulty.UraOni ? - datum.Difficulty == achievementDisplayDifficulty : - datum.Difficulty is Difficulty.Oni or Difficulty.UraOni).ToList(); + var achievementDisplayDifficulty = userData.AchievementDisplayDifficulty; + if (userData.AchievementDisplayDifficulty == Difficulty.None) + { + achievementDisplayDifficulty = songBestData.Any(datum => datum.BestCrown >= CrownType.Clear) ? + songBestData.Where(datum => datum.BestCrown >= CrownType.Clear).Max(datum => datum.Difficulty) : + Difficulty.Easy; + } - var crownCount = CalculateCrownCount(songCountData); + var songCountData = songBestData.Where(datum => achievementDisplayDifficulty != Difficulty.UraOni ? + datum.Difficulty == achievementDisplayDifficulty : + datum.Difficulty is Difficulty.Oni or Difficulty.UraOni).ToList(); - var scoreRankCount = CalculateScoreRankCount(songCountData); + var crownCount = CalculateCrownCount(songCountData); + + var scoreRankCount = CalculateScoreRankCount(songCountData); - var costumeData = JsonHelper.GetCostumeDataFromUserData(userData, Logger); + var costumeData = JsonHelper.GetCostumeDataFromUserData(userData, Logger); - var costumeArrays = JsonHelper.GetCostumeUnlockDataFromUserData(userData, Logger); + var costumeArrays = JsonHelper.GetCostumeUnlockDataFromUserData(userData, Logger); - var costumeFlagArrays = Constants.CostumeFlagArraySizes - .Select((size, index) => FlagCalculator.GetBitArrayFromIds(costumeArrays[index], size, Logger)) - .ToList(); + var costumeFlagArrays = gameDataService.GetCostumeFlagArraySizes() + .Select((size, index) => FlagCalculator.GetBitArrayFromIds(costumeArrays[index], size, Logger)) + .ToList(); - var danData = await danScoreDatumService.GetDanScoreDatumByBaid(baid); - - var maxDan = danData.Where(datum => datum.ClearState != DanClearState.NotClear) - .Select(datum => datum.DanId) - .DefaultIfEmpty() - .Max(); - var gotDanFlagArray = FlagCalculator.ComputeGotDanFlags(danData); + var danData = await danScoreDatumService.GetDanScoreDatumByBaid(baid); - var genericInfoFlg = Array.Empty(); - try - { - genericInfoFlg = JsonSerializer.Deserialize(userData.GenericInfoFlgArray); - } - catch (JsonException e) - { - Logger.LogError(e, "Parsing genericinfo flg json data failed"); - } + var maxDan = danData.Where(datum => datum.ClearState != DanClearState.NotClear) + .Select(datum => datum.DanId) + .DefaultIfEmpty() + .Max(); + + var danDataDictionary = gameDataService.GetDanDataDictionary(); + var danIdList = danDataDictionary.Keys.ToList(); + var gotDanFlagArray = FlagCalculator.ComputeGotDanFlags(danData, danIdList); + + var gaidenDataDictionary = gameDataService.GetGaidenDataDictionary(); + var gaidenIdList = gaidenDataDictionary.Keys.ToList(); + danIdList.AddRange(gaidenIdList); + var gotGaidenFlagArray = FlagCalculator.ComputeGotDanFlags(danData, danIdList); - // The only way to get a null is provide string "null" as input, - // which means database content need to be fixed, so better throw - genericInfoFlg.ThrowIfNull("Genericinfo flg should never be null!"); + var genericInfoFlg = Array.Empty(); + try + { + genericInfoFlg = JsonSerializer.Deserialize(userData.GenericInfoFlgArray); + } + catch (JsonException e) + { + Logger.LogError(e, "Parsing genericinfo flg json data failed"); + } - var genericInfoFlgLength = genericInfoFlg.Any()? genericInfoFlg.Max() + 1 : 0; - var genericInfoFlgArray = FlagCalculator.GetBitArrayFromIds(genericInfoFlg, (int)genericInfoFlgLength, Logger); + // The only way to get a null is provide string "null" as input, + // which means database content need to be fixed, so better throw + genericInfoFlg.ThrowIfNull("Genericinfo flg should never be null!"); - var aiRank = (uint)(userData.AiWinCount / 10); - if (aiRank > 11) - { - aiRank = 11; - } - response = new BAIDResponse - { - Result = 1, - PlayerType = 0, - ComSvrResult = 1, - MbId = 1, - Baid = baid, - AccessCode = request.AccessCode, - IsPublish = true, - CardOwnNum = 1, - RegCountryId = "JPN", - PurposeId = 1, - RegionId = 1, - MydonName = userData.MyDonName, - Title = userData.Title, - TitleplateId = userData.TitlePlateId, - ColorFace = userData.ColorFace, - ColorBody = userData.ColorBody, - ColorLimb = userData.ColorLimb, - AryCostumedata = new BAIDResponse.CostumeData - { - Costume1 = costumeData[0], - Costume2 = costumeData[1], - Costume3 = costumeData[2], - Costume4 = costumeData[3], - Costume5 = costumeData[4] - }, - CostumeFlg1 = costumeFlagArrays[0], - CostumeFlg2 = costumeFlagArrays[1], - CostumeFlg3 = costumeFlagArrays[2], - CostumeFlg4 = costumeFlagArrays[3], - CostumeFlg5 = costumeFlagArrays[4], - LastPlayDatetime = userData.LastPlayDatetime.ToString(Constants.DATE_TIME_FORMAT), - IsDispDanOn = userData.DisplayDan, - GotDanMax = maxDan, - GotDanFlg = gotDanFlagArray, - GotDanextraFlg = new byte[20], - DefaultToneSetting = userData.SelectedToneId, - GenericInfoFlg = genericInfoFlgArray, - AryCrownCounts = crownCount, - AryScoreRankCounts = scoreRankCount, - IsDispAchievementOn = userData.DisplayAchievement, - DispAchievementType = (uint)achievementDisplayDifficulty, - IsDispAchievementTypeSet = true, - LastPlayMode = userData.LastPlayMode, - IsDispSouuchiOn = true, - AiRank = aiRank, - AiTotalWin = (uint)userData.AiWinCount, - Accesstoken = "123456", - ContentInfo = GZipBytesUtil.GetGZipBytes(new byte[10]) - }; + var genericInfoFlgLength = genericInfoFlg.Any() ? genericInfoFlg.Max() + 1 : 0; + var genericInfoFlgArray = FlagCalculator.GetBitArrayFromIds(genericInfoFlg, (int)genericInfoFlgLength, Logger); - return Ok(response); - } + var aiRank = (uint)(userData.AiWinCount / 10); + if (aiRank > 11) + { + aiRank = 11; + } + response = new BAIDResponse + { + Result = 1, + PlayerType = 0, + Baid = baid, + MydonName = userData.MyDonName, + MydonNameLanguage = userData.MyDonNameLanguage, + Title = userData.Title, + TitleplateId = userData.TitlePlateId, + ColorFace = userData.ColorFace, + ColorBody = userData.ColorBody, + ColorLimb = userData.ColorLimb, + AryCostumedata = new BAIDResponse.CostumeData + { + Costume1 = costumeData[0], + Costume2 = costumeData[1], + Costume3 = costumeData[2], + Costume4 = costumeData[3], + Costume5 = costumeData[4] + }, + CostumeFlg1 = costumeFlagArrays[0], + CostumeFlg2 = costumeFlagArrays[1], + CostumeFlg3 = costumeFlagArrays[2], + CostumeFlg4 = costumeFlagArrays[3], + CostumeFlg5 = costumeFlagArrays[4], + LastPlayDatetime = userData.LastPlayDatetime.ToString(Constants.DATE_TIME_FORMAT), + IsDispDanOn = userData.DisplayDan, + GotDanMax = maxDan, + GotDanFlg = gotDanFlagArray, + GotDanextraFlg = gotGaidenFlagArray, + DefaultToneSetting = userData.SelectedToneId, + GenericInfoFlg = genericInfoFlgArray, + AryCrownCounts = crownCount, + AryScoreRankCounts = scoreRankCount, + IsDispAchievementOn = userData.DisplayAchievement, + DispAchievementType = (uint)achievementDisplayDifficulty, + IsDispAchievementTypeSet = true, + LastPlayMode = userData.LastPlayMode, + IsDispSouuchiOn = true + }; - private static uint[] CalculateScoreRankCount(IReadOnlyCollection songCountData) - { - var scoreRankCount = new uint[7]; - foreach (var scoreRankType in Enum.GetValues()) - { - if (scoreRankType != ScoreRank.None) - { - scoreRankCount[(int)scoreRankType - 2] = - (uint)songCountData.Count(datum => datum.BestScoreRank == scoreRankType); - } - } + return Ok(response); + } - return scoreRankCount; - } + private static uint[] CalculateScoreRankCount(IReadOnlyCollection songCountData) + { + var scoreRankCount = new uint[7]; + foreach (var scoreRankType in Enum.GetValues()) + { + if (scoreRankType != ScoreRank.None) + { + scoreRankCount[(int)scoreRankType - 2] = + (uint)songCountData.Count(datum => datum.BestScoreRank == scoreRankType); + } + } - private static uint[] CalculateCrownCount(IReadOnlyCollection songCountData) - { - var crownCount = new uint[3]; - foreach (var crownType in Enum.GetValues()) - { - if (crownType != CrownType.None) - { - crownCount[(int)crownType - 1] = (uint)songCountData.Count(datum => datum.BestCrown == crownType); - } - } + return scoreRankCount; + } - return crownCount; - } + private static uint[] CalculateCrownCount(IReadOnlyCollection songCountData) + { + var crownCount = new uint[3]; + foreach (var crownType in Enum.GetValues()) + { + if (crownType != CrownType.None) + { + crownCount[(int)crownType - 1] = (uint)songCountData.Count(datum => datum.BestCrown == crownType); + } + } + + return crownCount; + } } \ No newline at end of file diff --git a/TaikoLocalServer/Controllers/Game/BookkeepingController.cs b/TaikoLocalServer/Controllers/Game/BookkeepingController.cs index 2ec407a..736d10a 100644 --- a/TaikoLocalServer/Controllers/Game/BookkeepingController.cs +++ b/TaikoLocalServer/Controllers/Game/BookkeepingController.cs @@ -1,7 +1,7 @@ namespace TaikoLocalServer.Controllers.Game; [ApiController] -[Route("/v12r03/chassis/bookkeeping.php")] +[Route("/v12r00_cn/chassis/bookkeeping.php")] public class BookkeepingController : BaseController { [HttpPost] diff --git a/TaikoLocalServer/Controllers/Game/ChallengeCompetitionController.cs b/TaikoLocalServer/Controllers/Game/ChallengeCompetitionController.cs index ffb3f8d..08f873f 100644 --- a/TaikoLocalServer/Controllers/Game/ChallengeCompetitionController.cs +++ b/TaikoLocalServer/Controllers/Game/ChallengeCompetitionController.cs @@ -1,6 +1,6 @@ namespace TaikoLocalServer.Controllers.Game; -[Route("/v12r03/chassis/challengecompe.php")] +[Route("/v12r00_cn/chassis/challengecompe.php")] [ApiController] public class ChallengeCompetitionController : BaseController { diff --git a/TaikoLocalServer/Controllers/Game/CrownsDataController.cs b/TaikoLocalServer/Controllers/Game/CrownsDataController.cs index 390a9ff..771b400 100644 --- a/TaikoLocalServer/Controllers/Game/CrownsDataController.cs +++ b/TaikoLocalServer/Controllers/Game/CrownsDataController.cs @@ -3,7 +3,7 @@ using TaikoLocalServer.Settings; namespace TaikoLocalServer.Controllers.Game; -[Route("/v12r03/chassis/crownsdata.php")] +[Route("/v12r00_cn/chassis/crownsdata.php")] [ApiController] public class CrownsDataController : BaseController { diff --git a/TaikoLocalServer/Controllers/Game/ExecuteQrCodeController.cs b/TaikoLocalServer/Controllers/Game/ExecuteQrCodeController.cs index 1bc714b..01202ac 100644 --- a/TaikoLocalServer/Controllers/Game/ExecuteQrCodeController.cs +++ b/TaikoLocalServer/Controllers/Game/ExecuteQrCodeController.cs @@ -1,6 +1,6 @@ namespace TaikoLocalServer.Controllers.Game; -[Route("/v12r03/chassis/executeqrcode.php")] +[Route("/v12r00_cn/chassis/executeqrcode.php")] [ApiController] public class ExecuteQrCodeController : BaseController { diff --git a/TaikoLocalServer/Controllers/Game/GetAiDataController.cs b/TaikoLocalServer/Controllers/Game/GetAiDataController.cs index e31f8e6..84fb1f9 100644 --- a/TaikoLocalServer/Controllers/Game/GetAiDataController.cs +++ b/TaikoLocalServer/Controllers/Game/GetAiDataController.cs @@ -2,7 +2,7 @@ namespace TaikoLocalServer.Controllers.Game; -[Route("/v12r03/chassis/getaidata.php")] +[Route("/v12r00_cn/chassis/getaidata.php")] [ApiController] public class GetAiDataController : BaseController { diff --git a/TaikoLocalServer/Controllers/Game/GetAiScoreController.cs b/TaikoLocalServer/Controllers/Game/GetAiScoreController.cs index 1f28e97..18c2edf 100644 --- a/TaikoLocalServer/Controllers/Game/GetAiScoreController.cs +++ b/TaikoLocalServer/Controllers/Game/GetAiScoreController.cs @@ -2,7 +2,7 @@ namespace TaikoLocalServer.Controllers.Game; -[Route("/v12r03/chassis/getaiscore.php")] +[Route("/v12r00_cn/chassis/getaiscore.php")] [ApiController] public class GetAiScoreController : BaseController { diff --git a/TaikoLocalServer/Controllers/Game/GetApplicationUrlController.cs b/TaikoLocalServer/Controllers/Game/GetApplicationUrlController.cs index 8fe32e0..f6b0e36 100644 --- a/TaikoLocalServer/Controllers/Game/GetApplicationUrlController.cs +++ b/TaikoLocalServer/Controllers/Game/GetApplicationUrlController.cs @@ -1,6 +1,6 @@ namespace TaikoLocalServer.Controllers.Game; -[Route("/v12r03/chassis/getapplicationurl.php")] +[Route("/v12r00_cn/chassis/getapplicationurl.php")] [ApiController] public class GetApplicationUrlController : BaseController { diff --git a/TaikoLocalServer/Controllers/Game/GetDanOdaiController.cs b/TaikoLocalServer/Controllers/Game/GetDanOdaiController.cs index 0a8a152..3395fab 100644 --- a/TaikoLocalServer/Controllers/Game/GetDanOdaiController.cs +++ b/TaikoLocalServer/Controllers/Game/GetDanOdaiController.cs @@ -1,6 +1,6 @@ namespace TaikoLocalServer.Controllers.Game; -[Route("/v12r03/chassis/getdanodai.php")] +[Route("/v12r00_cn/chassis/getdanodai.php")] [ApiController] public class GetDanOdaiController : BaseController { @@ -16,29 +16,41 @@ public class GetDanOdaiController : BaseController public IActionResult GetDanOdai([FromBody] GetDanOdaiRequest request) { Logger.LogInformation("GetDanOdai request : {Request}", request.Stringify()); - + var response = new GetDanOdaiResponse { Result = 1 }; - if (request.Type == 2) + if (request.Type == 1) { - return Ok(response); + foreach (var danId in request.DanIds) + { + gameDataService.GetDanDataDictionary().TryGetValue(danId, out var odaiData); + if (odaiData is null) + { + Logger.LogWarning("Requested dan id {Id} does not exist!", danId); + continue; + } + + response.AryOdaiDatas.Add(odaiData); + } + } + else if (request.Type == 2) + { + foreach (var danId in request.DanIds) + { + gameDataService.GetGaidenDataDictionary().TryGetValue(danId, out var odaiData); + if (odaiData is null) + { + Logger.LogWarning("Requested dan id {Id} does not exist!", danId); + continue; + } + + response.AryOdaiDatas.Add(odaiData); + } } - foreach (var danId in request.DanIds) - { - gameDataService.GetDanDataDictionary().TryGetValue(danId, out var odaiData); - if (odaiData is null) - { - Logger.LogWarning("Requested dan id {Id} does not exist!", danId); - continue; - } - - response.AryOdaiDatas.Add(odaiData); - } - return Ok(response); } } \ No newline at end of file diff --git a/TaikoLocalServer/Controllers/Game/GetDanScoreController.cs b/TaikoLocalServer/Controllers/Game/GetDanScoreController.cs index c40416f..73bd1ba 100644 --- a/TaikoLocalServer/Controllers/Game/GetDanScoreController.cs +++ b/TaikoLocalServer/Controllers/Game/GetDanScoreController.cs @@ -2,7 +2,7 @@ namespace TaikoLocalServer.Controllers.Game; -[Route("/v12r03/chassis/getdanscore.php")] +[Route("/v12r00_cn/chassis/getdanscore.php")] [ApiController] public class GetDanScoreController : BaseController { diff --git a/TaikoLocalServer/Controllers/Game/GetFolderController.cs b/TaikoLocalServer/Controllers/Game/GetFolderController.cs index d476465..5339aad 100644 --- a/TaikoLocalServer/Controllers/Game/GetFolderController.cs +++ b/TaikoLocalServer/Controllers/Game/GetFolderController.cs @@ -1,6 +1,6 @@ namespace TaikoLocalServer.Controllers.Game; -[Route("/v12r03/chassis/getfolder.php")] +[Route("/v12r00_cn/chassis/getfolder.php")] [ApiController] public class GetFolderController : BaseController { diff --git a/TaikoLocalServer/Controllers/Game/GetGenericMasterController.cs b/TaikoLocalServer/Controllers/Game/GetGenericMasterController.cs new file mode 100644 index 0000000..283979d --- /dev/null +++ b/TaikoLocalServer/Controllers/Game/GetGenericMasterController.cs @@ -0,0 +1,24 @@ +namespace TaikoLocalServer.Controllers.Game; + +[ApiController] +[Route("/v12r00_cn/chassis/getgenericmaster.php")] +public class GetGenericMasterController : BaseController +{ + [HttpPost] + [Produces("application/protobuf")] + public IActionResult GetGenericMaster([FromBody] GetGenericMasterRequest request) + { + Logger.LogInformation("GetGenericMasterRequest: {Request}", request.Stringify()); + + var response = new GetGenericMasterResponse + { + Result = 1, + VerupNo = 2, + EnableIdBit = FlagCalculator.GetBitArrayTrue(5000) + }; + + + return Ok(response); + } + +} \ No newline at end of file diff --git a/TaikoLocalServer/Controllers/Game/GetScoreRankController.cs b/TaikoLocalServer/Controllers/Game/GetScoreRankController.cs index 2ffc6fc..618d04b 100644 --- a/TaikoLocalServer/Controllers/Game/GetScoreRankController.cs +++ b/TaikoLocalServer/Controllers/Game/GetScoreRankController.cs @@ -3,7 +3,7 @@ using TaikoLocalServer.Settings; namespace TaikoLocalServer.Controllers.Game; -[Route("/v12r03/chassis/getscorerank.php")] +[Route("/v12r00_cn/chassis/getscorerank.php")] [ApiController] public class GetScoreRankController : BaseController { diff --git a/TaikoLocalServer/Controllers/Game/GetShopFolderController.cs b/TaikoLocalServer/Controllers/Game/GetShopFolderController.cs index 4166c0d..ec7cd53 100644 --- a/TaikoLocalServer/Controllers/Game/GetShopFolderController.cs +++ b/TaikoLocalServer/Controllers/Game/GetShopFolderController.cs @@ -1,27 +1,34 @@ namespace TaikoLocalServer.Controllers.Game; -[Route("/v12r03/chassis/getshopfolder.php")] +[Route("/v12r00_cn/chassis/getshopfolder.php")] [ApiController] public class GetShopFolderController : BaseController { + private readonly IGameDataService gameDataService; + + public GetShopFolderController(IGameDataService gameDataService) + { + this.gameDataService = gameDataService; + } + [HttpPost] [Produces("application/protobuf")] public IActionResult GetShopFolder([FromBody] GetShopFolderRequest request) { Logger.LogInformation("GetShopFolder request : {Request}", request.Stringify()); + gameDataService.GetTokenDataDictionary().TryGetValue("shopTokenId", out var shopTokenId); + + var shopFolderList = gameDataService.GetShopFolderList(); + var response = new GetShopFolderResponse { Result = 1, - TokenId = 1, + TokenId = shopTokenId > 0 ? (uint)shopTokenId : 1, VerupNo = 2 }; - - response.AryShopFolderDatas.Add(new GetShopFolderResponse.ShopFolderData - { - Price = 1, - SongNo = 2 - }); + + response.AryShopFolderDatas.AddRange(shopFolderList); return Ok(response); } diff --git a/TaikoLocalServer/Controllers/Game/GetSongIntroductionController.cs b/TaikoLocalServer/Controllers/Game/GetSongIntroductionController.cs index d531098..65604be 100644 --- a/TaikoLocalServer/Controllers/Game/GetSongIntroductionController.cs +++ b/TaikoLocalServer/Controllers/Game/GetSongIntroductionController.cs @@ -1,6 +1,6 @@ namespace TaikoLocalServer.Controllers.Game; -[Route("/v12r03/chassis/getsongintroduction.php")] +[Route("/v12r00_cn/chassis/getsongintroduction.php")] [ApiController] public class GetSongIntroductionController : BaseController { diff --git a/TaikoLocalServer/Controllers/Game/GetTelopController.cs b/TaikoLocalServer/Controllers/Game/GetTelopController.cs index aebb649..0de4b6c 100644 --- a/TaikoLocalServer/Controllers/Game/GetTelopController.cs +++ b/TaikoLocalServer/Controllers/Game/GetTelopController.cs @@ -1,6 +1,6 @@ namespace TaikoLocalServer.Controllers.Game; -[Route("/v12r03/chassis/gettelop.php")] +[Route("/v12r00_cn/chassis/gettelop.php")] [ApiController] public class GetTelopController : BaseController { diff --git a/TaikoLocalServer/Controllers/Game/GetTokenCountController.cs b/TaikoLocalServer/Controllers/Game/GetTokenCountController.cs index 9e631f2..8993784 100644 --- a/TaikoLocalServer/Controllers/Game/GetTokenCountController.cs +++ b/TaikoLocalServer/Controllers/Game/GetTokenCountController.cs @@ -1,26 +1,102 @@ -namespace TaikoLocalServer.Controllers.Game; +using System.Text.Json; +using Throw; -[Route("/v12r03/chassis/gettokencount.php")] +namespace TaikoLocalServer.Controllers.Game; + +[Route("/v12r00_cn/chassis/gettokencount.php")] [ApiController] public class GetTokenCountController : BaseController { + private readonly IGameDataService gameDataService; + private readonly IUserDatumService userDatumService; + + public GetTokenCountController(IUserDatumService userDatumService, IGameDataService gameDataService) + { + this.userDatumService = userDatumService; + this.gameDataService = gameDataService; + } + [HttpPost] [Produces("application/protobuf")] - public IActionResult GetTokenCount([FromBody] GetTokenCountRequest request) + public async Task GetTokenCount([FromBody] GetTokenCountRequest request) { Logger.LogInformation("GetTokenCount request : {Request}", request.Stringify()); + var user = await userDatumService.GetFirstUserDatumOrNull(request.Baid); + var tokenDataDictionary = gameDataService.GetTokenDataDictionary(); + tokenDataDictionary.TryGetValue("shopTokenId", out var shopTokenId); + tokenDataDictionary.TryGetValue("kaTokenId", out var kaTokenId); + tokenDataDictionary.TryGetValue("onePieceTokenId", out var onePieceTokenId); + tokenDataDictionary.TryGetValue("soshinaTokenId", out var soshinaTokenId); + user.ThrowIfNull($"User with baid {request.Baid} does not exist!"); + + var tokenCountDict = new Dictionary(); + try + { + tokenCountDict = !string.IsNullOrEmpty(user.TokenCountDict) + ? JsonSerializer.Deserialize>(user.TokenCountDict) + : new Dictionary(); + } + catch (JsonException e) + { + Logger.LogError(e, "Parsing TokenCountDict data for user with baid {Request} failed!", request.Baid); + } + + tokenCountDict.ThrowIfNull("TokenCountDict should never be null"); + var response = new GetTokenCountResponse { Result = 1 }; - response.AryTokenCountDatas.Add(new GetTokenCountResponse.TokenCountData + if (tokenCountDict.Count == 0) tokenCountDict.Add(1, 0); + if (shopTokenId > 0) { - TokenCount = 10, - TokenId = 1 - }); + var castedShopTokenId = (uint)shopTokenId; + tokenCountDict.TryAdd(castedShopTokenId, 0); + response.AryTokenCountDatas.Add(new GetTokenCountResponse.TokenCountData + { + TokenCount = tokenCountDict[castedShopTokenId], + TokenId = castedShopTokenId + }); + } + if (kaTokenId > 0) + { + var castedKaTokenId = (uint)kaTokenId; + tokenCountDict.TryAdd(castedKaTokenId, 0); + response.AryTokenCountDatas.Add(new GetTokenCountResponse.TokenCountData + { + TokenCount = tokenCountDict[castedKaTokenId], + TokenId = castedKaTokenId + }); + } + + if (onePieceTokenId > 0) + { + var castedOnePieceTokenId = (uint)onePieceTokenId; + tokenCountDict.TryAdd(castedOnePieceTokenId, 0); + response.AryTokenCountDatas.Add(new GetTokenCountResponse.TokenCountData + { + TokenCount = tokenCountDict[castedOnePieceTokenId], + TokenId = castedOnePieceTokenId + }); + } + + if (soshinaTokenId > 0) + { + var castedSoshinaTokenId = (uint)soshinaTokenId; + tokenCountDict.TryAdd(castedSoshinaTokenId, 0); + response.AryTokenCountDatas.Add(new GetTokenCountResponse.TokenCountData + { + TokenCount = tokenCountDict[castedSoshinaTokenId], + TokenId = castedSoshinaTokenId + }); + } + + user.TokenCountDict = JsonSerializer.Serialize(tokenCountDict); + await userDatumService.UpdateUserDatum(user); + return Ok(response); } } \ No newline at end of file diff --git a/TaikoLocalServer/Controllers/Game/Headclerk2Controller.cs b/TaikoLocalServer/Controllers/Game/Headclerk2Controller.cs new file mode 100644 index 0000000..026778d --- /dev/null +++ b/TaikoLocalServer/Controllers/Game/Headclerk2Controller.cs @@ -0,0 +1,39 @@ +namespace TaikoLocalServer.Controllers.Game; + +[ApiController] +[Route("/v12r00_cn/chassis/headclerk2.php")] +public class Headclerk2Controller : BaseController +{ + [HttpPost] + [Produces("application/protobuf")] + public IActionResult Headclerk2([FromBody] HeadClerk2Request request) + { + Logger.LogInformation("Headclerk2 request: {Request}", request.Stringify()); + + var chassisId = request.ChassisId; + var shopId = request.ShopId; + foreach (var playInfo in request.AryPlayInfoes) + { + var baid = playInfo.Baid; + var playedAt = playInfo.PlayedAt; + var isRight = playInfo.IsRight; + var type = playInfo.Type; + var amount = playInfo.Amount; + Logger.LogInformation("CSV WRITE: \n" + + "ChassisId:{ChassisId},\n" + + "ShopId:{ShopId},\n" + + "Baid:{Baid},\n" + + "PlayedAt{PlayedAt},\n" + + "IsRight:{IsRight},\n" + + "Type:{Type},\n" + + "Amount{Amount}", chassisId, shopId, baid, playedAt, isRight, type, amount); + } + + var response = new HeadClerk2Response + { + Result = 1 + }; + + return Ok(response); + } +} \ No newline at end of file diff --git a/TaikoLocalServer/Controllers/Game/HeartbeatController.cs b/TaikoLocalServer/Controllers/Game/HeartbeatController.cs index 629f912..bcb5582 100644 --- a/TaikoLocalServer/Controllers/Game/HeartbeatController.cs +++ b/TaikoLocalServer/Controllers/Game/HeartbeatController.cs @@ -1,21 +1,20 @@ namespace TaikoLocalServer.Controllers.Game; [ApiController] -[Route("/v12r03/chassis/heartbeat.php")] +[Route("/v12r00_cn/chassis/heartbeat.php")] public class HeartbeatController : BaseController { - [HttpPost] - [Produces("application/protobuf")] - public IActionResult HeartBeat([FromBody] HeartBeatRequest request) - { - Logger.LogInformation("Heartbeat request: {Request}", request.Stringify()); - var response = new HeartBeatResponse - { - Result = 1, - ComSvrStat = 1, - GameSvrStat = 1 - }; + [HttpPost] + [Produces("application/protobuf")] + public IActionResult HeartBeat([FromBody] HeartBeatRequest request) + { + Logger.LogInformation("Heartbeat request: {Request}", request.Stringify()); + var response = new HeartBeatResponse + { + Result = 1, + GameSvrStat = 1 + }; - return Ok(response); - } + return Ok(response); + } } \ No newline at end of file diff --git a/TaikoLocalServer/Controllers/Game/InitialDataCheckController.cs b/TaikoLocalServer/Controllers/Game/InitialDataCheckController.cs index 6bec68c..bdf30a3 100644 --- a/TaikoLocalServer/Controllers/Game/InitialDataCheckController.cs +++ b/TaikoLocalServer/Controllers/Game/InitialDataCheckController.cs @@ -4,114 +4,138 @@ using TaikoLocalServer.Settings; namespace TaikoLocalServer.Controllers.Game; [ApiController] -[Route("/v12r03/chassis/initialdatacheck.php")] +[Route("/v12r00_cn/chassis/initialdatacheck.php")] public class InitialDataCheckController : BaseController { - private readonly IGameDataService gameDataService; + private readonly IGameDataService gameDataService; - private readonly ServerSettings settings; + private readonly ServerSettings settings; - public InitialDataCheckController(IGameDataService gameDataService, IOptions settings) - { - this.gameDataService = gameDataService; - this.settings = settings.Value; - } + public InitialDataCheckController(IGameDataService gameDataService, IOptions settings) + { + this.gameDataService = gameDataService; + this.settings = settings.Value; + } - [HttpPost] - [Produces("application/protobuf")] - public IActionResult InitialDataCheck([FromBody] InitialdatacheckRequest request) - { - Logger.LogInformation("Initial data check request: {Request}", request.Stringify()); + [HttpPost] + [Produces("application/protobuf")] + public IActionResult InitialDataCheck([FromBody] InitialdatacheckRequest request) + { + Logger.LogInformation("Initial data check request: {Request}", request.Stringify()); - var songIdMax = settings.EnableMoreSongs ? Constants.MUSIC_ID_MAX_EXPANDED : Constants.MUSIC_ID_MAX; - var enabledArray = - FlagCalculator.GetBitArrayFromIds(gameDataService.GetMusicList(), songIdMax, Logger); + var songIdMax = settings.EnableMoreSongs ? Constants.MUSIC_ID_MAX_EXPANDED : Constants.MUSIC_ID_MAX; - var danData = new List(); - for (var danId = Constants.MIN_DAN_ID; danId <= Constants.MAX_DAN_ID; danId++) - { - danData.Add(new InitialdatacheckResponse.InformationData - { - InfoId = (uint)danId, - VerupNo = 1 - }); - } - - var introData = new List(); - for (var setId = 1; setId <= gameDataService.GetSongIntroDictionary().Count; setId++) - { - introData.Add(new InitialdatacheckResponse.InformationData - { - InfoId = (uint)setId, - VerupNo = 1 - }); - } + var musicList = gameDataService.GetMusicList(); + var lockedSongsList = gameDataService.GetLockedSongsList(); - var eventFolderData = new List(); - foreach (var folderId in Constants.EVENT_FOLDER_IDS) - { - eventFolderData.Add(new InitialdatacheckResponse.InformationData - { - InfoId = (uint)folderId, - VerupNo = 0 - }); - } + var enabledArray = + FlagCalculator.GetBitArrayFromIds(musicList, songIdMax, Logger); - var response = new InitialdatacheckResponse - { - Result = 1, - IsDanplay = true, - IsAibattle = true, - IsClose = false, - DefaultSongFlg = enabledArray, - AchievementSongBit = enabledArray, - SongIntroductionEndDatetime = DateTime.Now.AddYears(10).ToString(Constants.DATE_TIME_FORMAT), - AryShopFolderDatas = - { - new InitialdatacheckResponse.InformationData - { - InfoId = 1, - VerupNo = 2 - } - }, - /*AryTelopDatas = - { - new InitialdatacheckResponse.InformationData - { - InfoId = 1, - VerupNo = 1 - } - }, - AryDanextraOdaiDatas = - { - new InitialdatacheckResponse.InformationData - { - InfoId = 1, - VerupNo = 1 - } - }, - AryAiEventDatas = - { - new InitialdatacheckResponse.AiEventData - { - AiEventId = 1, - TokenId = 1 - } - }, - AryMovieInfos = - { - new InitialdatacheckResponse.MovieData - { - MovieId = 2, - EnableDays = 9999 - } - }*/ - }; - - response.AryDanOdaiDatas.AddRange(danData); - response.ArySongIntroductionDatas.AddRange(introData); - response.AryEventfolderDatas.AddRange(eventFolderData); - return Ok(response); - } + var defaultSongList = musicList.Except(lockedSongsList); + var defaultSongFlg = + FlagCalculator.GetBitArrayFromIds(defaultSongList, songIdMax, Logger); + + var defaultSongWithUraList = gameDataService.GetMusicWithUraList(); + var uraReleaseBit = + FlagCalculator.GetBitArrayFromIds(defaultSongWithUraList, songIdMax, Logger); + + var response = new InitialdatacheckResponse + { + Result = 1, + DefaultSongFlg = defaultSongFlg, + AchievementSongBit = enabledArray, + UraReleaseBit = uraReleaseBit, + SongIntroductionEndDatetime = DateTime.Now.AddYears(10).ToString(Constants.DATE_TIME_FORMAT), + }; + + var movieDataDictionary = gameDataService.GetMovieDataDictionary(); + foreach (var movieData in movieDataDictionary) response.AryMovieInfoes.Add(movieData.Value); + + var verupNo1 = new uint[] { 2, 3, 4, 5, 6, 7, 8, 13, 15, 24, 25, 26, 27, 28, 29, 30, 31, 104 }; + var aryVerUp = verupNo1.Select(i => new InitialdatacheckResponse.VerupNoData1 + { + MasterType = i, + VerupNo = 1 + }) + .ToList(); + response.AryVerupNoData1s.AddRange(aryVerUp); + + var danData = new List(); + var danDataDictionary = gameDataService.GetDanDataDictionary(); + foreach (var danId in danDataDictionary.Keys) + { + gameDataService.GetDanDataDictionary().TryGetValue(danId, out var odaiData); + danData.Add(new InitialdatacheckResponse.VerupNoData2.InformationData + { + InfoId = danId, + VerupNo = odaiData?.VerupNo ?? 1 + }); + } + var verUp2Type101 = new InitialdatacheckResponse.VerupNoData2 + { + MasterType = 101, + }; + verUp2Type101.AryInformationDatas.AddRange(danData); + response.AryVerupNoData2s.Add(verUp2Type101); + + var gaidenData = new List(); + var gaidenDataDictionary = gameDataService.GetGaidenDataDictionary(); + foreach (var gaidenId in gaidenDataDictionary.Keys) + { + gaidenDataDictionary.TryGetValue(gaidenId, out var odaiData); + gaidenData.Add(new InitialdatacheckResponse.VerupNoData2.InformationData + { + InfoId = gaidenId, + VerupNo = odaiData?.VerupNo ?? 1 + }); + } + + var verUp2Type102 = new InitialdatacheckResponse.VerupNoData2 + { + MasterType = 102, + }; + verUp2Type102.AryInformationDatas.AddRange(gaidenData); + response.AryVerupNoData2s.Add(verUp2Type102); + + var eventFolderData = new List(); + var eventFolderDictionary = gameDataService.GetFolderDictionary(); + foreach (var folderId in eventFolderDictionary.Keys) + { + eventFolderDictionary.TryGetValue(folderId, out var folderData); + eventFolderData.Add(new InitialdatacheckResponse.VerupNoData2.InformationData + { + InfoId = folderId, + VerupNo = folderData?.VerupNo ?? 1 + }); + } + var verUp2Type103 = new InitialdatacheckResponse.VerupNoData2 + { + MasterType = 103, + }; + verUp2Type103.AryInformationDatas.AddRange(eventFolderData); + response.AryVerupNoData2s.Add(verUp2Type103); + + var songIntroData = new List(); + var songIntroDictionary = gameDataService.GetSongIntroDictionary(); + foreach (var setId in songIntroDictionary.Select(item => item.Value.SetId)) + { + songIntroDictionary.TryGetValue(setId, out var introData); + songIntroData.Add(new InitialdatacheckResponse.VerupNoData2.InformationData + { + InfoId = setId, + VerupNo = introData?.VerupNo ?? 1 + }); + } + var verUp2Type105 = new InitialdatacheckResponse.VerupNoData2 + { + MasterType = 105, + }; + verUp2Type105.AryInformationDatas.AddRange(songIntroData); + response.AryVerupNoData2s.Add(verUp2Type105); + + response.AryChassisFunctionIds = new uint[] { 1, 2, 3 }; + + return Ok(response); + } } \ No newline at end of file diff --git a/TaikoLocalServer/Controllers/Game/MyDonEntryController.cs b/TaikoLocalServer/Controllers/Game/MyDonEntryController.cs index 7b7ebba..5a78d5e 100644 --- a/TaikoLocalServer/Controllers/Game/MyDonEntryController.cs +++ b/TaikoLocalServer/Controllers/Game/MyDonEntryController.cs @@ -2,68 +2,65 @@ namespace TaikoLocalServer.Controllers.Game; -[Route("/v12r03/chassis/mydonentry.php")] +[Route("/v12r00_cn/chassis/mydonentry.php")] [ApiController] public class MyDonEntryController : BaseController { - private readonly IUserDatumService userDatumService; + private readonly IUserDatumService userDatumService; - private readonly ICardService cardService; - - public MyDonEntryController(IUserDatumService userDatumService, ICardService cardService) - { - this.userDatumService = userDatumService; - this.cardService = cardService; - } + private readonly ICardService cardService; - [HttpPost] - [Produces("application/protobuf")] - public async Task GetMyDonEntry([FromBody] MydonEntryRequest request) - { - Logger.LogInformation("MyDonEntry request : {Request}", request.Stringify()); + public MyDonEntryController(IUserDatumService userDatumService, ICardService cardService) + { + this.userDatumService = userDatumService; + this.cardService = cardService; + } - var newId = cardService.GetNextBaid(); - await cardService.AddCard(new Card - { - AccessCode = request.AccessCode, - Baid = newId - }); + [HttpPost] + [Produces("application/protobuf")] + public async Task GetMyDonEntry([FromBody] MydonEntryRequest request) + { + Logger.LogInformation("MyDonEntry request : {Request}", request.Stringify()); - var newUser = new UserDatum - { - Baid = newId, - MyDonName = request.MydonName, - DisplayDan = true, - DisplayAchievement = true, - AchievementDisplayDifficulty = Difficulty.None, - ColorFace = 0, - ColorBody = 1, - ColorLimb = 3, - FavoriteSongsArray = "[]", - ToneFlgArray = "[]", - TitleFlgArray = "[]", - CostumeFlgArray = "[[],[],[],[],[]]", - GenericInfoFlgArray = "[]" - }; + var newId = cardService.GetNextBaid(); + await cardService.AddCard(new Card + { + AccessCode = request.WechatQrStr, + Baid = newId, + Password = "", + Salt = "" + }); - await userDatumService.InsertUserDatum(newUser); + var newUser = new UserDatum + { + Baid = newId, + MyDonName = request.MydonName, + MyDonNameLanguage = 0, + DisplayDan = true, + DisplayAchievement = true, + AchievementDisplayDifficulty = Difficulty.None, + ColorFace = 0, + ColorBody = 1, + ColorLimb = 3, + FavoriteSongsArray = "[]", + ToneFlgArray = "[0]", + TitleFlgArray = "[]", + CostumeFlgArray = "[[],[],[],[],[]]", + GenericInfoFlgArray = "[]", + TokenCountDict = "{}", + UnlockedSongIdList = "[]" + }; - var response = new MydonEntryResponse - { - Result = 1, - ComSvrResult = 1, - AccessCode = request.AccessCode, - Accesstoken = "12345", - Baid = newId, - MbId = 1, - MydonName = request.MydonName, - CardOwnNum = 1, - IsPublish = true, - RegCountryId = request.CountryId, - PurposeId = 1, - RegionId = 1 - }; + await userDatumService.InsertUserDatum(newUser); - return Ok(response); - } + var response = new MydonEntryResponse + { + Result = 1, + Baid = newId, + MydonName = request.MydonName, + MydonNameLanguage = 0 + }; + + return Ok(response); + } } \ No newline at end of file diff --git a/TaikoLocalServer/Controllers/Game/PlayResultController.cs b/TaikoLocalServer/Controllers/Game/PlayResultController.cs index ff45065..908b44f 100644 --- a/TaikoLocalServer/Controllers/Game/PlayResultController.cs +++ b/TaikoLocalServer/Controllers/Game/PlayResultController.cs @@ -8,7 +8,7 @@ namespace TaikoLocalServer.Controllers.Game; using StageData = PlayResultDataRequest.StageData; -[Route("/v12r03/chassis/playresult.php")] +[Route("/v12r00_cn/chassis/playresult.php")] [ApiController] public class PlayResultController : BaseController { @@ -21,15 +21,19 @@ public class PlayResultController : BaseController private readonly IDanScoreDatumService danScoreDatumService; private readonly IAiDatumService aiDatumService; + + private readonly IGameDataService gameDataService; public PlayResultController(IUserDatumService userDatumService, ISongPlayDatumService songPlayDatumService, - ISongBestDatumService songBestDatumService, IDanScoreDatumService danScoreDatumService, IAiDatumService aiDatumService) + ISongBestDatumService songBestDatumService, IDanScoreDatumService danScoreDatumService, IAiDatumService aiDatumService, + IGameDataService gameDataService) { this.userDatumService = userDatumService; this.songPlayDatumService = songPlayDatumService; this.songBestDatumService = songBestDatumService; this.danScoreDatumService = danScoreDatumService; this.aiDatumService = aiDatumService; + this.gameDataService = gameDataService; } [HttpPost] @@ -67,17 +71,32 @@ public class PlayResultController : BaseController var playMode = (PlayMode)playResultData.PlayMode; - if (playMode == PlayMode.DanMode) + if (playMode is PlayMode.DanMode or PlayMode.GaidenMode) { await UpdateDanPlayData(request, playResultData); return Ok(response); } var bestData = await songBestDatumService.GetAllSongBestData(request.BaidConf); + + gameDataService.GetFolderDictionary().TryGetValue(9, out var folder9Data); + + var folder9Songs = new List(); + + if (folder9Data is not null) + { + folder9Songs.AddRange(folder9Data.SongNoes); + } + for (var songNumber = 0; songNumber < playResultData.AryStageInfoes.Count; songNumber++) { var stageData = playResultData.AryStageInfoes[songNumber]; + if (folder9Songs.Contains(stageData.SongNo)) + { + continue; + } + if (stageData.IsSkipUse) { await UpdatePlayData(request, songNumber, stageData, lastPlayDatetime); @@ -203,16 +222,17 @@ public class PlayResultController : BaseController }; userdata.CostumeData = JsonSerializer.Serialize(costumeData); + // Skip user setting altogether following official logic // Skip user setting saving when in dan mode as dan mode uses its own default setting - if (playMode != PlayMode.DanMode) - { - var lastStage = playResultData.AryStageInfoes.Last(); - var option = BinaryPrimitives.ReadInt16LittleEndian(lastStage.OptionFlg); - userdata.OptionSetting = option; - userdata.IsSkipOn = lastStage.IsSkipOn; - userdata.IsVoiceOn = !lastStage.IsVoiceOn; - userdata.NotesPosition = lastStage.NotesPosition; - } + // if (playMode != PlayMode.DanMode) + // { + // var lastStage = playResultData.AryStageInfoes.Last(); + // var option = BinaryPrimitives.ReadInt16LittleEndian(lastStage.OptionFlg); + // userdata.OptionSetting = option; + // userdata.IsSkipOn = lastStage.IsSkipOn; + // userdata.IsVoiceOn = !lastStage.IsVoiceOn; + // userdata.NotesPosition = lastStage.NotesPosition; + // } userdata.LastPlayDatetime = lastPlayDatetime; userdata.LastPlayMode = playResultData.PlayMode; @@ -236,6 +256,14 @@ public class PlayResultController : BaseController userdata.GenericInfoFlgArray = UpdateJsonUintFlagArray(userdata.GenericInfoFlgArray, playResultData.GetGenericInfoNoes, nameof(userdata.GenericInfoFlgArray)); + var difficultyPlayedArray = new List + { + playResultData.DifficultyPlayedCourse, + playResultData.DifficultyPlayedStar, + playResultData.DifficultyPlayedSort + }; + userdata.DifficultyPlayedArray = JsonSerializer.Serialize(difficultyPlayedArray); + userdata.AiWinCount += playResultData.AryStageInfoes.Count(data => data.IsWin); await userDatumService.UpdateUserDatum(userdata); } diff --git a/TaikoLocalServer/Controllers/Game/RewardItemController.cs b/TaikoLocalServer/Controllers/Game/RewardItemController.cs index d4ec8a9..705beec 100644 --- a/TaikoLocalServer/Controllers/Game/RewardItemController.cs +++ b/TaikoLocalServer/Controllers/Game/RewardItemController.cs @@ -1,6 +1,6 @@ namespace TaikoLocalServer.Controllers.Game; -[Route("/v12r03/chassis/rewarditem.php")] +[Route("/v12r00_cn/chassis/rewarditem.php")] [ApiController] public class RewardItemController : BaseController { diff --git a/TaikoLocalServer/Controllers/Game/SelfBestController.cs b/TaikoLocalServer/Controllers/Game/SelfBestController.cs index d97549d..ec0ff2c 100644 --- a/TaikoLocalServer/Controllers/Game/SelfBestController.cs +++ b/TaikoLocalServer/Controllers/Game/SelfBestController.cs @@ -3,7 +3,7 @@ using Throw; namespace TaikoLocalServer.Controllers.Game; -[Route("/v12r03/chassis/selfbest.php")] +[Route("/v12r00_cn/chassis/selfbest.php")] [ApiController] public class SelfBestController : BaseController { @@ -39,7 +39,7 @@ public class SelfBestController : BaseController .ToList(); foreach (var songNo in request.ArySongNoes) { - if (!gameDataService.GetMusicAttributes().ContainsKey(songNo)) + if (!gameDataService.GetMusicList().Contains(songNo)) { Logger.LogWarning("Music no {No} is missing!", songNo); continue; diff --git a/TaikoLocalServer/Controllers/Game/SetAnyStringController.cs b/TaikoLocalServer/Controllers/Game/SetAnyStringController.cs new file mode 100644 index 0000000..c81bd0d --- /dev/null +++ b/TaikoLocalServer/Controllers/Game/SetAnyStringController.cs @@ -0,0 +1,20 @@ +namespace TaikoLocalServer.Controllers.Game; + +[Route("/v12r00_cn/chassis/setanystring.php")] +[ApiController] +public class SetAnyStringController : BaseController +{ + [HttpPost] + [Produces("application/protobuf")] + public IActionResult SetAnyString([FromBody] SetAnyStringRequest request) + { + Logger.LogInformation("SetAnyString request : {Request}", request.Stringify()); + + var response = new SetAnyStringResponse + { + Result = 1, + }; + + return Ok(response); + } +} \ No newline at end of file diff --git a/TaikoLocalServer/Controllers/Game/SongPurchaseController.cs b/TaikoLocalServer/Controllers/Game/SongPurchaseController.cs index 5b405d9..2240b54 100644 --- a/TaikoLocalServer/Controllers/Game/SongPurchaseController.cs +++ b/TaikoLocalServer/Controllers/Game/SongPurchaseController.cs @@ -1,19 +1,73 @@ -namespace TaikoLocalServer.Controllers.Game; +using System.Text.Json; +using Throw; -[Route("/v12r03/chassis/songpurchase.php")] +namespace TaikoLocalServer.Controllers.Game; + +[Route("/v12r00_cn/chassis/songpurchase.php")] [ApiController] public class SongPurchaseController : BaseController { + private readonly IUserDatumService userDatumService; + + public SongPurchaseController(IUserDatumService userDatumService) + { + this.userDatumService = userDatumService; + } + [HttpPost] [Produces("application/protobuf")] - public IActionResult SongPurchase([FromBody] SongPurchaseRequest request) + public async Task SongPurchase([FromBody] SongPurchaseRequest request) { Logger.LogInformation("SongPurchase request : {Request}", request.Stringify()); + var user = await userDatumService.GetFirstUserDatumOrNull(request.Baid); + user.ThrowIfNull($"User with baid {request.Baid} does not exist!"); + + var tokenCountDict = new Dictionary(); + try + { + tokenCountDict = !string.IsNullOrEmpty(user.TokenCountDict) + ? JsonSerializer.Deserialize>(user.TokenCountDict) + : new Dictionary(); + } + catch (JsonException e) + { + Logger.LogError(e, "Parsing TokenCountDict data for user with baid {Request} failed!", request.Baid); + } + + tokenCountDict.ThrowIfNull("TokenCountDict should never be null"); + + Logger.LogInformation("Original UnlockedSongIdList: {UnlockedSongIdList}", user.UnlockedSongIdList); + + var unlockedSongIdList = new List(); + try + { + unlockedSongIdList = !string.IsNullOrEmpty(user.UnlockedSongIdList) + ? JsonSerializer.Deserialize>(user.UnlockedSongIdList) + : new List(); + } + catch (JsonException e) + { + Logger.LogError(e, "Parsing UnlockedSongIdList data for user with baid {Request} failed!", request.Baid); + } + + unlockedSongIdList.ThrowIfNull("UnlockedSongIdList should never be null"); + + if (tokenCountDict.ContainsKey(request.TokenId)) tokenCountDict[request.TokenId] -= (int)request.Price; + + if (!unlockedSongIdList.Contains(request.SongNo)) unlockedSongIdList.Add(request.SongNo); + + user.TokenCountDict = JsonSerializer.Serialize(tokenCountDict); + user.UnlockedSongIdList = JsonSerializer.Serialize(unlockedSongIdList); + + Logger.LogInformation("Updated UnlockedSongIdList: {UnlockedSongIdList}", user.UnlockedSongIdList); + + await userDatumService.UpdateUserDatum(user); + var response = new SongPurchaseResponse { Result = 1, - TokenCount = (int)(10 - request.Price) + TokenCount = tokenCountDict[request.TokenId] }; return Ok(response); diff --git a/TaikoLocalServer/Controllers/Game/TournamentCheckController.cs b/TaikoLocalServer/Controllers/Game/TournamentCheckController.cs index 0e4e597..9766084 100644 --- a/TaikoLocalServer/Controllers/Game/TournamentCheckController.cs +++ b/TaikoLocalServer/Controllers/Game/TournamentCheckController.cs @@ -1,6 +1,6 @@ namespace TaikoLocalServer.Controllers.Game; -[Route("/v12r03/chassis/tournamentcheck.php")] +[Route("/v12r00_cn/chassis/tournamentcheck.php")] [ApiController] public class TournamentCheckController : BaseController { diff --git a/TaikoLocalServer/Controllers/Game/UserDataController.cs b/TaikoLocalServer/Controllers/Game/UserDataController.cs index edae329..0a0fafd 100644 --- a/TaikoLocalServer/Controllers/Game/UserDataController.cs +++ b/TaikoLocalServer/Controllers/Game/UserDataController.cs @@ -1,12 +1,12 @@ -using System.Buffers.Binary; +using Microsoft.Extensions.Options; +using System.Buffers.Binary; using System.Text.Json; -using Microsoft.Extensions.Options; using TaikoLocalServer.Settings; using Throw; namespace TaikoLocalServer.Controllers.Game; -[Route("/v12r03/chassis/userdata.php")] +[Route("/v12r00_cn/chassis/userdata.php")] [ApiController] public class UserDataController : BaseController { @@ -17,8 +17,8 @@ public class UserDataController : BaseController private readonly IGameDataService gameDataService; private readonly ServerSettings settings; - - public UserDataController(IUserDatumService userDatumService, ISongPlayDatumService songPlayDatumService, + + public UserDataController(IUserDatumService userDatumService, ISongPlayDatumService songPlayDatumService, IGameDataService gameDataService, IOptions settings) { this.userDatumService = userDatumService; @@ -34,13 +34,34 @@ public class UserDataController : BaseController Logger.LogInformation("UserData request : {Request}", request.Stringify()); var songIdMax = settings.EnableMoreSongs ? Constants.MUSIC_ID_MAX_EXPANDED : Constants.MUSIC_ID_MAX; - var releaseSongArray = - FlagCalculator.GetBitArrayFromIds(gameDataService.GetMusicList(), songIdMax, Logger); - - var uraSongArray = - FlagCalculator.GetBitArrayFromIds(gameDataService.GetMusicWithUraList(), songIdMax, Logger); var userData = await userDatumService.GetFirstUserDatumOrDefault(request.Baid); + + var unlockedSongIdList = new List(); + try + { + unlockedSongIdList = !string.IsNullOrEmpty(userData.UnlockedSongIdList) + ? JsonSerializer.Deserialize>(userData.UnlockedSongIdList) + : new List(); + } + catch (JsonException e) + { + Logger.LogError(e, "Parsing UnlockedSongIdList data for user with baid {Request} failed!", request.Baid); + } + + unlockedSongIdList.ThrowIfNull("UnlockedSongIdList should never be null"); + + var musicList = gameDataService.GetMusicList(); + var lockedSongsList = gameDataService.GetLockedSongsList(); + lockedSongsList = lockedSongsList.Except(unlockedSongIdList).ToList(); + var enabledMusicList = musicList.Except(lockedSongsList); + var releaseSongArray = + FlagCalculator.GetBitArrayFromIds(enabledMusicList, songIdMax, Logger); + + var defaultSongWithUraList = gameDataService.GetMusicWithUraList(); + var enabledUraMusicList = defaultSongWithUraList.Except(lockedSongsList); + var uraSongArray = + FlagCalculator.GetBitArrayFromIds(enabledUraMusicList, songIdMax, Logger); var toneFlg = Array.Empty(); try @@ -55,8 +76,16 @@ public class UserDataController : BaseController // The only way to get a null is provide string "null" as input, // which means database content need to be fixed, so better throw toneFlg.ThrowIfNull("Tone flg should never be null!"); + + // If toneFlg is empty, add 0 to it + if (toneFlg.Length == 0) + { + toneFlg = new uint[] { 0 }; + userData.ToneFlgArray = JsonSerializer.Serialize(toneFlg); + await userDatumService.UpdateUserDatum(userData); + } - var toneArray = FlagCalculator.GetBitArrayFromIds(toneFlg, Constants.TONE_UID_MAX, Logger); + var toneArray = FlagCalculator.GetBitArrayFromIds(toneFlg, gameDataService.GetToneFlagArraySize(), Logger); var titleFlg = Array.Empty(); try @@ -72,7 +101,7 @@ public class UserDataController : BaseController // which means database content need to be fixed, so better throw titleFlg.ThrowIfNull("Title flg should never be null!"); - var titleArray = FlagCalculator.GetBitArrayFromIds(titleFlg, Constants.TITLE_UID_MAX, Logger); + var titleArray = FlagCalculator.GetBitArrayFromIds(titleFlg, gameDataService.GetTitleFlagArraySize(), Logger); var recentSongs = (await songPlayDatumService.GetSongPlayDatumByBaid(request.Baid)) .AsEnumerable() @@ -80,7 +109,7 @@ public class UserDataController : BaseController .ThenByDescending(datum => datum.SongNumber) .Select(datum => datum.SongId) .ToArray(); - + // Use custom implementation as distinctby cannot guarantee preserved element var recentSet = new OrderedSet(); foreach (var id in recentSongs) @@ -110,7 +139,18 @@ public class UserDataController : BaseController var defaultOptions = new byte[2]; BinaryPrimitives.WriteInt16LittleEndian(defaultOptions, userData.OptionSetting); - + + var difficultySettingArray = JsonHelper.GetUIntArrayFromJson(userData.DifficultySettingArray, 3, Logger, nameof(userData.DifficultySettingArray)); + for (int i = 0; i < 3; i++) + { + if (difficultySettingArray[i] >= 2) + { + difficultySettingArray[i] -= 1; + } + } + + var difficultyPlayedArray = JsonHelper.GetUIntArrayFromJson(userData.DifficultyPlayedArray, 3, Logger, nameof(userData.DifficultyPlayedArray)); + var response = new UserDataResponse { Result = 1, @@ -118,14 +158,20 @@ public class UserDataController : BaseController TitleFlg = titleArray, ReleaseSongFlg = releaseSongArray, UraReleaseSongFlg = uraSongArray, - DefaultOptionSetting = defaultOptions, - IsVoiceOn = userData.IsVoiceOn, - IsSkipOn = userData.IsSkipOn, - IsChallengecompe = false, - SongRecentCnt = (uint)recentSongs.Length, AryFavoriteSongNoes = favoriteSongs, AryRecentSongNoes = recentSongs, - NotesPosition = userData.NotesPosition + DefaultOptionSetting = defaultOptions, + NotesPosition = userData.NotesPosition, + IsVoiceOn = userData.IsVoiceOn, + IsSkipOn = userData.IsSkipOn, + DifficultySettingCourse = difficultySettingArray[0], + DifficultySettingStar = difficultySettingArray[1], + DifficultySettingSort = difficultySettingArray[2], + DifficultyPlayedCourse = difficultyPlayedArray[0], + DifficultyPlayedStar = difficultyPlayedArray[1], + DifficultyPlayedSort = difficultyPlayedArray[2], + IsChallengecompe = false, + SongRecentCnt = (uint)recentSongs.Length }; return Ok(response); diff --git a/TaikoLocalServer/Controllers/Game/VerifyQrCodeController.cs b/TaikoLocalServer/Controllers/Game/VerifyQrCodeController.cs index cbc5435..9c8f896 100644 --- a/TaikoLocalServer/Controllers/Game/VerifyQrCodeController.cs +++ b/TaikoLocalServer/Controllers/Game/VerifyQrCodeController.cs @@ -1,19 +1,35 @@ namespace TaikoLocalServer.Controllers.Game; -[Route("/v12r03/chassis/verifyqrcode.php")] +[Route("/v12r00_cn/chassis/verifyqrcode.php")] [ApiController] public class VerifyQrCodeController : BaseController { + private readonly IGameDataService gameDataService; + + public VerifyQrCodeController(IGameDataService gameDataService) + { + this.gameDataService = gameDataService; + } + [HttpPost] [Produces("application/protobuf")] public IActionResult VerifyQrCode([FromBody] VerifyQrcodeRequest request) { Logger.LogInformation("VerifyQrCode request : {Request}", request.Stringify()); + var qrCodeDataDictionary = gameDataService.GetQRCodeDataDictionary(); + + qrCodeDataDictionary.TryGetValue(request.QrcodeSerial, out var qrCodeId); + + if (qrCodeId == 0) + { + Logger.LogWarning("Requested QR code serial {Serial} does not exist!", request.QrcodeSerial); + } + var response = new VerifyQrcodeResponse { Result = 1, - QrcodeId = 1 + QrcodeId = qrCodeId }; return Ok(response); diff --git a/TaikoLocalServer/Logging/CsvFormatter.cs b/TaikoLocalServer/Logging/CsvFormatter.cs new file mode 100644 index 0000000..dfadfb7 --- /dev/null +++ b/TaikoLocalServer/Logging/CsvFormatter.cs @@ -0,0 +1,35 @@ +using Serilog.Events; +using Serilog.Formatting; + +namespace TaikoLocalServer.Logging; + +public class CsvFormatter: ITextFormatter +{ + public void Format(LogEvent logEvent, TextWriter output) + { + logEvent.Properties.TryGetValue("ChassisId", out var chassisId); + logEvent.Properties.TryGetValue("ShopId", out var shopId); + logEvent.Properties.TryGetValue("Baid", out var baid); + logEvent.Properties.TryGetValue("PlayedAt", out var playedAt); + logEvent.Properties.TryGetValue("IsRight", out var isRight); + logEvent.Properties.TryGetValue("Type", out var type); + logEvent.Properties.TryGetValue("Amount", out var amount); + + output.Write(logEvent.Timestamp.ToString("yyyy-MM-dd")); + output.Write(","); + output.Write(chassisId); + output.Write(","); + output.Write(shopId); + output.Write(","); + output.Write(baid); + output.Write(","); + output.Write(playedAt); + output.Write(","); + output.Write(isRight); + output.Write(","); + output.Write(type); + output.Write(","); + output.Write(amount); + output.WriteLine(); + } +} \ No newline at end of file diff --git a/TaikoLocalServer/Models/DonCosRewardEntry.cs b/TaikoLocalServer/Models/DonCosRewardEntry.cs new file mode 100644 index 0000000..b73b312 --- /dev/null +++ b/TaikoLocalServer/Models/DonCosRewardEntry.cs @@ -0,0 +1,12 @@ +using System.Text.Json.Serialization; + +namespace TaikoLocalServer.Models; + +public class DonCosRewardEntry +{ + [JsonPropertyName("cosType")] + public string cosType { get; set; } = null!; + + [JsonPropertyName("uniqueId")] + public uint uniqueId { get; set; } +} \ No newline at end of file diff --git a/TaikoLocalServer/Models/DonCosRewards.cs b/TaikoLocalServer/Models/DonCosRewards.cs new file mode 100644 index 0000000..3a91bc8 --- /dev/null +++ b/TaikoLocalServer/Models/DonCosRewards.cs @@ -0,0 +1,9 @@ +using System.Text.Json.Serialization; + +namespace TaikoLocalServer.Models; + +public class DonCosRewards +{ + [JsonPropertyName("items")] + public List DonCosRewardEntries { get; set; } = new(); +} \ No newline at end of file diff --git a/TaikoLocalServer/Models/Game.cs b/TaikoLocalServer/Models/Game.cs index 0600965..20ba105 100644 --- a/TaikoLocalServer/Models/Game.cs +++ b/TaikoLocalServer/Models/Game.cs @@ -8,3125 +8,3219 @@ #pragma warning disable CS0612, CS0618, CS1591, CS3021, IDE0079, IDE1006, RCS1036, RCS1057, RCS1085, RCS1192 namespace taiko.game { + [global::ProtoBuf.ProtoContract()] + public partial class HeartBeatRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoContract()] - public partial class HeartBeatRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } + [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } - [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } + } - } + [global::ProtoBuf.ProtoContract()] + public partial class HeartBeatResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoContract()] - public partial class HeartBeatResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } + [global::ProtoBuf.ProtoMember(2, Name = @"game_svr_stat", IsRequired = true)] + public uint GameSvrStat { get; set; } + + } - [global::ProtoBuf.ProtoMember(2, Name = @"com_svr_stat", IsRequired = true)] - public uint ComSvrStat { get; set; } + [global::ProtoBuf.ProtoContract()] + public partial class BookKeepingRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"update_date", IsRequired = true)] + public string UpdateDate { get; set; } + + [global::ProtoBuf.ProtoMember(4, Name = @"credit_cost_1", IsRequired = true)] + public uint CreditCost1 { get; set; } + + [global::ProtoBuf.ProtoMember(5, Name = @"credit_cost_2", IsRequired = true)] + public uint CreditCost2 { get; set; } + + [global::ProtoBuf.ProtoMember(6, Name = @"credit_songs_1", IsRequired = true)] + public uint CreditSongs1 { get; set; } + + [global::ProtoBuf.ProtoMember(7, Name = @"credit_songs_2", IsRequired = true)] + public uint CreditSongs2 { get; set; } + + [global::ProtoBuf.ProtoMember(8, Name = @"all_play_cnt", IsRequired = true)] + public uint AllPlayCnt { get; set; } + + [global::ProtoBuf.ProtoMember(9, Name = @"service_sw_cnt", IsRequired = true)] + public uint ServiceSwCnt { get; set; } + + [global::ProtoBuf.ProtoMember(10, Name = @"free_play_cnt", IsRequired = true)] + public uint FreePlayCnt { get; set; } + + [global::ProtoBuf.ProtoMember(11, Name = @"error_log")] + [global::System.ComponentModel.DefaultValue("")] + public string ErrorLog + { + get => __pbn__ErrorLog ?? ""; + set => __pbn__ErrorLog = value; + } + public bool ShouldSerializeErrorLog() => __pbn__ErrorLog != null; + public void ResetErrorLog() => __pbn__ErrorLog = null; + private string __pbn__ErrorLog; + + } + + [global::ProtoBuf.ProtoContract()] + public partial class BookKeepingResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class InitialdatacheckRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"hdd_ver", IsRequired = true)] + public uint HddVer { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class InitialdatacheckResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"default_song_flg")] + public byte[] DefaultSongFlg + { + get => __pbn__DefaultSongFlg; + set => __pbn__DefaultSongFlg = value; + } + public bool ShouldSerializeDefaultSongFlg() => __pbn__DefaultSongFlg != null; + public void ResetDefaultSongFlg() => __pbn__DefaultSongFlg = null; + private byte[] __pbn__DefaultSongFlg; + + [global::ProtoBuf.ProtoMember(3, Name = @"achievement_song_bit")] + public byte[] AchievementSongBit + { + get => __pbn__AchievementSongBit; + set => __pbn__AchievementSongBit = value; + } + public bool ShouldSerializeAchievementSongBit() => __pbn__AchievementSongBit != null; + public void ResetAchievementSongBit() => __pbn__AchievementSongBit = null; + private byte[] __pbn__AchievementSongBit; + + [global::ProtoBuf.ProtoMember(4, Name = @"ura_release_bit")] + public byte[] UraReleaseBit + { + get => __pbn__UraReleaseBit; + set => __pbn__UraReleaseBit = value; + } + public bool ShouldSerializeUraReleaseBit() => __pbn__UraReleaseBit != null; + public void ResetUraReleaseBit() => __pbn__UraReleaseBit = null; + private byte[] __pbn__UraReleaseBit; + + [global::ProtoBuf.ProtoMember(5, Name = @"song_introduction_end_datetime")] + [global::System.ComponentModel.DefaultValue("")] + public string SongIntroductionEndDatetime + { + get => __pbn__SongIntroductionEndDatetime ?? ""; + set => __pbn__SongIntroductionEndDatetime = value; + } + public bool ShouldSerializeSongIntroductionEndDatetime() => __pbn__SongIntroductionEndDatetime != null; + public void ResetSongIntroductionEndDatetime() => __pbn__SongIntroductionEndDatetime = null; + private string __pbn__SongIntroductionEndDatetime; + + [global::ProtoBuf.ProtoMember(6, Name = @"ary_movie_info")] + public global::System.Collections.Generic.List AryMovieInfoes { get; } = new global::System.Collections.Generic.List(); + + [global::ProtoBuf.ProtoMember(7, Name = @"ary_ai_event_data")] + public global::System.Collections.Generic.List AryAiEventDatas { get; } = new global::System.Collections.Generic.List(); + + [global::ProtoBuf.ProtoMember(8, Name = @"ary_chassis_function_id")] + public uint[] AryChassisFunctionIds { get; set; } + + [global::ProtoBuf.ProtoMember(9, Name = @"ary_verup_no_data_1")] + public global::System.Collections.Generic.List AryVerupNoData1s { get; } = new global::System.Collections.Generic.List(); + + [global::ProtoBuf.ProtoMember(10, Name = @"ary_verup_no_data_2")] + public global::System.Collections.Generic.List AryVerupNoData2s { get; } = new global::System.Collections.Generic.List(); + + [global::ProtoBuf.ProtoMember(11, Name = @"server_current_datetime")] + public ulong ServerCurrentDatetime + { + get => __pbn__ServerCurrentDatetime.GetValueOrDefault(); + set => __pbn__ServerCurrentDatetime = value; + } + public bool ShouldSerializeServerCurrentDatetime() => __pbn__ServerCurrentDatetime != null; + public void ResetServerCurrentDatetime() => __pbn__ServerCurrentDatetime = null; + private ulong? __pbn__ServerCurrentDatetime; + + [global::ProtoBuf.ProtoContract()] + public partial class MovieData : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"movie_id", IsRequired = true)] + public uint MovieId { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"enable_days", IsRequired = true)] + public uint EnableDays { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class AiEventData : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"ai_event_id", IsRequired = true)] + public uint AiEventId { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"token_id")] + public uint TokenId + { + get => __pbn__TokenId.GetValueOrDefault(); + set => __pbn__TokenId = value; + } + public bool ShouldSerializeTokenId() => __pbn__TokenId != null; + public void ResetTokenId() => __pbn__TokenId = null; + private uint? __pbn__TokenId; + + } + + [global::ProtoBuf.ProtoContract()] + public partial class VerupNoData1 : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"master_type", IsRequired = true)] + public uint MasterType { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"verup_no", IsRequired = true)] + public uint VerupNo { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class VerupNoData2 : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"master_type", IsRequired = true)] + public uint MasterType { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"ary_information_data")] + public global::System.Collections.Generic.List AryInformationDatas { get; } = new global::System.Collections.Generic.List(); + + [global::ProtoBuf.ProtoContract()] + public partial class InformationData : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"info_id", IsRequired = true)] + public uint InfoId { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"verup_no", IsRequired = true)] + public uint VerupNo { get; set; } + + } + + } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class GettelopRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"telop_id", IsRequired = true)] + public uint TelopId { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class GettelopResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"verup_no")] + public uint VerupNo + { + get => __pbn__VerupNo.GetValueOrDefault(); + set => __pbn__VerupNo = value; + } + public bool ShouldSerializeVerupNo() => __pbn__VerupNo != null; + public void ResetVerupNo() => __pbn__VerupNo = null; + private uint? __pbn__VerupNo; + + [global::ProtoBuf.ProtoMember(3, Name = @"start_datetime")] + [global::System.ComponentModel.DefaultValue("")] + public string StartDatetime + { + get => __pbn__StartDatetime ?? ""; + set => __pbn__StartDatetime = value; + } + public bool ShouldSerializeStartDatetime() => __pbn__StartDatetime != null; + public void ResetStartDatetime() => __pbn__StartDatetime = null; + private string __pbn__StartDatetime; + + [global::ProtoBuf.ProtoMember(4, Name = @"end_datetime")] + [global::System.ComponentModel.DefaultValue("")] + public string EndDatetime + { + get => __pbn__EndDatetime ?? ""; + set => __pbn__EndDatetime = value; + } + public bool ShouldSerializeEndDatetime() => __pbn__EndDatetime != null; + public void ResetEndDatetime() => __pbn__EndDatetime = null; + private string __pbn__EndDatetime; + + [global::ProtoBuf.ProtoMember(5, Name = @"telop")] + [global::System.ComponentModel.DefaultValue("")] + public string Telop + { + get => __pbn__Telop ?? ""; + set => __pbn__Telop = value; + } + public bool ShouldSerializeTelop() => __pbn__Telop != null; + public void ResetTelop() => __pbn__Telop = null; + private string __pbn__Telop; + + } + + [global::ProtoBuf.ProtoContract()] + public partial class GetfolderRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"folder_id")] + public uint[] FolderIds { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class GetfolderResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"ary_eventfolder_data")] + public global::System.Collections.Generic.List AryEventfolderDatas { get; } = new global::System.Collections.Generic.List(); + + [global::ProtoBuf.ProtoContract()] + public partial class EventfolderData : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"folder_id", IsRequired = true)] + public uint FolderId { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"verup_no", IsRequired = true)] + public uint VerupNo { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"priority", IsRequired = true)] + public uint Priority { get; set; } + + [global::ProtoBuf.ProtoMember(4, Name = @"song_no")] + public uint[] SongNoes { get; set; } + + [global::ProtoBuf.ProtoMember(5, Name = @"parent_folder_id", IsRequired = true)] + public uint ParentFolderId { get; set; } + + } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class GetShopFolderRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class GetShopFolderResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"verup_no")] + public uint VerupNo + { + get => __pbn__VerupNo.GetValueOrDefault(); + set => __pbn__VerupNo = value; + } + public bool ShouldSerializeVerupNo() => __pbn__VerupNo != null; + public void ResetVerupNo() => __pbn__VerupNo = null; + private uint? __pbn__VerupNo; + + [global::ProtoBuf.ProtoMember(3, Name = @"token_id")] + public uint TokenId + { + get => __pbn__TokenId.GetValueOrDefault(); + set => __pbn__TokenId = value; + } + public bool ShouldSerializeTokenId() => __pbn__TokenId != null; + public void ResetTokenId() => __pbn__TokenId = null; + private uint? __pbn__TokenId; - [global::ProtoBuf.ProtoMember(3, Name = @"game_svr_stat", IsRequired = true)] - public uint GameSvrStat { get; set; } + [global::ProtoBuf.ProtoMember(4, Name = @"ary_shop_folder_data")] + public global::System.Collections.Generic.List AryShopFolderDatas { get; } = new global::System.Collections.Generic.List(); - } + [global::ProtoBuf.ProtoContract()] + public partial class ShopFolderData : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoContract()] - public partial class BookKeepingRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(1, Name = @"song_no", IsRequired = true)] + public uint SongNo { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"price", IsRequired = true)] + public uint Price { get; set; } + + } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class GetSongIntroductionRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"set_id")] + public uint[] SetIds { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } + } - [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } + [global::ProtoBuf.ProtoContract()] + public partial class GetSongIntroductionResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoMember(3, Name = @"update_date", IsRequired = true)] - public string UpdateDate { get; set; } + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"ary_song_introduction_data")] + public global::System.Collections.Generic.List ArySongIntroductionDatas { get; } = new global::System.Collections.Generic.List(); + + [global::ProtoBuf.ProtoContract()] + public partial class SongIntroductionData : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"set_id", IsRequired = true)] + public uint SetId { get; set; } - [global::ProtoBuf.ProtoMember(4, Name = @"credit_cost_1", IsRequired = true)] - public uint CreditCost1 { get; set; } + [global::ProtoBuf.ProtoMember(2, Name = @"verup_no", IsRequired = true)] + public uint VerupNo { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"main_song_no")] + public uint MainSongNo + { + get => __pbn__MainSongNo.GetValueOrDefault(); + set => __pbn__MainSongNo = value; + } + public bool ShouldSerializeMainSongNo() => __pbn__MainSongNo != null; + public void ResetMainSongNo() => __pbn__MainSongNo = null; + private uint? __pbn__MainSongNo; + + [global::ProtoBuf.ProtoMember(4, Name = @"sub_song_no")] + public uint[] SubSongNoes { get; set; } - [global::ProtoBuf.ProtoMember(5, Name = @"credit_cost_2", IsRequired = true)] - public uint CreditCost2 { get; set; } + } - [global::ProtoBuf.ProtoMember(6, Name = @"credit_songs_1", IsRequired = true)] - public uint CreditSongs1 { get; set; } + } - [global::ProtoBuf.ProtoMember(7, Name = @"credit_songs_2", IsRequired = true)] - public uint CreditSongs2 { get; set; } + [global::ProtoBuf.ProtoContract()] + public partial class TournamentcheckRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoMember(8, Name = @"all_play_cnt", IsRequired = true)] - public uint AllPlayCnt { get; set; } + [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } - [global::ProtoBuf.ProtoMember(9, Name = @"service_sw_cnt", IsRequired = true)] - public uint ServiceSwCnt { get; set; } + [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } - [global::ProtoBuf.ProtoMember(10, Name = @"free_play_cnt", IsRequired = true)] - public uint FreePlayCnt { get; set; } + [global::ProtoBuf.ProtoMember(3, Name = @"kit_id", IsRequired = true)] + public uint KitId { get; set; } - } - - [global::ProtoBuf.ProtoContract()] - public partial class BookKeepingResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class InitialdatacheckRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class InitialdatacheckResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"default_song_flg")] - public byte[] DefaultSongFlg - { - get => __pbn__DefaultSongFlg; - set => __pbn__DefaultSongFlg = value; - } - public bool ShouldSerializeDefaultSongFlg() => __pbn__DefaultSongFlg != null; - public void ResetDefaultSongFlg() => __pbn__DefaultSongFlg = null; - private byte[] __pbn__DefaultSongFlg; - - [global::ProtoBuf.ProtoMember(3, Name = @"achievement_song_bit")] - public byte[] AchievementSongBit - { - get => __pbn__AchievementSongBit; - set => __pbn__AchievementSongBit = value; - } - public bool ShouldSerializeAchievementSongBit() => __pbn__AchievementSongBit != null; - public void ResetAchievementSongBit() => __pbn__AchievementSongBit = null; - private byte[] __pbn__AchievementSongBit; - - [global::ProtoBuf.ProtoMember(4, Name = @"ary_telop_data")] - public global::System.Collections.Generic.List AryTelopDatas { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(5, Name = @"ary_eventfolder_data")] - public global::System.Collections.Generic.List AryEventfolderDatas { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(6, Name = @"ary_shop_folder_data")] - public global::System.Collections.Generic.List AryShopFolderDatas { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(7, Name = @"ary_song_introduction_data")] - public global::System.Collections.Generic.List ArySongIntroductionDatas { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(8, Name = @"song_introduction_end_datetime")] - [global::System.ComponentModel.DefaultValue("")] - public string SongIntroductionEndDatetime - { - get => __pbn__SongIntroductionEndDatetime ?? ""; - set => __pbn__SongIntroductionEndDatetime = value; - } - public bool ShouldSerializeSongIntroductionEndDatetime() => __pbn__SongIntroductionEndDatetime != null; - public void ResetSongIntroductionEndDatetime() => __pbn__SongIntroductionEndDatetime = null; - private string __pbn__SongIntroductionEndDatetime; - - [global::ProtoBuf.ProtoMember(9, Name = @"ary_movie_info")] - public global::System.Collections.Generic.List AryMovieInfoes { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(10, Name = @"ary_dan_odai_data")] - public global::System.Collections.Generic.List AryDanOdaiDatas { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(11, Name = @"ary_danextra_odai_data")] - public global::System.Collections.Generic.List AryDanextraOdaiDatas { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(12, Name = @"ary_ai_event_data")] - public global::System.Collections.Generic.List AryAiEventDatas { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(13, Name = @"is_danplay")] - public bool IsDanplay - { - get => __pbn__IsDanplay.GetValueOrDefault(); - set => __pbn__IsDanplay = value; - } - public bool ShouldSerializeIsDanplay() => __pbn__IsDanplay != null; - public void ResetIsDanplay() => __pbn__IsDanplay = null; - private bool? __pbn__IsDanplay; - - [global::ProtoBuf.ProtoMember(14, Name = @"is_close")] - public bool IsClose - { - get => __pbn__IsClose.GetValueOrDefault(); - set => __pbn__IsClose = value; - } - public bool ShouldSerializeIsClose() => __pbn__IsClose != null; - public void ResetIsClose() => __pbn__IsClose = null; - private bool? __pbn__IsClose; - - [global::ProtoBuf.ProtoMember(15, Name = @"is_aibattle")] - public bool IsAibattle - { - get => __pbn__IsAibattle.GetValueOrDefault(); - set => __pbn__IsAibattle = value; - } - public bool ShouldSerializeIsAibattle() => __pbn__IsAibattle != null; - public void ResetIsAibattle() => __pbn__IsAibattle = null; - private bool? __pbn__IsAibattle; - - [global::ProtoBuf.ProtoContract()] - public partial class InformationData : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"info_id", IsRequired = true)] - public uint InfoId { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"verup_no", IsRequired = true)] - public uint VerupNo { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class MovieData : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"movie_id", IsRequired = true)] - public uint MovieId { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"enable_days", IsRequired = true)] - public uint EnableDays { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class AiEventData : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"ai_event_id", IsRequired = true)] - public uint AiEventId { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"token_id")] - public uint TokenId - { - get => __pbn__TokenId.GetValueOrDefault(); - set => __pbn__TokenId = value; - } - public bool ShouldSerializeTokenId() => __pbn__TokenId != null; - public void ResetTokenId() => __pbn__TokenId = null; - private uint? __pbn__TokenId; - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class GettelopRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"telop_id", IsRequired = true)] - public uint TelopId { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class GettelopResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"verup_no")] - public uint VerupNo - { - get => __pbn__VerupNo.GetValueOrDefault(); - set => __pbn__VerupNo = value; - } - public bool ShouldSerializeVerupNo() => __pbn__VerupNo != null; - public void ResetVerupNo() => __pbn__VerupNo = null; - private uint? __pbn__VerupNo; - - [global::ProtoBuf.ProtoMember(3, Name = @"start_datetime")] - [global::System.ComponentModel.DefaultValue("")] - public string StartDatetime - { - get => __pbn__StartDatetime ?? ""; - set => __pbn__StartDatetime = value; - } - public bool ShouldSerializeStartDatetime() => __pbn__StartDatetime != null; - public void ResetStartDatetime() => __pbn__StartDatetime = null; - private string __pbn__StartDatetime; - - [global::ProtoBuf.ProtoMember(4, Name = @"end_datetime")] - [global::System.ComponentModel.DefaultValue("")] - public string EndDatetime - { - get => __pbn__EndDatetime ?? ""; - set => __pbn__EndDatetime = value; - } - public bool ShouldSerializeEndDatetime() => __pbn__EndDatetime != null; - public void ResetEndDatetime() => __pbn__EndDatetime = null; - private string __pbn__EndDatetime; - - [global::ProtoBuf.ProtoMember(5, Name = @"telop")] - [global::System.ComponentModel.DefaultValue("")] - public string Telop - { - get => __pbn__Telop ?? ""; - set => __pbn__Telop = value; - } - public bool ShouldSerializeTelop() => __pbn__Telop != null; - public void ResetTelop() => __pbn__Telop = null; - private string __pbn__Telop; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class GetfolderRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"folder_id")] - public uint[] FolderIds { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class GetfolderResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"ary_eventfolder_data")] - public global::System.Collections.Generic.List AryEventfolderDatas { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class EventfolderData : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"folder_id", IsRequired = true)] - public uint FolderId { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"verup_no", IsRequired = true)] - public uint VerupNo { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"priority", IsRequired = true)] - public uint Priority { get; set; } - - [global::ProtoBuf.ProtoMember(4, Name = @"song_no")] - public uint[] SongNoes { get; set; } - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class GetShopFolderRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class GetShopFolderResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"verup_no")] - public uint VerupNo - { - get => __pbn__VerupNo.GetValueOrDefault(); - set => __pbn__VerupNo = value; - } - public bool ShouldSerializeVerupNo() => __pbn__VerupNo != null; - public void ResetVerupNo() => __pbn__VerupNo = null; - private uint? __pbn__VerupNo; - - [global::ProtoBuf.ProtoMember(3, Name = @"token_id")] - public uint TokenId - { - get => __pbn__TokenId.GetValueOrDefault(); - set => __pbn__TokenId = value; - } - public bool ShouldSerializeTokenId() => __pbn__TokenId != null; - public void ResetTokenId() => __pbn__TokenId = null; - private uint? __pbn__TokenId; + } - [global::ProtoBuf.ProtoMember(4, Name = @"ary_shop_folder_data")] - public global::System.Collections.Generic.List AryShopFolderDatas { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class ShopFolderData : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoContract()] + public partial class TournamentcheckResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoMember(1, Name = @"song_no", IsRequired = true)] - public uint SongNo { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"price", IsRequired = true)] - public uint Price { get; set; } - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class GetSongIntroductionRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"set_id")] - public uint[] SetIds { get; set; } - - } + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } - [global::ProtoBuf.ProtoContract()] - public partial class GetSongIntroductionResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(2, Name = @"rare_rate")] + public uint RareRate + { + get => __pbn__RareRate.GetValueOrDefault(); + set => __pbn__RareRate = value; + } + public bool ShouldSerializeRareRate() => __pbn__RareRate != null; + public void ResetRareRate() => __pbn__RareRate = null; + private uint? __pbn__RareRate; - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"ary_song_introduction_data")] - public global::System.Collections.Generic.List ArySongIntroductionDatas { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class SongIntroductionData : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"set_id", IsRequired = true)] - public uint SetId { get; set; } + [global::ProtoBuf.ProtoMember(3, Name = @"ary_gacha_song_data")] + public global::System.Collections.Generic.List AryGachaSongDatas { get; } = new global::System.Collections.Generic.List(); - [global::ProtoBuf.ProtoMember(2, Name = @"verup_no", IsRequired = true)] - public uint VerupNo { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"main_song_no")] - public uint MainSongNo - { - get => __pbn__MainSongNo.GetValueOrDefault(); - set => __pbn__MainSongNo = value; - } - public bool ShouldSerializeMainSongNo() => __pbn__MainSongNo != null; - public void ResetMainSongNo() => __pbn__MainSongNo = null; - private uint? __pbn__MainSongNo; - - [global::ProtoBuf.ProtoMember(4, Name = @"sub_song_no")] - public uint[] SubSongNoes { get; set; } + [global::ProtoBuf.ProtoMember(4, Name = @"ary_gacha_tone_data")] + public global::System.Collections.Generic.List AryGachaToneDatas { get; } = new global::System.Collections.Generic.List(); - } + [global::ProtoBuf.ProtoMember(5, Name = @"ary_gacha_costume_1_data")] + public global::System.Collections.Generic.List AryGachaCostume1Datas { get; } = new global::System.Collections.Generic.List(); - } + [global::ProtoBuf.ProtoMember(6, Name = @"ary_gacha_costume_2_data")] + public global::System.Collections.Generic.List AryGachaCostume2Datas { get; } = new global::System.Collections.Generic.List(); - [global::ProtoBuf.ProtoContract()] - public partial class TournamentcheckRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(7, Name = @"ary_gacha_costume_3_data")] + public global::System.Collections.Generic.List AryGachaCostume3Datas { get; } = new global::System.Collections.Generic.List(); - [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } + [global::ProtoBuf.ProtoMember(8, Name = @"ary_gacha_costume_4_data")] + public global::System.Collections.Generic.List AryGachaCostume4Datas { get; } = new global::System.Collections.Generic.List(); - [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } + [global::ProtoBuf.ProtoMember(9, Name = @"ary_gacha_costume_5_data")] + public global::System.Collections.Generic.List AryGachaCostume5Datas { get; } = new global::System.Collections.Generic.List(); - [global::ProtoBuf.ProtoMember(3, Name = @"kit_id", IsRequired = true)] - public uint KitId { get; set; } + [global::ProtoBuf.ProtoMember(10, Name = @"ary_gacha_title_data")] + public global::System.Collections.Generic.List AryGachaTitleDatas { get; } = new global::System.Collections.Generic.List(); - } + [global::ProtoBuf.ProtoContract()] + public partial class GachainfoData : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoContract()] - public partial class TournamentcheckResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(1, Name = @"normal_gacha_flg", IsRequired = true)] + public byte[] NormalGachaFlg { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } + [global::ProtoBuf.ProtoMember(2, Name = @"rare_gacha_flg", IsRequired = true)] + public byte[] RareGachaFlg { get; set; } - [global::ProtoBuf.ProtoMember(2, Name = @"rare_rate")] - public uint RareRate - { - get => __pbn__RareRate.GetValueOrDefault(); - set => __pbn__RareRate = value; - } - public bool ShouldSerializeRareRate() => __pbn__RareRate != null; - public void ResetRareRate() => __pbn__RareRate = null; - private uint? __pbn__RareRate; + } - [global::ProtoBuf.ProtoMember(3, Name = @"ary_gacha_song_data")] - public global::System.Collections.Generic.List AryGachaSongDatas { get; } = new global::System.Collections.Generic.List(); + } - [global::ProtoBuf.ProtoMember(4, Name = @"ary_gacha_tone_data")] - public global::System.Collections.Generic.List AryGachaToneDatas { get; } = new global::System.Collections.Generic.List(); + [global::ProtoBuf.ProtoContract()] + public partial class GetDanOdaiRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoMember(5, Name = @"ary_gacha_costume_1_data")] - public global::System.Collections.Generic.List AryGachaCostume1Datas { get; } = new global::System.Collections.Generic.List(); + [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } - [global::ProtoBuf.ProtoMember(6, Name = @"ary_gacha_costume_2_data")] - public global::System.Collections.Generic.List AryGachaCostume2Datas { get; } = new global::System.Collections.Generic.List(); + [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } - [global::ProtoBuf.ProtoMember(7, Name = @"ary_gacha_costume_3_data")] - public global::System.Collections.Generic.List AryGachaCostume3Datas { get; } = new global::System.Collections.Generic.List(); + [global::ProtoBuf.ProtoMember(3, Name = @"type", IsRequired = true)] + public uint Type { get; set; } + + [global::ProtoBuf.ProtoMember(4, Name = @"dan_id")] + public uint[] DanIds { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class GetDanOdaiResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"ary_odai_data")] + public global::System.Collections.Generic.List AryOdaiDatas { get; } = new global::System.Collections.Generic.List(); + + [global::ProtoBuf.ProtoContract()] + public partial class OdaiData : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"dan_id", IsRequired = true)] + public uint DanId { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"verup_no", IsRequired = true)] + public uint VerupNo { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"title", IsRequired = true)] + public string Title { get; set; } + + [global::ProtoBuf.ProtoMember(4, Name = @"ary_odai_song")] + public global::System.Collections.Generic.List AryOdaiSongs { get; } = new global::System.Collections.Generic.List(); + + [global::ProtoBuf.ProtoMember(5, Name = @"ary_odai_border")] + public global::System.Collections.Generic.List AryOdaiBorders { get; } = new global::System.Collections.Generic.List(); + + [global::ProtoBuf.ProtoContract()] + public partial class OdaiSong : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"song_no", IsRequired = true)] + public uint SongNo { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"level", IsRequired = true)] + public uint Level { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"is_hidden_song_name", IsRequired = true)] + public bool IsHiddenSongName { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class OdaiBorder : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"odai_type", IsRequired = true)] + public uint OdaiType { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"border_type", IsRequired = true)] + public uint BorderType { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"red_border_total")] + public uint RedBorderTotal + { + get => __pbn__RedBorderTotal.GetValueOrDefault(); + set => __pbn__RedBorderTotal = value; + } + public bool ShouldSerializeRedBorderTotal() => __pbn__RedBorderTotal != null; + public void ResetRedBorderTotal() => __pbn__RedBorderTotal = null; + private uint? __pbn__RedBorderTotal; + + [global::ProtoBuf.ProtoMember(4, Name = @"gold_border_total")] + public uint GoldBorderTotal + { + get => __pbn__GoldBorderTotal.GetValueOrDefault(); + set => __pbn__GoldBorderTotal = value; + } + public bool ShouldSerializeGoldBorderTotal() => __pbn__GoldBorderTotal != null; + public void ResetGoldBorderTotal() => __pbn__GoldBorderTotal = null; + private uint? __pbn__GoldBorderTotal; + + [global::ProtoBuf.ProtoMember(5, Name = @"red_border_1")] + public uint RedBorder1 + { + get => __pbn__RedBorder1.GetValueOrDefault(); + set => __pbn__RedBorder1 = value; + } + public bool ShouldSerializeRedBorder1() => __pbn__RedBorder1 != null; + public void ResetRedBorder1() => __pbn__RedBorder1 = null; + private uint? __pbn__RedBorder1; + + [global::ProtoBuf.ProtoMember(6, Name = @"gold_border_1")] + public uint GoldBorder1 + { + get => __pbn__GoldBorder1.GetValueOrDefault(); + set => __pbn__GoldBorder1 = value; + } + public bool ShouldSerializeGoldBorder1() => __pbn__GoldBorder1 != null; + public void ResetGoldBorder1() => __pbn__GoldBorder1 = null; + private uint? __pbn__GoldBorder1; + + [global::ProtoBuf.ProtoMember(7, Name = @"red_border_2")] + public uint RedBorder2 + { + get => __pbn__RedBorder2.GetValueOrDefault(); + set => __pbn__RedBorder2 = value; + } + public bool ShouldSerializeRedBorder2() => __pbn__RedBorder2 != null; + public void ResetRedBorder2() => __pbn__RedBorder2 = null; + private uint? __pbn__RedBorder2; + + [global::ProtoBuf.ProtoMember(8, Name = @"gold_border_2")] + public uint GoldBorder2 + { + get => __pbn__GoldBorder2.GetValueOrDefault(); + set => __pbn__GoldBorder2 = value; + } + public bool ShouldSerializeGoldBorder2() => __pbn__GoldBorder2 != null; + public void ResetGoldBorder2() => __pbn__GoldBorder2 = null; + private uint? __pbn__GoldBorder2; + + [global::ProtoBuf.ProtoMember(9, Name = @"red_border_3")] + public uint RedBorder3 + { + get => __pbn__RedBorder3.GetValueOrDefault(); + set => __pbn__RedBorder3 = value; + } + public bool ShouldSerializeRedBorder3() => __pbn__RedBorder3 != null; + public void ResetRedBorder3() => __pbn__RedBorder3 = null; + private uint? __pbn__RedBorder3; + + [global::ProtoBuf.ProtoMember(10, Name = @"gold_border_3")] + public uint GoldBorder3 + { + get => __pbn__GoldBorder3.GetValueOrDefault(); + set => __pbn__GoldBorder3 = value; + } + public bool ShouldSerializeGoldBorder3() => __pbn__GoldBorder3 != null; + public void ResetGoldBorder3() => __pbn__GoldBorder3 = null; + private uint? __pbn__GoldBorder3; + + } + + } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class VerifyQrcodeRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"baid", IsRequired = true)] + public ulong Baid { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } + + [global::ProtoBuf.ProtoMember(4, Name = @"qrcode_serial", IsRequired = true)] + public string QrcodeSerial { get; set; } + + [global::ProtoBuf.ProtoMember(5, Name = @"is_new_card")] + public bool IsNewCard + { + get => __pbn__IsNewCard.GetValueOrDefault(); + set => __pbn__IsNewCard = value; + } + public bool ShouldSerializeIsNewCard() => __pbn__IsNewCard != null; + public void ResetIsNewCard() => __pbn__IsNewCard = null; + private bool? __pbn__IsNewCard; + + } + + [global::ProtoBuf.ProtoContract()] + public partial class VerifyQrcodeResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"qrcode_id")] + public uint QrcodeId + { + get => __pbn__QrcodeId.GetValueOrDefault(); + set => __pbn__QrcodeId = value; + } + public bool ShouldSerializeQrcodeId() => __pbn__QrcodeId != null; + public void ResetQrcodeId() => __pbn__QrcodeId = null; + private uint? __pbn__QrcodeId; + + } + + [global::ProtoBuf.ProtoContract()] + public partial class ExecuteQrcodeRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"baid", IsRequired = true)] + public ulong Baid { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } + + [global::ProtoBuf.ProtoMember(4, Name = @"qrcode_serial", IsRequired = true)] + public string QrcodeSerial { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class ExecuteQrcodeResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"qrcode_id")] + public uint QrcodeId + { + get => __pbn__QrcodeId.GetValueOrDefault(); + set => __pbn__QrcodeId = value; + } + public bool ShouldSerializeQrcodeId() => __pbn__QrcodeId != null; + public void ResetQrcodeId() => __pbn__QrcodeId = null; + private uint? __pbn__QrcodeId; + + } + + [global::ProtoBuf.ProtoContract()] + public partial class GetApplicationUrlRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"baid", IsRequired = true)] + public ulong Baid { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } + + [global::ProtoBuf.ProtoMember(4, Name = @"qrcode_id", IsRequired = true)] + public uint QrcodeId { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class GetApplicationUrlResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"application_url")] + [global::System.ComponentModel.DefaultValue("")] + public string ApplicationUrl + { + get => __pbn__ApplicationUrl ?? ""; + set => __pbn__ApplicationUrl = value; + } + public bool ShouldSerializeApplicationUrl() => __pbn__ApplicationUrl != null; + public void ResetApplicationUrl() => __pbn__ApplicationUrl = null; + private string __pbn__ApplicationUrl; + + } + + [global::ProtoBuf.ProtoContract()] + public partial class SetAnyStringRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"any_string", IsRequired = true)] + public string AnyString { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class SetAnyStringResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class GetGenericMasterRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"master_type", IsRequired = true)] + public uint MasterType { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class GetGenericMasterResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"verup_no")] + public uint VerupNo + { + get => __pbn__VerupNo.GetValueOrDefault(); + set => __pbn__VerupNo = value; + } + public bool ShouldSerializeVerupNo() => __pbn__VerupNo != null; + public void ResetVerupNo() => __pbn__VerupNo = null; + private uint? __pbn__VerupNo; + + [global::ProtoBuf.ProtoMember(3, Name = @"enable_id_bit")] + public byte[] EnableIdBit + { + get => __pbn__EnableIdBit; + set => __pbn__EnableIdBit = value; + } + public bool ShouldSerializeEnableIdBit() => __pbn__EnableIdBit != null; + public void ResetEnableIdBit() => __pbn__EnableIdBit = null; + private byte[] __pbn__EnableIdBit; + + } + + [global::ProtoBuf.ProtoContract()] + public partial class MusicUsbAuth1Request : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"usbmem_ver", IsRequired = true)] + public string UsbmemVer { get; set; } + + [global::ProtoBuf.ProtoMember(4, Name = @"usbmem_serial", IsRequired = true)] + public string UsbmemSerial { get; set; } + + [global::ProtoBuf.ProtoMember(5, Name = @"usbmem_vid", IsRequired = true)] + public string UsbmemVid { get; set; } + + [global::ProtoBuf.ProtoMember(6, Name = @"usbmem_pid", IsRequired = true)] + public string UsbmemPid { get; set; } + + [global::ProtoBuf.ProtoMember(7, Name = @"app_ver", IsRequired = true)] + public uint AppVer { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class MusicUsbAuth1Response : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"secret_key_1")] + [global::System.ComponentModel.DefaultValue("")] + public string SecretKey1 + { + get => __pbn__SecretKey1 ?? ""; + set => __pbn__SecretKey1 = value; + } + public bool ShouldSerializeSecretKey1() => __pbn__SecretKey1 != null; + public void ResetSecretKey1() => __pbn__SecretKey1 = null; + private string __pbn__SecretKey1; + + [global::ProtoBuf.ProtoMember(3, Name = @"secret_key_2")] + [global::System.ComponentModel.DefaultValue("")] + public string SecretKey2 + { + get => __pbn__SecretKey2 ?? ""; + set => __pbn__SecretKey2 = value; + } + public bool ShouldSerializeSecretKey2() => __pbn__SecretKey2 != null; + public void ResetSecretKey2() => __pbn__SecretKey2 = null; + private string __pbn__SecretKey2; + + [global::ProtoBuf.ProtoMember(4, Name = @"datafile_hash")] + [global::System.ComponentModel.DefaultValue("")] + public string DatafileHash + { + get => __pbn__DatafileHash ?? ""; + set => __pbn__DatafileHash = value; + } + public bool ShouldSerializeDatafileHash() => __pbn__DatafileHash != null; + public void ResetDatafileHash() => __pbn__DatafileHash = null; + private string __pbn__DatafileHash; + + } + + [global::ProtoBuf.ProtoContract()] + public partial class MusicUsbAuth2Request : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"usbmem_ver", IsRequired = true)] + public string UsbmemVer { get; set; } + + [global::ProtoBuf.ProtoMember(4, Name = @"usbmem_serial", IsRequired = true)] + public string UsbmemSerial { get; set; } + + [global::ProtoBuf.ProtoMember(5, Name = @"usbmem_vid", IsRequired = true)] + public string UsbmemVid { get; set; } + + [global::ProtoBuf.ProtoMember(6, Name = @"usbmem_pid", IsRequired = true)] + public string UsbmemPid { get; set; } + + [global::ProtoBuf.ProtoMember(7, Name = @"app_ver", IsRequired = true)] + public uint AppVer { get; set; } + + [global::ProtoBuf.ProtoMember(8, Name = @"datafile_hash", IsRequired = true)] + public string DatafileHash { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class MusicUsbAuth2Response : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class BAIDRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"wechat_qr_str", IsRequired = true)] + public string WechatQrStr { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } + + [global::ProtoBuf.ProtoMember(4, Name = @"country_id", IsRequired = true)] + public string CountryId { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class BAIDResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"player_type")] + public uint PlayerType + { + get => __pbn__PlayerType.GetValueOrDefault(); + set => __pbn__PlayerType = value; + } + public bool ShouldSerializePlayerType() => __pbn__PlayerType != null; + public void ResetPlayerType() => __pbn__PlayerType = null; + private uint? __pbn__PlayerType; + + [global::ProtoBuf.ProtoMember(3, Name = @"baid")] + public ulong Baid + { + get => __pbn__Baid.GetValueOrDefault(); + set => __pbn__Baid = value; + } + public bool ShouldSerializeBaid() => __pbn__Baid != null; + public void ResetBaid() => __pbn__Baid = null; + private ulong? __pbn__Baid; + + [global::ProtoBuf.ProtoMember(4, Name = @"mydon_name")] + [global::System.ComponentModel.DefaultValue("")] + public string MydonName + { + get => __pbn__MydonName ?? ""; + set => __pbn__MydonName = value; + } + public bool ShouldSerializeMydonName() => __pbn__MydonName != null; + public void ResetMydonName() => __pbn__MydonName = null; + private string __pbn__MydonName; + + [global::ProtoBuf.ProtoMember(5, Name = @"mydon_name_language")] + public uint MydonNameLanguage + { + get => __pbn__MydonNameLanguage.GetValueOrDefault(); + set => __pbn__MydonNameLanguage = value; + } + public bool ShouldSerializeMydonNameLanguage() => __pbn__MydonNameLanguage != null; + public void ResetMydonNameLanguage() => __pbn__MydonNameLanguage = null; + private uint? __pbn__MydonNameLanguage; + + [global::ProtoBuf.ProtoMember(6, Name = @"title")] + [global::System.ComponentModel.DefaultValue("")] + public string Title + { + get => __pbn__Title ?? ""; + set => __pbn__Title = value; + } + public bool ShouldSerializeTitle() => __pbn__Title != null; + public void ResetTitle() => __pbn__Title = null; + private string __pbn__Title; + + [global::ProtoBuf.ProtoMember(7, Name = @"titleplate_id")] + public uint TitleplateId + { + get => __pbn__TitleplateId.GetValueOrDefault(); + set => __pbn__TitleplateId = value; + } + public bool ShouldSerializeTitleplateId() => __pbn__TitleplateId != null; + public void ResetTitleplateId() => __pbn__TitleplateId = null; + private uint? __pbn__TitleplateId; + + [global::ProtoBuf.ProtoMember(8, Name = @"color_face")] + public uint ColorFace + { + get => __pbn__ColorFace.GetValueOrDefault(); + set => __pbn__ColorFace = value; + } + public bool ShouldSerializeColorFace() => __pbn__ColorFace != null; + public void ResetColorFace() => __pbn__ColorFace = null; + private uint? __pbn__ColorFace; + + [global::ProtoBuf.ProtoMember(9, Name = @"color_body")] + public uint ColorBody + { + get => __pbn__ColorBody.GetValueOrDefault(); + set => __pbn__ColorBody = value; + } + public bool ShouldSerializeColorBody() => __pbn__ColorBody != null; + public void ResetColorBody() => __pbn__ColorBody = null; + private uint? __pbn__ColorBody; + + [global::ProtoBuf.ProtoMember(10, Name = @"color_limb")] + public uint ColorLimb + { + get => __pbn__ColorLimb.GetValueOrDefault(); + set => __pbn__ColorLimb = value; + } + public bool ShouldSerializeColorLimb() => __pbn__ColorLimb != null; + public void ResetColorLimb() => __pbn__ColorLimb = null; + private uint? __pbn__ColorLimb; + + [global::ProtoBuf.ProtoMember(11, Name = @"ary_costumedata")] + public CostumeData AryCostumedata { get; set; } + + [global::ProtoBuf.ProtoMember(12, Name = @"costume_flg_1")] + public byte[] CostumeFlg1 + { + get => __pbn__CostumeFlg1; + set => __pbn__CostumeFlg1 = value; + } + public bool ShouldSerializeCostumeFlg1() => __pbn__CostumeFlg1 != null; + public void ResetCostumeFlg1() => __pbn__CostumeFlg1 = null; + private byte[] __pbn__CostumeFlg1; + + [global::ProtoBuf.ProtoMember(13, Name = @"costume_flg_2")] + public byte[] CostumeFlg2 + { + get => __pbn__CostumeFlg2; + set => __pbn__CostumeFlg2 = value; + } + public bool ShouldSerializeCostumeFlg2() => __pbn__CostumeFlg2 != null; + public void ResetCostumeFlg2() => __pbn__CostumeFlg2 = null; + private byte[] __pbn__CostumeFlg2; + + [global::ProtoBuf.ProtoMember(14, Name = @"costume_flg_3")] + public byte[] CostumeFlg3 + { + get => __pbn__CostumeFlg3; + set => __pbn__CostumeFlg3 = value; + } + public bool ShouldSerializeCostumeFlg3() => __pbn__CostumeFlg3 != null; + public void ResetCostumeFlg3() => __pbn__CostumeFlg3 = null; + private byte[] __pbn__CostumeFlg3; + + [global::ProtoBuf.ProtoMember(15, Name = @"costume_flg_4")] + public byte[] CostumeFlg4 + { + get => __pbn__CostumeFlg4; + set => __pbn__CostumeFlg4 = value; + } + public bool ShouldSerializeCostumeFlg4() => __pbn__CostumeFlg4 != null; + public void ResetCostumeFlg4() => __pbn__CostumeFlg4 = null; + private byte[] __pbn__CostumeFlg4; + + [global::ProtoBuf.ProtoMember(16, Name = @"costume_flg_5")] + public byte[] CostumeFlg5 + { + get => __pbn__CostumeFlg5; + set => __pbn__CostumeFlg5 = value; + } + public bool ShouldSerializeCostumeFlg5() => __pbn__CostumeFlg5 != null; + public void ResetCostumeFlg5() => __pbn__CostumeFlg5 = null; + private byte[] __pbn__CostumeFlg5; + + [global::ProtoBuf.ProtoMember(17, Name = @"last_play_datetime")] + [global::System.ComponentModel.DefaultValue("")] + public string LastPlayDatetime + { + get => __pbn__LastPlayDatetime ?? ""; + set => __pbn__LastPlayDatetime = value; + } + public bool ShouldSerializeLastPlayDatetime() => __pbn__LastPlayDatetime != null; + public void ResetLastPlayDatetime() => __pbn__LastPlayDatetime = null; + private string __pbn__LastPlayDatetime; + + [global::ProtoBuf.ProtoMember(18, Name = @"is_disp_dan_on")] + public bool IsDispDanOn + { + get => __pbn__IsDispDanOn.GetValueOrDefault(); + set => __pbn__IsDispDanOn = value; + } + public bool ShouldSerializeIsDispDanOn() => __pbn__IsDispDanOn != null; + public void ResetIsDispDanOn() => __pbn__IsDispDanOn = null; + private bool? __pbn__IsDispDanOn; + + [global::ProtoBuf.ProtoMember(19, Name = @"got_dan_max")] + public uint GotDanMax + { + get => __pbn__GotDanMax.GetValueOrDefault(); + set => __pbn__GotDanMax = value; + } + public bool ShouldSerializeGotDanMax() => __pbn__GotDanMax != null; + public void ResetGotDanMax() => __pbn__GotDanMax = null; + private uint? __pbn__GotDanMax; + + [global::ProtoBuf.ProtoMember(20, Name = @"got_dan_flg")] + public byte[] GotDanFlg + { + get => __pbn__GotDanFlg; + set => __pbn__GotDanFlg = value; + } + public bool ShouldSerializeGotDanFlg() => __pbn__GotDanFlg != null; + public void ResetGotDanFlg() => __pbn__GotDanFlg = null; + private byte[] __pbn__GotDanFlg; + + [global::ProtoBuf.ProtoMember(21, Name = @"got_danextra_flg")] + public byte[] GotDanextraFlg + { + get => __pbn__GotDanextraFlg; + set => __pbn__GotDanextraFlg = value; + } + public bool ShouldSerializeGotDanextraFlg() => __pbn__GotDanextraFlg != null; + public void ResetGotDanextraFlg() => __pbn__GotDanextraFlg = null; + private byte[] __pbn__GotDanextraFlg; + + [global::ProtoBuf.ProtoMember(22, Name = @"default_tone_setting")] + public uint DefaultToneSetting + { + get => __pbn__DefaultToneSetting.GetValueOrDefault(); + set => __pbn__DefaultToneSetting = value; + } + public bool ShouldSerializeDefaultToneSetting() => __pbn__DefaultToneSetting != null; + public void ResetDefaultToneSetting() => __pbn__DefaultToneSetting = null; + private uint? __pbn__DefaultToneSetting; + + [global::ProtoBuf.ProtoMember(23, Name = @"generic_info_flg")] + public byte[] GenericInfoFlg + { + get => __pbn__GenericInfoFlg; + set => __pbn__GenericInfoFlg = value; + } + public bool ShouldSerializeGenericInfoFlg() => __pbn__GenericInfoFlg != null; + public void ResetGenericInfoFlg() => __pbn__GenericInfoFlg = null; + private byte[] __pbn__GenericInfoFlg; + + [global::ProtoBuf.ProtoMember(24, Name = @"ary_crown_count")] + public uint[] AryCrownCounts { get; set; } + + [global::ProtoBuf.ProtoMember(25, Name = @"ary_score_rank_count")] + public uint[] AryScoreRankCounts { get; set; } + + [global::ProtoBuf.ProtoMember(26, Name = @"is_disp_achievement_on")] + public bool IsDispAchievementOn + { + get => __pbn__IsDispAchievementOn.GetValueOrDefault(); + set => __pbn__IsDispAchievementOn = value; + } + public bool ShouldSerializeIsDispAchievementOn() => __pbn__IsDispAchievementOn != null; + public void ResetIsDispAchievementOn() => __pbn__IsDispAchievementOn = null; + private bool? __pbn__IsDispAchievementOn; + + [global::ProtoBuf.ProtoMember(27, Name = @"disp_achievement_type")] + public uint DispAchievementType + { + get => __pbn__DispAchievementType.GetValueOrDefault(); + set => __pbn__DispAchievementType = value; + } + public bool ShouldSerializeDispAchievementType() => __pbn__DispAchievementType != null; + public void ResetDispAchievementType() => __pbn__DispAchievementType = null; + private uint? __pbn__DispAchievementType; + + [global::ProtoBuf.ProtoMember(28, Name = @"is_disp_achievement_type_set")] + public bool IsDispAchievementTypeSet + { + get => __pbn__IsDispAchievementTypeSet.GetValueOrDefault(); + set => __pbn__IsDispAchievementTypeSet = value; + } + public bool ShouldSerializeIsDispAchievementTypeSet() => __pbn__IsDispAchievementTypeSet != null; + public void ResetIsDispAchievementTypeSet() => __pbn__IsDispAchievementTypeSet = null; + private bool? __pbn__IsDispAchievementTypeSet; + + [global::ProtoBuf.ProtoMember(29, Name = @"last_play_mode")] + public uint LastPlayMode + { + get => __pbn__LastPlayMode.GetValueOrDefault(); + set => __pbn__LastPlayMode = value; + } + public bool ShouldSerializeLastPlayMode() => __pbn__LastPlayMode != null; + public void ResetLastPlayMode() => __pbn__LastPlayMode = null; + private uint? __pbn__LastPlayMode; + + [global::ProtoBuf.ProtoMember(30, Name = @"is_disp_souuchi_on")] + public bool IsDispSouuchiOn + { + get => __pbn__IsDispSouuchiOn.GetValueOrDefault(); + set => __pbn__IsDispSouuchiOn = value; + } + public bool ShouldSerializeIsDispSouuchiOn() => __pbn__IsDispSouuchiOn != null; + public void ResetIsDispSouuchiOn() => __pbn__IsDispSouuchiOn = null; + private bool? __pbn__IsDispSouuchiOn; + + [global::ProtoBuf.ProtoContract()] + public partial class CostumeData : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"costume_1")] + public uint Costume1 + { + get => __pbn__Costume1.GetValueOrDefault(); + set => __pbn__Costume1 = value; + } + public bool ShouldSerializeCostume1() => __pbn__Costume1 != null; + public void ResetCostume1() => __pbn__Costume1 = null; + private uint? __pbn__Costume1; + + [global::ProtoBuf.ProtoMember(2, Name = @"costume_2")] + public uint Costume2 + { + get => __pbn__Costume2.GetValueOrDefault(); + set => __pbn__Costume2 = value; + } + public bool ShouldSerializeCostume2() => __pbn__Costume2 != null; + public void ResetCostume2() => __pbn__Costume2 = null; + private uint? __pbn__Costume2; + + [global::ProtoBuf.ProtoMember(3, Name = @"costume_3")] + public uint Costume3 + { + get => __pbn__Costume3.GetValueOrDefault(); + set => __pbn__Costume3 = value; + } + public bool ShouldSerializeCostume3() => __pbn__Costume3 != null; + public void ResetCostume3() => __pbn__Costume3 = null; + private uint? __pbn__Costume3; + + [global::ProtoBuf.ProtoMember(4, Name = @"costume_4")] + public uint Costume4 + { + get => __pbn__Costume4.GetValueOrDefault(); + set => __pbn__Costume4 = value; + } + public bool ShouldSerializeCostume4() => __pbn__Costume4 != null; + public void ResetCostume4() => __pbn__Costume4 = null; + private uint? __pbn__Costume4; + + [global::ProtoBuf.ProtoMember(5, Name = @"costume_5")] + public uint Costume5 + { + get => __pbn__Costume5.GetValueOrDefault(); + set => __pbn__Costume5 = value; + } + public bool ShouldSerializeCostume5() => __pbn__Costume5 != null; + public void ResetCostume5() => __pbn__Costume5 = null; + private uint? __pbn__Costume5; + + } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class MydonEntryRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"wechat_qr_str", IsRequired = true)] + public string WechatQrStr { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } + + [global::ProtoBuf.ProtoMember(4, Name = @"country_id", IsRequired = true)] + public string CountryId { get; set; } + + [global::ProtoBuf.ProtoMember(5, Name = @"mydon_name", IsRequired = true)] + public string MydonName { get; set; } + + [global::ProtoBuf.ProtoMember(6, Name = @"mydon_name_language", IsRequired = true)] + public uint MydonNameLanguage { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class MydonEntryResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"baid")] + public ulong Baid + { + get => __pbn__Baid.GetValueOrDefault(); + set => __pbn__Baid = value; + } + public bool ShouldSerializeBaid() => __pbn__Baid != null; + public void ResetBaid() => __pbn__Baid = null; + private ulong? __pbn__Baid; + + [global::ProtoBuf.ProtoMember(3, Name = @"mydon_name")] + [global::System.ComponentModel.DefaultValue("")] + public string MydonName + { + get => __pbn__MydonName ?? ""; + set => __pbn__MydonName = value; + } + public bool ShouldSerializeMydonName() => __pbn__MydonName != null; + public void ResetMydonName() => __pbn__MydonName = null; + private string __pbn__MydonName; + + [global::ProtoBuf.ProtoMember(4, Name = @"mydon_name_language")] + public uint MydonNameLanguage + { + get => __pbn__MydonNameLanguage.GetValueOrDefault(); + set => __pbn__MydonNameLanguage = value; + } + public bool ShouldSerializeMydonNameLanguage() => __pbn__MydonNameLanguage != null; + public void ResetMydonNameLanguage() => __pbn__MydonNameLanguage = null; + private uint? __pbn__MydonNameLanguage; + + } + + [global::ProtoBuf.ProtoContract()] + public partial class UserDataRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"wechat_qr_str", IsRequired = true)] + public string WechatQrStr { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"baid", IsRequired = true)] + public ulong Baid { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } + + [global::ProtoBuf.ProtoMember(4, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class UserDataResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"tone_flg")] + public byte[] ToneFlg + { + get => __pbn__ToneFlg; + set => __pbn__ToneFlg = value; + } + public bool ShouldSerializeToneFlg() => __pbn__ToneFlg != null; + public void ResetToneFlg() => __pbn__ToneFlg = null; + private byte[] __pbn__ToneFlg; + + [global::ProtoBuf.ProtoMember(3, Name = @"title_flg")] + public byte[] TitleFlg + { + get => __pbn__TitleFlg; + set => __pbn__TitleFlg = value; + } + public bool ShouldSerializeTitleFlg() => __pbn__TitleFlg != null; + public void ResetTitleFlg() => __pbn__TitleFlg = null; + private byte[] __pbn__TitleFlg; + + [global::ProtoBuf.ProtoMember(4, Name = @"release_song_flg")] + public byte[] ReleaseSongFlg + { + get => __pbn__ReleaseSongFlg; + set => __pbn__ReleaseSongFlg = value; + } + public bool ShouldSerializeReleaseSongFlg() => __pbn__ReleaseSongFlg != null; + public void ResetReleaseSongFlg() => __pbn__ReleaseSongFlg = null; + private byte[] __pbn__ReleaseSongFlg; + + [global::ProtoBuf.ProtoMember(5, Name = @"ura_release_song_flg")] + public byte[] UraReleaseSongFlg + { + get => __pbn__UraReleaseSongFlg; + set => __pbn__UraReleaseSongFlg = value; + } + public bool ShouldSerializeUraReleaseSongFlg() => __pbn__UraReleaseSongFlg != null; + public void ResetUraReleaseSongFlg() => __pbn__UraReleaseSongFlg = null; + private byte[] __pbn__UraReleaseSongFlg; + + [global::ProtoBuf.ProtoMember(6, Name = @"ary_favorite_song_no")] + public uint[] AryFavoriteSongNoes { get; set; } + + [global::ProtoBuf.ProtoMember(7, Name = @"ary_recent_song_no")] + public uint[] AryRecentSongNoes { get; set; } + + [global::ProtoBuf.ProtoMember(8, Name = @"disp_score_type")] + public uint DispScoreType + { + get => __pbn__DispScoreType.GetValueOrDefault(); + set => __pbn__DispScoreType = value; + } + public bool ShouldSerializeDispScoreType() => __pbn__DispScoreType != null; + public void ResetDispScoreType() => __pbn__DispScoreType = null; + private uint? __pbn__DispScoreType; + + [global::ProtoBuf.ProtoMember(9, Name = @"disp_level_chassis")] + public uint DispLevelChassis + { + get => __pbn__DispLevelChassis.GetValueOrDefault(); + set => __pbn__DispLevelChassis = value; + } + public bool ShouldSerializeDispLevelChassis() => __pbn__DispLevelChassis != null; + public void ResetDispLevelChassis() => __pbn__DispLevelChassis = null; + private uint? __pbn__DispLevelChassis; + + [global::ProtoBuf.ProtoMember(10, Name = @"disp_level_self")] + public uint DispLevelSelf + { + get => __pbn__DispLevelSelf.GetValueOrDefault(); + set => __pbn__DispLevelSelf = value; + } + public bool ShouldSerializeDispLevelSelf() => __pbn__DispLevelSelf != null; + public void ResetDispLevelSelf() => __pbn__DispLevelSelf = null; + private uint? __pbn__DispLevelSelf; + + [global::ProtoBuf.ProtoMember(11, Name = @"is_disp_tojiru_on")] + public bool IsDispTojiruOn + { + get => __pbn__IsDispTojiruOn.GetValueOrDefault(); + set => __pbn__IsDispTojiruOn = value; + } + public bool ShouldSerializeIsDispTojiruOn() => __pbn__IsDispTojiruOn != null; + public void ResetIsDispTojiruOn() => __pbn__IsDispTojiruOn = null; + private bool? __pbn__IsDispTojiruOn; + + [global::ProtoBuf.ProtoMember(12, Name = @"default_option_setting")] + public byte[] DefaultOptionSetting + { + get => __pbn__DefaultOptionSetting; + set => __pbn__DefaultOptionSetting = value; + } + public bool ShouldSerializeDefaultOptionSetting() => __pbn__DefaultOptionSetting != null; + public void ResetDefaultOptionSetting() => __pbn__DefaultOptionSetting = null; + private byte[] __pbn__DefaultOptionSetting; + + [global::ProtoBuf.ProtoMember(13, Name = @"notes_position", DataFormat = global::ProtoBuf.DataFormat.ZigZag)] + public int NotesPosition + { + get => __pbn__NotesPosition.GetValueOrDefault(); + set => __pbn__NotesPosition = value; + } + public bool ShouldSerializeNotesPosition() => __pbn__NotesPosition != null; + public void ResetNotesPosition() => __pbn__NotesPosition = null; + private int? __pbn__NotesPosition; + + [global::ProtoBuf.ProtoMember(14, Name = @"is_voice_on")] + public bool IsVoiceOn + { + get => __pbn__IsVoiceOn.GetValueOrDefault(); + set => __pbn__IsVoiceOn = value; + } + public bool ShouldSerializeIsVoiceOn() => __pbn__IsVoiceOn != null; + public void ResetIsVoiceOn() => __pbn__IsVoiceOn = null; + private bool? __pbn__IsVoiceOn; + + [global::ProtoBuf.ProtoMember(15, Name = @"is_skip_on")] + public bool IsSkipOn + { + get => __pbn__IsSkipOn.GetValueOrDefault(); + set => __pbn__IsSkipOn = value; + } + public bool ShouldSerializeIsSkipOn() => __pbn__IsSkipOn != null; + public void ResetIsSkipOn() => __pbn__IsSkipOn = null; + private bool? __pbn__IsSkipOn; + + [global::ProtoBuf.ProtoMember(16, Name = @"difficulty_setting_course")] + public uint DifficultySettingCourse + { + get => __pbn__DifficultySettingCourse.GetValueOrDefault(); + set => __pbn__DifficultySettingCourse = value; + } + public bool ShouldSerializeDifficultySettingCourse() => __pbn__DifficultySettingCourse != null; + public void ResetDifficultySettingCourse() => __pbn__DifficultySettingCourse = null; + private uint? __pbn__DifficultySettingCourse; + + [global::ProtoBuf.ProtoMember(17, Name = @"difficulty_setting_star")] + public uint DifficultySettingStar + { + get => __pbn__DifficultySettingStar.GetValueOrDefault(); + set => __pbn__DifficultySettingStar = value; + } + public bool ShouldSerializeDifficultySettingStar() => __pbn__DifficultySettingStar != null; + public void ResetDifficultySettingStar() => __pbn__DifficultySettingStar = null; + private uint? __pbn__DifficultySettingStar; + + [global::ProtoBuf.ProtoMember(18, Name = @"difficulty_setting_sort")] + public uint DifficultySettingSort + { + get => __pbn__DifficultySettingSort.GetValueOrDefault(); + set => __pbn__DifficultySettingSort = value; + } + public bool ShouldSerializeDifficultySettingSort() => __pbn__DifficultySettingSort != null; + public void ResetDifficultySettingSort() => __pbn__DifficultySettingSort = null; + private uint? __pbn__DifficultySettingSort; + + [global::ProtoBuf.ProtoMember(19, Name = @"difficulty_played_course")] + public uint DifficultyPlayedCourse + { + get => __pbn__DifficultyPlayedCourse.GetValueOrDefault(); + set => __pbn__DifficultyPlayedCourse = value; + } + public bool ShouldSerializeDifficultyPlayedCourse() => __pbn__DifficultyPlayedCourse != null; + public void ResetDifficultyPlayedCourse() => __pbn__DifficultyPlayedCourse = null; + private uint? __pbn__DifficultyPlayedCourse; + + [global::ProtoBuf.ProtoMember(20, Name = @"difficulty_played_star")] + public uint DifficultyPlayedStar + { + get => __pbn__DifficultyPlayedStar.GetValueOrDefault(); + set => __pbn__DifficultyPlayedStar = value; + } + public bool ShouldSerializeDifficultyPlayedStar() => __pbn__DifficultyPlayedStar != null; + public void ResetDifficultyPlayedStar() => __pbn__DifficultyPlayedStar = null; + private uint? __pbn__DifficultyPlayedStar; + + [global::ProtoBuf.ProtoMember(21, Name = @"difficulty_played_sort")] + public uint DifficultyPlayedSort + { + get => __pbn__DifficultyPlayedSort.GetValueOrDefault(); + set => __pbn__DifficultyPlayedSort = value; + } + public bool ShouldSerializeDifficultyPlayedSort() => __pbn__DifficultyPlayedSort != null; + public void ResetDifficultyPlayedSort() => __pbn__DifficultyPlayedSort = null; + private uint? __pbn__DifficultyPlayedSort; + + [global::ProtoBuf.ProtoMember(22, Name = @"total_credit_cnt")] + public uint TotalCreditCnt + { + get => __pbn__TotalCreditCnt.GetValueOrDefault(); + set => __pbn__TotalCreditCnt = value; + } + public bool ShouldSerializeTotalCreditCnt() => __pbn__TotalCreditCnt != null; + public void ResetTotalCreditCnt() => __pbn__TotalCreditCnt = null; + private uint? __pbn__TotalCreditCnt; + + [global::ProtoBuf.ProtoMember(23, Name = @"song_recent_cnt")] + public uint SongRecentCnt + { + get => __pbn__SongRecentCnt.GetValueOrDefault(); + set => __pbn__SongRecentCnt = value; + } + public bool ShouldSerializeSongRecentCnt() => __pbn__SongRecentCnt != null; + public void ResetSongRecentCnt() => __pbn__SongRecentCnt = null; + private uint? __pbn__SongRecentCnt; + + [global::ProtoBuf.ProtoMember(24, Name = @"is_challengecompe")] + public bool IsChallengecompe + { + get => __pbn__IsChallengecompe.GetValueOrDefault(); + set => __pbn__IsChallengecompe = value; + } + public bool ShouldSerializeIsChallengecompe() => __pbn__IsChallengecompe != null; + public void ResetIsChallengecompe() => __pbn__IsChallengecompe = null; + private bool? __pbn__IsChallengecompe; + + } + + [global::ProtoBuf.ProtoContract()] + public partial class PlayResultRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"baid_conf", IsRequired = true)] + public ulong BaidConf { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"chassis_id_conf", IsRequired = true)] + public string ChassisIdConf { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"shop_id_conf", IsRequired = true)] + public string ShopIdConf { get; set; } + + [global::ProtoBuf.ProtoMember(4, Name = @"play_datetime_conf", IsRequired = true)] + public string PlayDatetimeConf { get; set; } + + [global::ProtoBuf.ProtoMember(5, Name = @"playresult_data", IsRequired = true)] + public byte[] PlayresultData { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class PlayResultResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class PlayResultDataRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"wechat_qr_str", IsRequired = true)] + public string WechatQrStr { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"baid", IsRequired = true)] + public ulong Baid { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } + + [global::ProtoBuf.ProtoMember(4, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } + + [global::ProtoBuf.ProtoMember(5, Name = @"play_datetime", IsRequired = true)] + public string PlayDatetime { get; set; } + + [global::ProtoBuf.ProtoMember(6, Name = @"is_right", IsRequired = true)] + public bool IsRight { get; set; } + + [global::ProtoBuf.ProtoMember(7, Name = @"card_type", IsRequired = true)] + public uint CardType { get; set; } + + [global::ProtoBuf.ProtoMember(8, Name = @"is_two_players", IsRequired = true)] + public bool IsTwoPlayers { get; set; } + + [global::ProtoBuf.ProtoMember(9, Name = @"ary_stage_info")] + public global::System.Collections.Generic.List AryStageInfoes { get; } = new global::System.Collections.Generic.List(); + + [global::ProtoBuf.ProtoMember(10, Name = @"release_song_no")] + public uint[] ReleaseSongNoes { get; set; } + + [global::ProtoBuf.ProtoMember(11, Name = @"ura_release_song_no")] + public uint[] UraReleaseSongNoes { get; set; } + + [global::ProtoBuf.ProtoMember(12, Name = @"get_tone_no")] + public uint[] GetToneNoes { get; set; } + + [global::ProtoBuf.ProtoMember(13, Name = @"get_costume_no_1")] + public uint[] GetCostumeNo1s { get; set; } + + [global::ProtoBuf.ProtoMember(14, Name = @"get_costume_no_2")] + public uint[] GetCostumeNo2s { get; set; } + + [global::ProtoBuf.ProtoMember(15, Name = @"get_costume_no_3")] + public uint[] GetCostumeNo3s { get; set; } + + [global::ProtoBuf.ProtoMember(16, Name = @"get_costume_no_4")] + public uint[] GetCostumeNo4s { get; set; } + + [global::ProtoBuf.ProtoMember(17, Name = @"get_costume_no_5")] + public uint[] GetCostumeNo5s { get; set; } + + [global::ProtoBuf.ProtoMember(18, Name = @"get_title_no")] + public uint[] GetTitleNoes { get; set; } + + [global::ProtoBuf.ProtoMember(19, Name = @"get_generic_info_no")] + public uint[] GetGenericInfoNoes { get; set; } + + [global::ProtoBuf.ProtoMember(20, Name = @"ary_play_costume", IsRequired = true)] + public CostumeData AryPlayCostume { get; set; } + + [global::ProtoBuf.ProtoMember(21, Name = @"ary_current_costume", IsRequired = true)] + public CostumeData AryCurrentCostume { get; set; } + + [global::ProtoBuf.ProtoMember(22, Name = @"title")] + [global::System.ComponentModel.DefaultValue("")] + public string Title + { + get => __pbn__Title ?? ""; + set => __pbn__Title = value; + } + public bool ShouldSerializeTitle() => __pbn__Title != null; + public void ResetTitle() => __pbn__Title = null; + private string __pbn__Title; + + [global::ProtoBuf.ProtoMember(23, Name = @"titleplate_id")] + public uint TitleplateId + { + get => __pbn__TitleplateId.GetValueOrDefault(); + set => __pbn__TitleplateId = value; + } + public bool ShouldSerializeTitleplateId() => __pbn__TitleplateId != null; + public void ResetTitleplateId() => __pbn__TitleplateId = null; + private uint? __pbn__TitleplateId; + + [global::ProtoBuf.ProtoMember(24, Name = @"play_mode", IsRequired = true)] + public uint PlayMode { get; set; } + + [global::ProtoBuf.ProtoMember(25, Name = @"collaboration_id")] + public uint CollaborationId + { + get => __pbn__CollaborationId.GetValueOrDefault(); + set => __pbn__CollaborationId = value; + } + public bool ShouldSerializeCollaborationId() => __pbn__CollaborationId != null; + public void ResetCollaborationId() => __pbn__CollaborationId = null; + private uint? __pbn__CollaborationId; + + [global::ProtoBuf.ProtoMember(26, Name = @"dan_id")] + public uint DanId + { + get => __pbn__DanId.GetValueOrDefault(); + set => __pbn__DanId = value; + } + public bool ShouldSerializeDanId() => __pbn__DanId != null; + public void ResetDanId() => __pbn__DanId = null; + private uint? __pbn__DanId; + + [global::ProtoBuf.ProtoMember(27, Name = @"dan_result")] + public uint DanResult + { + get => __pbn__DanResult.GetValueOrDefault(); + set => __pbn__DanResult = value; + } + public bool ShouldSerializeDanResult() => __pbn__DanResult != null; + public void ResetDanResult() => __pbn__DanResult = null; + private uint? __pbn__DanResult; + + [global::ProtoBuf.ProtoMember(28, Name = @"soul_gauge_total")] + public uint SoulGaugeTotal + { + get => __pbn__SoulGaugeTotal.GetValueOrDefault(); + set => __pbn__SoulGaugeTotal = value; + } + public bool ShouldSerializeSoulGaugeTotal() => __pbn__SoulGaugeTotal != null; + public void ResetSoulGaugeTotal() => __pbn__SoulGaugeTotal = null; + private uint? __pbn__SoulGaugeTotal; + + [global::ProtoBuf.ProtoMember(29, Name = @"combo_cnt_total")] + public uint ComboCntTotal + { + get => __pbn__ComboCntTotal.GetValueOrDefault(); + set => __pbn__ComboCntTotal = value; + } + public bool ShouldSerializeComboCntTotal() => __pbn__ComboCntTotal != null; + public void ResetComboCntTotal() => __pbn__ComboCntTotal = null; + private uint? __pbn__ComboCntTotal; + + [global::ProtoBuf.ProtoMember(30, Name = @"is_not_recorded_dan")] + public bool IsNotRecordedDan + { + get => __pbn__IsNotRecordedDan.GetValueOrDefault(); + set => __pbn__IsNotRecordedDan = value; + } + public bool ShouldSerializeIsNotRecordedDan() => __pbn__IsNotRecordedDan != null; + public void ResetIsNotRecordedDan() => __pbn__IsNotRecordedDan = null; + private bool? __pbn__IsNotRecordedDan; + + [global::ProtoBuf.ProtoMember(31, Name = @"area_code", IsRequired = true)] + public uint AreaCode { get; set; } + + [global::ProtoBuf.ProtoMember(32, Name = @"reserved", IsRequired = true)] + public byte[] Reserved { get; set; } + + [global::ProtoBuf.ProtoMember(33, Name = @"tournament_mode")] + public uint TournamentMode + { + get => __pbn__TournamentMode.GetValueOrDefault(); + set => __pbn__TournamentMode = value; + } + public bool ShouldSerializeTournamentMode() => __pbn__TournamentMode != null; + public void ResetTournamentMode() => __pbn__TournamentMode = null; + private uint? __pbn__TournamentMode; + + [global::ProtoBuf.ProtoMember(34, Name = @"difficulty_played_course")] + public uint DifficultyPlayedCourse + { + get => __pbn__DifficultyPlayedCourse.GetValueOrDefault(); + set => __pbn__DifficultyPlayedCourse = value; + } + public bool ShouldSerializeDifficultyPlayedCourse() => __pbn__DifficultyPlayedCourse != null; + public void ResetDifficultyPlayedCourse() => __pbn__DifficultyPlayedCourse = null; + private uint? __pbn__DifficultyPlayedCourse; + + [global::ProtoBuf.ProtoMember(35, Name = @"difficulty_played_star")] + public uint DifficultyPlayedStar + { + get => __pbn__DifficultyPlayedStar.GetValueOrDefault(); + set => __pbn__DifficultyPlayedStar = value; + } + public bool ShouldSerializeDifficultyPlayedStar() => __pbn__DifficultyPlayedStar != null; + public void ResetDifficultyPlayedStar() => __pbn__DifficultyPlayedStar = null; + private uint? __pbn__DifficultyPlayedStar; + + [global::ProtoBuf.ProtoMember(36, Name = @"difficulty_played_sort")] + public uint DifficultyPlayedSort + { + get => __pbn__DifficultyPlayedSort.GetValueOrDefault(); + set => __pbn__DifficultyPlayedSort = value; + } + public bool ShouldSerializeDifficultyPlayedSort() => __pbn__DifficultyPlayedSort != null; + public void ResetDifficultyPlayedSort() => __pbn__DifficultyPlayedSort = null; + private uint? __pbn__DifficultyPlayedSort; + + [global::ProtoBuf.ProtoMember(37, Name = @"is_random_use_play")] + public uint IsRandomUsePlay + { + get => __pbn__IsRandomUsePlay.GetValueOrDefault(); + set => __pbn__IsRandomUsePlay = value; + } + public bool ShouldSerializeIsRandomUsePlay() => __pbn__IsRandomUsePlay != null; + public void ResetIsRandomUsePlay() => __pbn__IsRandomUsePlay = null; + private uint? __pbn__IsRandomUsePlay; + + [global::ProtoBuf.ProtoMember(38, Name = @"input_median")] + [global::System.ComponentModel.DefaultValue("")] + public string InputMedian + { + get => __pbn__InputMedian ?? ""; + set => __pbn__InputMedian = value; + } + public bool ShouldSerializeInputMedian() => __pbn__InputMedian != null; + public void ResetInputMedian() => __pbn__InputMedian = null; + private string __pbn__InputMedian; + + [global::ProtoBuf.ProtoMember(39, Name = @"input_variance")] + [global::System.ComponentModel.DefaultValue("")] + public string InputVariance + { + get => __pbn__InputVariance ?? ""; + set => __pbn__InputVariance = value; + } + public bool ShouldSerializeInputVariance() => __pbn__InputVariance != null; + public void ResetInputVariance() => __pbn__InputVariance = null; + private string __pbn__InputVariance; + + [global::ProtoBuf.ProtoContract()] + public partial class StageData : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"song_no", IsRequired = true)] + public uint SongNo { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"level", IsRequired = true)] + public uint Level { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"stage_mode", IsRequired = true)] + public uint StageMode { get; set; } + + [global::ProtoBuf.ProtoMember(4, Name = @"play_result", IsRequired = true)] + public uint PlayResult { get; set; } + + [global::ProtoBuf.ProtoMember(5, Name = @"play_score", IsRequired = true)] + public uint PlayScore { get; set; } + + [global::ProtoBuf.ProtoMember(6, Name = @"score_rate", IsRequired = true)] + public uint ScoreRate { get; set; } + + [global::ProtoBuf.ProtoMember(7, Name = @"score_rank", IsRequired = true)] + public uint ScoreRank { get; set; } + + [global::ProtoBuf.ProtoMember(8, Name = @"good_cnt", IsRequired = true)] + public uint GoodCnt { get; set; } + + [global::ProtoBuf.ProtoMember(9, Name = @"ok_cnt", IsRequired = true)] + public uint OkCnt { get; set; } + + [global::ProtoBuf.ProtoMember(10, Name = @"ng_cnt", IsRequired = true)] + public uint NgCnt { get; set; } + + [global::ProtoBuf.ProtoMember(11, Name = @"pound_cnt", IsRequired = true)] + public uint PoundCnt { get; set; } + + [global::ProtoBuf.ProtoMember(12, Name = @"combo_cnt", IsRequired = true)] + public uint ComboCnt { get; set; } + + [global::ProtoBuf.ProtoMember(13, Name = @"hit_cnt")] + public uint HitCnt + { + get => __pbn__HitCnt.GetValueOrDefault(); + set => __pbn__HitCnt = value; + } + public bool ShouldSerializeHitCnt() => __pbn__HitCnt != null; + public void ResetHitCnt() => __pbn__HitCnt = null; + private uint? __pbn__HitCnt; + + [global::ProtoBuf.ProtoMember(14, Name = @"option_flg", IsRequired = true)] + public byte[] OptionFlg { get; set; } + + [global::ProtoBuf.ProtoMember(15, Name = @"tone_flg", IsRequired = true)] + public byte[] ToneFlg { get; set; } + + [global::ProtoBuf.ProtoMember(16, Name = @"notes_position", DataFormat = global::ProtoBuf.DataFormat.ZigZag, IsRequired = true)] + public int NotesPosition { get; set; } + + [global::ProtoBuf.ProtoMember(17, Name = @"is_voice_on", IsRequired = true)] + public bool IsVoiceOn { get; set; } + + [global::ProtoBuf.ProtoMember(18, Name = @"is_skip_on", IsRequired = true)] + public bool IsSkipOn { get; set; } - [global::ProtoBuf.ProtoMember(8, Name = @"ary_gacha_costume_4_data")] - public global::System.Collections.Generic.List AryGachaCostume4Datas { get; } = new global::System.Collections.Generic.List(); + [global::ProtoBuf.ProtoMember(19, Name = @"is_skip_use", IsRequired = true)] + public bool IsSkipUse { get; set; } + + [global::ProtoBuf.ProtoMember(20, Name = @"ary_challenge_id")] + public global::System.Collections.Generic.List AryChallengeIds { get; } = new global::System.Collections.Generic.List(); + + [global::ProtoBuf.ProtoMember(21, Name = @"ary_user_compe_id")] + public global::System.Collections.Generic.List AryUserCompeIds { get; } = new global::System.Collections.Generic.List(); - [global::ProtoBuf.ProtoMember(9, Name = @"ary_gacha_costume_5_data")] - public global::System.Collections.Generic.List AryGachaCostume5Datas { get; } = new global::System.Collections.Generic.List(); + [global::ProtoBuf.ProtoMember(22, Name = @"ary_bng_compe_id")] + public global::System.Collections.Generic.List AryBngCompeIds { get; } = new global::System.Collections.Generic.List(); + + [global::ProtoBuf.ProtoMember(23, Name = @"music_categ", IsRequired = true)] + public uint MusicCateg { get; set; } + + [global::ProtoBuf.ProtoMember(24, Name = @"is_favorite", IsRequired = true)] + public bool IsFavorite { get; set; } - [global::ProtoBuf.ProtoMember(10, Name = @"ary_gacha_title_data")] - public global::System.Collections.Generic.List AryGachaTitleDatas { get; } = new global::System.Collections.Generic.List(); + [global::ProtoBuf.ProtoMember(25, Name = @"is_recent", IsRequired = true)] + public bool IsRecent { get; set; } - [global::ProtoBuf.ProtoContract()] - public partial class GachainfoData : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(26, Name = @"selected_folder_id", IsRequired = true)] + public uint SelectedFolderId { get; set; } + + [global::ProtoBuf.ProtoMember(27, Name = @"is_random_use_stage")] + public uint IsRandomUseStage + { + get => __pbn__IsRandomUseStage.GetValueOrDefault(); + set => __pbn__IsRandomUseStage = value; + } + public bool ShouldSerializeIsRandomUseStage() => __pbn__IsRandomUseStage != null; + public void ResetIsRandomUseStage() => __pbn__IsRandomUseStage = null; + private uint? __pbn__IsRandomUseStage; + + [global::ProtoBuf.ProtoMember(28, Name = @"is_papamama", IsRequired = true)] + public bool IsPapamama { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"normal_gacha_flg", IsRequired = true)] - public byte[] NormalGachaFlg { get; set; } + [global::ProtoBuf.ProtoMember(29, Name = @"star_level", IsRequired = true)] + public uint StarLevel { get; set; } + + [global::ProtoBuf.ProtoMember(30, Name = @"is_win")] + public bool IsWin + { + get => __pbn__IsWin.GetValueOrDefault(); + set => __pbn__IsWin = value; + } + public bool ShouldSerializeIsWin() => __pbn__IsWin != null; + public void ResetIsWin() => __pbn__IsWin = null; + private bool? __pbn__IsWin; + + [global::ProtoBuf.ProtoMember(31, Name = @"ary_section_data")] + public global::System.Collections.Generic.List ArySectionDatas { get; } = new global::System.Collections.Generic.List(); + + [global::ProtoBuf.ProtoContract()] + public partial class ResultcompeData : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"compe_id", IsRequired = true)] + public uint CompeId { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"track_no", IsRequired = true)] + public uint TrackNo { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class AiStageSectionData : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"is_win", IsRequired = true)] + public bool IsWin { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"crown", IsRequired = true)] + public uint Crown { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"score", IsRequired = true)] + public uint Score { get; set; } + + [global::ProtoBuf.ProtoMember(4, Name = @"good_cnt", IsRequired = true)] + public uint GoodCnt { get; set; } + + [global::ProtoBuf.ProtoMember(5, Name = @"ok_cnt", IsRequired = true)] + public uint OkCnt { get; set; } + + [global::ProtoBuf.ProtoMember(6, Name = @"ng_cnt", IsRequired = true)] + public uint NgCnt { get; set; } + + [global::ProtoBuf.ProtoMember(7, Name = @"pound_cnt", IsRequired = true)] + public uint PoundCnt { get; set; } + + } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class CostumeData : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"costume_1")] + public uint Costume1 + { + get => __pbn__Costume1.GetValueOrDefault(); + set => __pbn__Costume1 = value; + } + public bool ShouldSerializeCostume1() => __pbn__Costume1 != null; + public void ResetCostume1() => __pbn__Costume1 = null; + private uint? __pbn__Costume1; + + [global::ProtoBuf.ProtoMember(2, Name = @"costume_2")] + public uint Costume2 + { + get => __pbn__Costume2.GetValueOrDefault(); + set => __pbn__Costume2 = value; + } + public bool ShouldSerializeCostume2() => __pbn__Costume2 != null; + public void ResetCostume2() => __pbn__Costume2 = null; + private uint? __pbn__Costume2; + + [global::ProtoBuf.ProtoMember(3, Name = @"costume_3")] + public uint Costume3 + { + get => __pbn__Costume3.GetValueOrDefault(); + set => __pbn__Costume3 = value; + } + public bool ShouldSerializeCostume3() => __pbn__Costume3 != null; + public void ResetCostume3() => __pbn__Costume3 = null; + private uint? __pbn__Costume3; + + [global::ProtoBuf.ProtoMember(4, Name = @"costume_4")] + public uint Costume4 + { + get => __pbn__Costume4.GetValueOrDefault(); + set => __pbn__Costume4 = value; + } + public bool ShouldSerializeCostume4() => __pbn__Costume4 != null; + public void ResetCostume4() => __pbn__Costume4 = null; + private uint? __pbn__Costume4; + + [global::ProtoBuf.ProtoMember(5, Name = @"costume_5")] + public uint Costume5 + { + get => __pbn__Costume5.GetValueOrDefault(); + set => __pbn__Costume5 = value; + } + public bool ShouldSerializeCostume5() => __pbn__Costume5 != null; + public void ResetCostume5() => __pbn__Costume5 = null; + private uint? __pbn__Costume5; + + } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class SelfBestRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"wechat_qr_str", IsRequired = true)] + public string WechatQrStr { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"baid", IsRequired = true)] + public ulong Baid { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } + + [global::ProtoBuf.ProtoMember(4, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } + + [global::ProtoBuf.ProtoMember(5, Name = @"level")] + public uint Level + { + get => __pbn__Level.GetValueOrDefault(); + set => __pbn__Level = value; + } + public bool ShouldSerializeLevel() => __pbn__Level != null; + public void ResetLevel() => __pbn__Level = null; + private uint? __pbn__Level; + + [global::ProtoBuf.ProtoMember(6, Name = @"ary_song_no")] + public uint[] ArySongNoes { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class SelfBestResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"level")] + public uint Level + { + get => __pbn__Level.GetValueOrDefault(); + set => __pbn__Level = value; + } + public bool ShouldSerializeLevel() => __pbn__Level != null; + public void ResetLevel() => __pbn__Level = null; + private uint? __pbn__Level; + + [global::ProtoBuf.ProtoMember(3, Name = @"ary_selfbest_score")] + public global::System.Collections.Generic.List ArySelfbestScores { get; } = new global::System.Collections.Generic.List(); + + [global::ProtoBuf.ProtoContract()] + public partial class SelfBestData : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"song_no", IsRequired = true)] + public uint SongNo { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"self_best_score", IsRequired = true)] + public uint SelfBestScore { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"self_best_score_rate", IsRequired = true)] + public uint SelfBestScoreRate { get; set; } + + [global::ProtoBuf.ProtoMember(4, Name = @"ura_best_score", IsRequired = true)] + public uint UraBestScore { get; set; } + + [global::ProtoBuf.ProtoMember(5, Name = @"ura_best_score_rate", IsRequired = true)] + public uint UraBestScoreRate { get; set; } + + } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class CrownsDataRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"wechat_qr_str", IsRequired = true)] + public string WechatQrStr { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"baid", IsRequired = true)] + public ulong Baid { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } + + [global::ProtoBuf.ProtoMember(4, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class CrownsDataResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } - [global::ProtoBuf.ProtoMember(2, Name = @"rare_gacha_flg", IsRequired = true)] - public byte[] RareGachaFlg { get; set; } + [global::ProtoBuf.ProtoMember(2, Name = @"crown_flg")] + public byte[] CrownFlg + { + get => __pbn__CrownFlg; + set => __pbn__CrownFlg = value; + } + public bool ShouldSerializeCrownFlg() => __pbn__CrownFlg != null; + public void ResetCrownFlg() => __pbn__CrownFlg = null; + private byte[] __pbn__CrownFlg; - } + [global::ProtoBuf.ProtoMember(3, Name = @"dondaful_crown_flg")] + public byte[] DondafulCrownFlg + { + get => __pbn__DondafulCrownFlg; + set => __pbn__DondafulCrownFlg = value; + } + public bool ShouldSerializeDondafulCrownFlg() => __pbn__DondafulCrownFlg != null; + public void ResetDondafulCrownFlg() => __pbn__DondafulCrownFlg = null; + private byte[] __pbn__DondafulCrownFlg; - } + } - [global::ProtoBuf.ProtoContract()] - public partial class GetDanOdaiRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoContract()] + public partial class ChallengeCompeRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } + [global::ProtoBuf.ProtoMember(1, Name = @"wechat_qr_str", IsRequired = true)] + public string WechatQrStr { get; set; } - [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } + [global::ProtoBuf.ProtoMember(2, Name = @"baid", IsRequired = true)] + public ulong Baid { get; set; } - [global::ProtoBuf.ProtoMember(3, Name = @"type", IsRequired = true)] - public uint Type { get; set; } - - [global::ProtoBuf.ProtoMember(4, Name = @"dan_id")] - public uint[] DanIds { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class GetDanOdaiResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"ary_odai_data")] - public global::System.Collections.Generic.List AryOdaiDatas { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class OdaiData : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"dan_id", IsRequired = true)] - public uint DanId { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"verup_no", IsRequired = true)] - public uint VerupNo { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"title", IsRequired = true)] - public string Title { get; set; } - - [global::ProtoBuf.ProtoMember(4, Name = @"ary_odai_song")] - public global::System.Collections.Generic.List AryOdaiSongs { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(5, Name = @"ary_odai_border")] - public global::System.Collections.Generic.List AryOdaiBorders { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class OdaiSong : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"song_no", IsRequired = true)] - public uint SongNo { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"level", IsRequired = true)] - public uint Level { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"is_hidden_song_name", IsRequired = true)] - public bool IsHiddenSongName { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class OdaiBorder : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"odai_type", IsRequired = true)] - public uint OdaiType { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"border_type", IsRequired = true)] - public uint BorderType { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"red_border_total")] - public uint RedBorderTotal - { - get => __pbn__RedBorderTotal.GetValueOrDefault(); - set => __pbn__RedBorderTotal = value; - } - public bool ShouldSerializeRedBorderTotal() => __pbn__RedBorderTotal != null; - public void ResetRedBorderTotal() => __pbn__RedBorderTotal = null; - private uint? __pbn__RedBorderTotal; - - [global::ProtoBuf.ProtoMember(4, Name = @"gold_border_total")] - public uint GoldBorderTotal - { - get => __pbn__GoldBorderTotal.GetValueOrDefault(); - set => __pbn__GoldBorderTotal = value; - } - public bool ShouldSerializeGoldBorderTotal() => __pbn__GoldBorderTotal != null; - public void ResetGoldBorderTotal() => __pbn__GoldBorderTotal = null; - private uint? __pbn__GoldBorderTotal; - - [global::ProtoBuf.ProtoMember(5, Name = @"red_border_1")] - public uint RedBorder1 - { - get => __pbn__RedBorder1.GetValueOrDefault(); - set => __pbn__RedBorder1 = value; - } - public bool ShouldSerializeRedBorder1() => __pbn__RedBorder1 != null; - public void ResetRedBorder1() => __pbn__RedBorder1 = null; - private uint? __pbn__RedBorder1; - - [global::ProtoBuf.ProtoMember(6, Name = @"gold_border_1")] - public uint GoldBorder1 - { - get => __pbn__GoldBorder1.GetValueOrDefault(); - set => __pbn__GoldBorder1 = value; - } - public bool ShouldSerializeGoldBorder1() => __pbn__GoldBorder1 != null; - public void ResetGoldBorder1() => __pbn__GoldBorder1 = null; - private uint? __pbn__GoldBorder1; - - [global::ProtoBuf.ProtoMember(7, Name = @"red_border_2")] - public uint RedBorder2 - { - get => __pbn__RedBorder2.GetValueOrDefault(); - set => __pbn__RedBorder2 = value; - } - public bool ShouldSerializeRedBorder2() => __pbn__RedBorder2 != null; - public void ResetRedBorder2() => __pbn__RedBorder2 = null; - private uint? __pbn__RedBorder2; - - [global::ProtoBuf.ProtoMember(8, Name = @"gold_border_2")] - public uint GoldBorder2 - { - get => __pbn__GoldBorder2.GetValueOrDefault(); - set => __pbn__GoldBorder2 = value; - } - public bool ShouldSerializeGoldBorder2() => __pbn__GoldBorder2 != null; - public void ResetGoldBorder2() => __pbn__GoldBorder2 = null; - private uint? __pbn__GoldBorder2; - - [global::ProtoBuf.ProtoMember(9, Name = @"red_border_3")] - public uint RedBorder3 - { - get => __pbn__RedBorder3.GetValueOrDefault(); - set => __pbn__RedBorder3 = value; - } - public bool ShouldSerializeRedBorder3() => __pbn__RedBorder3 != null; - public void ResetRedBorder3() => __pbn__RedBorder3 = null; - private uint? __pbn__RedBorder3; - - [global::ProtoBuf.ProtoMember(10, Name = @"gold_border_3")] - public uint GoldBorder3 - { - get => __pbn__GoldBorder3.GetValueOrDefault(); - set => __pbn__GoldBorder3 = value; - } - public bool ShouldSerializeGoldBorder3() => __pbn__GoldBorder3 != null; - public void ResetGoldBorder3() => __pbn__GoldBorder3 = null; - private uint? __pbn__GoldBorder3; - - } - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class VerifyQrcodeRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"baid", IsRequired = true)] - public uint Baid { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } - - [global::ProtoBuf.ProtoMember(4, Name = @"qrcode_serial", IsRequired = true)] - public string QrcodeSerial { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class VerifyQrcodeResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"qrcode_id")] - public uint QrcodeId - { - get => __pbn__QrcodeId.GetValueOrDefault(); - set => __pbn__QrcodeId = value; - } - public bool ShouldSerializeQrcodeId() => __pbn__QrcodeId != null; - public void ResetQrcodeId() => __pbn__QrcodeId = null; - private uint? __pbn__QrcodeId; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class ExecuteQrcodeRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"baid", IsRequired = true)] - public uint Baid { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } - - [global::ProtoBuf.ProtoMember(4, Name = @"qrcode_serial", IsRequired = true)] - public string QrcodeSerial { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class ExecuteQrcodeResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"qrcode_id")] - public uint QrcodeId - { - get => __pbn__QrcodeId.GetValueOrDefault(); - set => __pbn__QrcodeId = value; - } - public bool ShouldSerializeQrcodeId() => __pbn__QrcodeId != null; - public void ResetQrcodeId() => __pbn__QrcodeId = null; - private uint? __pbn__QrcodeId; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class GetApplicationUrlRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"baid", IsRequired = true)] - public uint Baid { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } - - [global::ProtoBuf.ProtoMember(4, Name = @"qrcode_id", IsRequired = true)] - public uint QrcodeId { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class GetApplicationUrlResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"application_url")] - [global::System.ComponentModel.DefaultValue("")] - public string ApplicationUrl - { - get => __pbn__ApplicationUrl ?? ""; - set => __pbn__ApplicationUrl = value; - } - public bool ShouldSerializeApplicationUrl() => __pbn__ApplicationUrl != null; - public void ResetApplicationUrl() => __pbn__ApplicationUrl = null; - private string __pbn__ApplicationUrl; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class BAIDRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"device_type", IsRequired = true)] - public uint DeviceType { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"access_code", IsRequired = true)] - public string AccessCode { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"chip_id", IsRequired = true)] - public string ChipId { get; set; } - - [global::ProtoBuf.ProtoMember(4, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } - - [global::ProtoBuf.ProtoMember(5, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } - - [global::ProtoBuf.ProtoMember(6, Name = @"country_id", IsRequired = true)] - public string CountryId { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class BAIDResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"player_type")] - public uint PlayerType - { - get => __pbn__PlayerType.GetValueOrDefault(); - set => __pbn__PlayerType = value; - } - public bool ShouldSerializePlayerType() => __pbn__PlayerType != null; - public void ResetPlayerType() => __pbn__PlayerType = null; - private uint? __pbn__PlayerType; - - [global::ProtoBuf.ProtoMember(3, Name = @"com_svr_result")] - public uint ComSvrResult - { - get => __pbn__ComSvrResult.GetValueOrDefault(); - set => __pbn__ComSvrResult = value; - } - public bool ShouldSerializeComSvrResult() => __pbn__ComSvrResult != null; - public void ResetComSvrResult() => __pbn__ComSvrResult = null; - private uint? __pbn__ComSvrResult; - - [global::ProtoBuf.ProtoMember(4, Name = @"mb_id")] - public uint MbId - { - get => __pbn__MbId.GetValueOrDefault(); - set => __pbn__MbId = value; - } - public bool ShouldSerializeMbId() => __pbn__MbId != null; - public void ResetMbId() => __pbn__MbId = null; - private uint? __pbn__MbId; - - [global::ProtoBuf.ProtoMember(5, Name = @"baid")] - public uint Baid - { - get => __pbn__Baid.GetValueOrDefault(); - set => __pbn__Baid = value; - } - public bool ShouldSerializeBaid() => __pbn__Baid != null; - public void ResetBaid() => __pbn__Baid = null; - private uint? __pbn__Baid; - - [global::ProtoBuf.ProtoMember(6, Name = @"access_code")] - [global::System.ComponentModel.DefaultValue("")] - public string AccessCode - { - get => __pbn__AccessCode ?? ""; - set => __pbn__AccessCode = value; - } - public bool ShouldSerializeAccessCode() => __pbn__AccessCode != null; - public void ResetAccessCode() => __pbn__AccessCode = null; - private string __pbn__AccessCode; - - [global::ProtoBuf.ProtoMember(7, Name = @"is_publish")] - public bool IsPublish - { - get => __pbn__IsPublish.GetValueOrDefault(); - set => __pbn__IsPublish = value; - } - public bool ShouldSerializeIsPublish() => __pbn__IsPublish != null; - public void ResetIsPublish() => __pbn__IsPublish = null; - private bool? __pbn__IsPublish; - - [global::ProtoBuf.ProtoMember(8, Name = @"card_own_num")] - public uint CardOwnNum - { - get => __pbn__CardOwnNum.GetValueOrDefault(); - set => __pbn__CardOwnNum = value; - } - public bool ShouldSerializeCardOwnNum() => __pbn__CardOwnNum != null; - public void ResetCardOwnNum() => __pbn__CardOwnNum = null; - private uint? __pbn__CardOwnNum; - - [global::ProtoBuf.ProtoMember(9, Name = @"reg_country_id")] - [global::System.ComponentModel.DefaultValue("")] - public string RegCountryId - { - get => __pbn__RegCountryId ?? ""; - set => __pbn__RegCountryId = value; - } - public bool ShouldSerializeRegCountryId() => __pbn__RegCountryId != null; - public void ResetRegCountryId() => __pbn__RegCountryId = null; - private string __pbn__RegCountryId; - - [global::ProtoBuf.ProtoMember(10, Name = @"purpose_id")] - public uint PurposeId - { - get => __pbn__PurposeId.GetValueOrDefault(); - set => __pbn__PurposeId = value; - } - public bool ShouldSerializePurposeId() => __pbn__PurposeId != null; - public void ResetPurposeId() => __pbn__PurposeId = null; - private uint? __pbn__PurposeId; - - [global::ProtoBuf.ProtoMember(11, Name = @"region_id")] - public uint RegionId - { - get => __pbn__RegionId.GetValueOrDefault(); - set => __pbn__RegionId = value; - } - public bool ShouldSerializeRegionId() => __pbn__RegionId != null; - public void ResetRegionId() => __pbn__RegionId = null; - private uint? __pbn__RegionId; - - [global::ProtoBuf.ProtoMember(12, Name = @"mydon_name")] - [global::System.ComponentModel.DefaultValue("")] - public string MydonName - { - get => __pbn__MydonName ?? ""; - set => __pbn__MydonName = value; - } - public bool ShouldSerializeMydonName() => __pbn__MydonName != null; - public void ResetMydonName() => __pbn__MydonName = null; - private string __pbn__MydonName; - - [global::ProtoBuf.ProtoMember(13, Name = @"title")] - [global::System.ComponentModel.DefaultValue("")] - public string Title - { - get => __pbn__Title ?? ""; - set => __pbn__Title = value; - } - public bool ShouldSerializeTitle() => __pbn__Title != null; - public void ResetTitle() => __pbn__Title = null; - private string __pbn__Title; - - [global::ProtoBuf.ProtoMember(14, Name = @"titleplate_id")] - public uint TitleplateId - { - get => __pbn__TitleplateId.GetValueOrDefault(); - set => __pbn__TitleplateId = value; - } - public bool ShouldSerializeTitleplateId() => __pbn__TitleplateId != null; - public void ResetTitleplateId() => __pbn__TitleplateId = null; - private uint? __pbn__TitleplateId; - - [global::ProtoBuf.ProtoMember(15, Name = @"color_face")] - public uint ColorFace - { - get => __pbn__ColorFace.GetValueOrDefault(); - set => __pbn__ColorFace = value; - } - public bool ShouldSerializeColorFace() => __pbn__ColorFace != null; - public void ResetColorFace() => __pbn__ColorFace = null; - private uint? __pbn__ColorFace; - - [global::ProtoBuf.ProtoMember(16, Name = @"color_body")] - public uint ColorBody - { - get => __pbn__ColorBody.GetValueOrDefault(); - set => __pbn__ColorBody = value; - } - public bool ShouldSerializeColorBody() => __pbn__ColorBody != null; - public void ResetColorBody() => __pbn__ColorBody = null; - private uint? __pbn__ColorBody; - - [global::ProtoBuf.ProtoMember(17, Name = @"color_limb")] - public uint ColorLimb - { - get => __pbn__ColorLimb.GetValueOrDefault(); - set => __pbn__ColorLimb = value; - } - public bool ShouldSerializeColorLimb() => __pbn__ColorLimb != null; - public void ResetColorLimb() => __pbn__ColorLimb = null; - private uint? __pbn__ColorLimb; - - [global::ProtoBuf.ProtoMember(18, Name = @"ary_costumedata")] - public CostumeData AryCostumedata { get; set; } - - [global::ProtoBuf.ProtoMember(19, Name = @"costume_flg_1")] - public byte[] CostumeFlg1 - { - get => __pbn__CostumeFlg1; - set => __pbn__CostumeFlg1 = value; - } - public bool ShouldSerializeCostumeFlg1() => __pbn__CostumeFlg1 != null; - public void ResetCostumeFlg1() => __pbn__CostumeFlg1 = null; - private byte[] __pbn__CostumeFlg1; - - [global::ProtoBuf.ProtoMember(20, Name = @"costume_flg_2")] - public byte[] CostumeFlg2 - { - get => __pbn__CostumeFlg2; - set => __pbn__CostumeFlg2 = value; - } - public bool ShouldSerializeCostumeFlg2() => __pbn__CostumeFlg2 != null; - public void ResetCostumeFlg2() => __pbn__CostumeFlg2 = null; - private byte[] __pbn__CostumeFlg2; - - [global::ProtoBuf.ProtoMember(21, Name = @"costume_flg_3")] - public byte[] CostumeFlg3 - { - get => __pbn__CostumeFlg3; - set => __pbn__CostumeFlg3 = value; - } - public bool ShouldSerializeCostumeFlg3() => __pbn__CostumeFlg3 != null; - public void ResetCostumeFlg3() => __pbn__CostumeFlg3 = null; - private byte[] __pbn__CostumeFlg3; - - [global::ProtoBuf.ProtoMember(22, Name = @"costume_flg_4")] - public byte[] CostumeFlg4 - { - get => __pbn__CostumeFlg4; - set => __pbn__CostumeFlg4 = value; - } - public bool ShouldSerializeCostumeFlg4() => __pbn__CostumeFlg4 != null; - public void ResetCostumeFlg4() => __pbn__CostumeFlg4 = null; - private byte[] __pbn__CostumeFlg4; - - [global::ProtoBuf.ProtoMember(23, Name = @"costume_flg_5")] - public byte[] CostumeFlg5 - { - get => __pbn__CostumeFlg5; - set => __pbn__CostumeFlg5 = value; - } - public bool ShouldSerializeCostumeFlg5() => __pbn__CostumeFlg5 != null; - public void ResetCostumeFlg5() => __pbn__CostumeFlg5 = null; - private byte[] __pbn__CostumeFlg5; - - [global::ProtoBuf.ProtoMember(24, Name = @"last_play_datetime")] - [global::System.ComponentModel.DefaultValue("")] - public string LastPlayDatetime - { - get => __pbn__LastPlayDatetime ?? ""; - set => __pbn__LastPlayDatetime = value; - } - public bool ShouldSerializeLastPlayDatetime() => __pbn__LastPlayDatetime != null; - public void ResetLastPlayDatetime() => __pbn__LastPlayDatetime = null; - private string __pbn__LastPlayDatetime; - - [global::ProtoBuf.ProtoMember(25, Name = @"is_disp_dan_on")] - public bool IsDispDanOn - { - get => __pbn__IsDispDanOn.GetValueOrDefault(); - set => __pbn__IsDispDanOn = value; - } - public bool ShouldSerializeIsDispDanOn() => __pbn__IsDispDanOn != null; - public void ResetIsDispDanOn() => __pbn__IsDispDanOn = null; - private bool? __pbn__IsDispDanOn; - - [global::ProtoBuf.ProtoMember(26, Name = @"got_dan_max")] - public uint GotDanMax - { - get => __pbn__GotDanMax.GetValueOrDefault(); - set => __pbn__GotDanMax = value; - } - public bool ShouldSerializeGotDanMax() => __pbn__GotDanMax != null; - public void ResetGotDanMax() => __pbn__GotDanMax = null; - private uint? __pbn__GotDanMax; - - [global::ProtoBuf.ProtoMember(27, Name = @"got_dan_flg")] - public byte[] GotDanFlg - { - get => __pbn__GotDanFlg; - set => __pbn__GotDanFlg = value; - } - public bool ShouldSerializeGotDanFlg() => __pbn__GotDanFlg != null; - public void ResetGotDanFlg() => __pbn__GotDanFlg = null; - private byte[] __pbn__GotDanFlg; - - [global::ProtoBuf.ProtoMember(28, Name = @"got_danextra_flg")] - public byte[] GotDanextraFlg - { - get => __pbn__GotDanextraFlg; - set => __pbn__GotDanextraFlg = value; - } - public bool ShouldSerializeGotDanextraFlg() => __pbn__GotDanextraFlg != null; - public void ResetGotDanextraFlg() => __pbn__GotDanextraFlg = null; - private byte[] __pbn__GotDanextraFlg; - - [global::ProtoBuf.ProtoMember(29, Name = @"default_tone_setting")] - public uint DefaultToneSetting - { - get => __pbn__DefaultToneSetting.GetValueOrDefault(); - set => __pbn__DefaultToneSetting = value; - } - public bool ShouldSerializeDefaultToneSetting() => __pbn__DefaultToneSetting != null; - public void ResetDefaultToneSetting() => __pbn__DefaultToneSetting = null; - private uint? __pbn__DefaultToneSetting; - - [global::ProtoBuf.ProtoMember(30, Name = @"generic_info_flg")] - public byte[] GenericInfoFlg - { - get => __pbn__GenericInfoFlg; - set => __pbn__GenericInfoFlg = value; - } - public bool ShouldSerializeGenericInfoFlg() => __pbn__GenericInfoFlg != null; - public void ResetGenericInfoFlg() => __pbn__GenericInfoFlg = null; - private byte[] __pbn__GenericInfoFlg; - - [global::ProtoBuf.ProtoMember(31, Name = @"ary_crown_count")] - public uint[] AryCrownCounts { get; set; } - - [global::ProtoBuf.ProtoMember(32, Name = @"ary_score_rank_count")] - public uint[] AryScoreRankCounts { get; set; } - - [global::ProtoBuf.ProtoMember(33, Name = @"is_disp_achievement_on")] - public bool IsDispAchievementOn - { - get => __pbn__IsDispAchievementOn.GetValueOrDefault(); - set => __pbn__IsDispAchievementOn = value; - } - public bool ShouldSerializeIsDispAchievementOn() => __pbn__IsDispAchievementOn != null; - public void ResetIsDispAchievementOn() => __pbn__IsDispAchievementOn = null; - private bool? __pbn__IsDispAchievementOn; - - [global::ProtoBuf.ProtoMember(34, Name = @"disp_achievement_type")] - public uint DispAchievementType - { - get => __pbn__DispAchievementType.GetValueOrDefault(); - set => __pbn__DispAchievementType = value; - } - public bool ShouldSerializeDispAchievementType() => __pbn__DispAchievementType != null; - public void ResetDispAchievementType() => __pbn__DispAchievementType = null; - private uint? __pbn__DispAchievementType; - - [global::ProtoBuf.ProtoMember(35, Name = @"is_disp_achievement_type_set")] - public bool IsDispAchievementTypeSet - { - get => __pbn__IsDispAchievementTypeSet.GetValueOrDefault(); - set => __pbn__IsDispAchievementTypeSet = value; - } - public bool ShouldSerializeIsDispAchievementTypeSet() => __pbn__IsDispAchievementTypeSet != null; - public void ResetIsDispAchievementTypeSet() => __pbn__IsDispAchievementTypeSet = null; - private bool? __pbn__IsDispAchievementTypeSet; - - [global::ProtoBuf.ProtoMember(36, Name = @"last_play_mode")] - public uint LastPlayMode - { - get => __pbn__LastPlayMode.GetValueOrDefault(); - set => __pbn__LastPlayMode = value; - } - public bool ShouldSerializeLastPlayMode() => __pbn__LastPlayMode != null; - public void ResetLastPlayMode() => __pbn__LastPlayMode = null; - private uint? __pbn__LastPlayMode; - - [global::ProtoBuf.ProtoMember(37, Name = @"is_disp_souuchi_on")] - public bool IsDispSouuchiOn - { - get => __pbn__IsDispSouuchiOn.GetValueOrDefault(); - set => __pbn__IsDispSouuchiOn = value; - } - public bool ShouldSerializeIsDispSouuchiOn() => __pbn__IsDispSouuchiOn != null; - public void ResetIsDispSouuchiOn() => __pbn__IsDispSouuchiOn = null; - private bool? __pbn__IsDispSouuchiOn; - - [global::ProtoBuf.ProtoMember(38, Name = @"ai_rank")] - public uint AiRank - { - get => __pbn__AiRank.GetValueOrDefault(); - set => __pbn__AiRank = value; - } - public bool ShouldSerializeAiRank() => __pbn__AiRank != null; - public void ResetAiRank() => __pbn__AiRank = null; - private uint? __pbn__AiRank; - - [global::ProtoBuf.ProtoMember(39, Name = @"ai_total_win")] - public uint AiTotalWin - { - get => __pbn__AiTotalWin.GetValueOrDefault(); - set => __pbn__AiTotalWin = value; - } - public bool ShouldSerializeAiTotalWin() => __pbn__AiTotalWin != null; - public void ResetAiTotalWin() => __pbn__AiTotalWin = null; - private uint? __pbn__AiTotalWin; - - [global::ProtoBuf.ProtoMember(40, Name = @"accesstoken")] - [global::System.ComponentModel.DefaultValue("")] - public string Accesstoken - { - get => __pbn__Accesstoken ?? ""; - set => __pbn__Accesstoken = value; - } - public bool ShouldSerializeAccesstoken() => __pbn__Accesstoken != null; - public void ResetAccesstoken() => __pbn__Accesstoken = null; - private string __pbn__Accesstoken; - - [global::ProtoBuf.ProtoMember(41, Name = @"content_info")] - public byte[] ContentInfo - { - get => __pbn__ContentInfo; - set => __pbn__ContentInfo = value; - } - public bool ShouldSerializeContentInfo() => __pbn__ContentInfo != null; - public void ResetContentInfo() => __pbn__ContentInfo = null; - private byte[] __pbn__ContentInfo; - - [global::ProtoBuf.ProtoContract()] - public partial class CostumeData : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"costume_1")] - public uint Costume1 - { - get => __pbn__Costume1.GetValueOrDefault(); - set => __pbn__Costume1 = value; - } - public bool ShouldSerializeCostume1() => __pbn__Costume1 != null; - public void ResetCostume1() => __pbn__Costume1 = null; - private uint? __pbn__Costume1; - - [global::ProtoBuf.ProtoMember(2, Name = @"costume_2")] - public uint Costume2 - { - get => __pbn__Costume2.GetValueOrDefault(); - set => __pbn__Costume2 = value; - } - public bool ShouldSerializeCostume2() => __pbn__Costume2 != null; - public void ResetCostume2() => __pbn__Costume2 = null; - private uint? __pbn__Costume2; - - [global::ProtoBuf.ProtoMember(3, Name = @"costume_3")] - public uint Costume3 - { - get => __pbn__Costume3.GetValueOrDefault(); - set => __pbn__Costume3 = value; - } - public bool ShouldSerializeCostume3() => __pbn__Costume3 != null; - public void ResetCostume3() => __pbn__Costume3 = null; - private uint? __pbn__Costume3; - - [global::ProtoBuf.ProtoMember(4, Name = @"costume_4")] - public uint Costume4 - { - get => __pbn__Costume4.GetValueOrDefault(); - set => __pbn__Costume4 = value; - } - public bool ShouldSerializeCostume4() => __pbn__Costume4 != null; - public void ResetCostume4() => __pbn__Costume4 = null; - private uint? __pbn__Costume4; - - [global::ProtoBuf.ProtoMember(5, Name = @"costume_5")] - public uint Costume5 - { - get => __pbn__Costume5.GetValueOrDefault(); - set => __pbn__Costume5 = value; - } - public bool ShouldSerializeCostume5() => __pbn__Costume5 != null; - public void ResetCostume5() => __pbn__Costume5 = null; - private uint? __pbn__Costume5; - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class MydonEntryRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"device_type", IsRequired = true)] - public uint DeviceType { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"access_code", IsRequired = true)] - public string AccessCode { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"chip_id", IsRequired = true)] - public string ChipId { get; set; } - - [global::ProtoBuf.ProtoMember(4, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } - - [global::ProtoBuf.ProtoMember(5, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } - - [global::ProtoBuf.ProtoMember(6, Name = @"country_id", IsRequired = true)] - public string CountryId { get; set; } - - [global::ProtoBuf.ProtoMember(7, Name = @"mydon_name", IsRequired = true)] - public string MydonName { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class MydonEntryResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"com_svr_result")] - public uint ComSvrResult - { - get => __pbn__ComSvrResult.GetValueOrDefault(); - set => __pbn__ComSvrResult = value; - } - public bool ShouldSerializeComSvrResult() => __pbn__ComSvrResult != null; - public void ResetComSvrResult() => __pbn__ComSvrResult = null; - private uint? __pbn__ComSvrResult; - - [global::ProtoBuf.ProtoMember(3, Name = @"mb_id")] - public uint MbId - { - get => __pbn__MbId.GetValueOrDefault(); - set => __pbn__MbId = value; - } - public bool ShouldSerializeMbId() => __pbn__MbId != null; - public void ResetMbId() => __pbn__MbId = null; - private uint? __pbn__MbId; - - [global::ProtoBuf.ProtoMember(4, Name = @"baid")] - public uint Baid - { - get => __pbn__Baid.GetValueOrDefault(); - set => __pbn__Baid = value; - } - public bool ShouldSerializeBaid() => __pbn__Baid != null; - public void ResetBaid() => __pbn__Baid = null; - private uint? __pbn__Baid; - - [global::ProtoBuf.ProtoMember(5, Name = @"access_code")] - [global::System.ComponentModel.DefaultValue("")] - public string AccessCode - { - get => __pbn__AccessCode ?? ""; - set => __pbn__AccessCode = value; - } - public bool ShouldSerializeAccessCode() => __pbn__AccessCode != null; - public void ResetAccessCode() => __pbn__AccessCode = null; - private string __pbn__AccessCode; - - [global::ProtoBuf.ProtoMember(6, Name = @"is_publish")] - public bool IsPublish - { - get => __pbn__IsPublish.GetValueOrDefault(); - set => __pbn__IsPublish = value; - } - public bool ShouldSerializeIsPublish() => __pbn__IsPublish != null; - public void ResetIsPublish() => __pbn__IsPublish = null; - private bool? __pbn__IsPublish; - - [global::ProtoBuf.ProtoMember(7, Name = @"card_own_num")] - public uint CardOwnNum - { - get => __pbn__CardOwnNum.GetValueOrDefault(); - set => __pbn__CardOwnNum = value; - } - public bool ShouldSerializeCardOwnNum() => __pbn__CardOwnNum != null; - public void ResetCardOwnNum() => __pbn__CardOwnNum = null; - private uint? __pbn__CardOwnNum; - - [global::ProtoBuf.ProtoMember(8, Name = @"reg_country_id")] - [global::System.ComponentModel.DefaultValue("")] - public string RegCountryId - { - get => __pbn__RegCountryId ?? ""; - set => __pbn__RegCountryId = value; - } - public bool ShouldSerializeRegCountryId() => __pbn__RegCountryId != null; - public void ResetRegCountryId() => __pbn__RegCountryId = null; - private string __pbn__RegCountryId; - - [global::ProtoBuf.ProtoMember(9, Name = @"purpose_id")] - public uint PurposeId - { - get => __pbn__PurposeId.GetValueOrDefault(); - set => __pbn__PurposeId = value; - } - public bool ShouldSerializePurposeId() => __pbn__PurposeId != null; - public void ResetPurposeId() => __pbn__PurposeId = null; - private uint? __pbn__PurposeId; - - [global::ProtoBuf.ProtoMember(10, Name = @"region_id")] - public uint RegionId - { - get => __pbn__RegionId.GetValueOrDefault(); - set => __pbn__RegionId = value; - } - public bool ShouldSerializeRegionId() => __pbn__RegionId != null; - public void ResetRegionId() => __pbn__RegionId = null; - private uint? __pbn__RegionId; - - [global::ProtoBuf.ProtoMember(11, Name = @"mydon_name")] - [global::System.ComponentModel.DefaultValue("")] - public string MydonName - { - get => __pbn__MydonName ?? ""; - set => __pbn__MydonName = value; - } - public bool ShouldSerializeMydonName() => __pbn__MydonName != null; - public void ResetMydonName() => __pbn__MydonName = null; - private string __pbn__MydonName; - - [global::ProtoBuf.ProtoMember(12, Name = @"accesstoken")] - [global::System.ComponentModel.DefaultValue("")] - public string Accesstoken - { - get => __pbn__Accesstoken ?? ""; - set => __pbn__Accesstoken = value; - } - public bool ShouldSerializeAccesstoken() => __pbn__Accesstoken != null; - public void ResetAccesstoken() => __pbn__Accesstoken = null; - private string __pbn__Accesstoken; - - [global::ProtoBuf.ProtoMember(13, Name = @"content_info")] - public byte[] ContentInfo - { - get => __pbn__ContentInfo; - set => __pbn__ContentInfo = value; - } - public bool ShouldSerializeContentInfo() => __pbn__ContentInfo != null; - public void ResetContentInfo() => __pbn__ContentInfo = null; - private byte[] __pbn__ContentInfo; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class UserDataRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"baid", IsRequired = true)] - public uint Baid { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class UserDataResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"tone_flg")] - public byte[] ToneFlg - { - get => __pbn__ToneFlg; - set => __pbn__ToneFlg = value; - } - public bool ShouldSerializeToneFlg() => __pbn__ToneFlg != null; - public void ResetToneFlg() => __pbn__ToneFlg = null; - private byte[] __pbn__ToneFlg; - - [global::ProtoBuf.ProtoMember(3, Name = @"title_flg")] - public byte[] TitleFlg - { - get => __pbn__TitleFlg; - set => __pbn__TitleFlg = value; - } - public bool ShouldSerializeTitleFlg() => __pbn__TitleFlg != null; - public void ResetTitleFlg() => __pbn__TitleFlg = null; - private byte[] __pbn__TitleFlg; - - [global::ProtoBuf.ProtoMember(4, Name = @"release_song_flg")] - public byte[] ReleaseSongFlg - { - get => __pbn__ReleaseSongFlg; - set => __pbn__ReleaseSongFlg = value; - } - public bool ShouldSerializeReleaseSongFlg() => __pbn__ReleaseSongFlg != null; - public void ResetReleaseSongFlg() => __pbn__ReleaseSongFlg = null; - private byte[] __pbn__ReleaseSongFlg; - - [global::ProtoBuf.ProtoMember(5, Name = @"ura_release_song_flg")] - public byte[] UraReleaseSongFlg - { - get => __pbn__UraReleaseSongFlg; - set => __pbn__UraReleaseSongFlg = value; - } - public bool ShouldSerializeUraReleaseSongFlg() => __pbn__UraReleaseSongFlg != null; - public void ResetUraReleaseSongFlg() => __pbn__UraReleaseSongFlg = null; - private byte[] __pbn__UraReleaseSongFlg; - - [global::ProtoBuf.ProtoMember(6, Name = @"ary_favorite_song_no")] - public uint[] AryFavoriteSongNoes { get; set; } - - [global::ProtoBuf.ProtoMember(7, Name = @"ary_recent_song_no")] - public uint[] AryRecentSongNoes { get; set; } - - [global::ProtoBuf.ProtoMember(8, Name = @"disp_score_type")] - public uint DispScoreType - { - get => __pbn__DispScoreType.GetValueOrDefault(); - set => __pbn__DispScoreType = value; - } - public bool ShouldSerializeDispScoreType() => __pbn__DispScoreType != null; - public void ResetDispScoreType() => __pbn__DispScoreType = null; - private uint? __pbn__DispScoreType; - - [global::ProtoBuf.ProtoMember(9, Name = @"disp_level_chassis")] - public uint DispLevelChassis - { - get => __pbn__DispLevelChassis.GetValueOrDefault(); - set => __pbn__DispLevelChassis = value; - } - public bool ShouldSerializeDispLevelChassis() => __pbn__DispLevelChassis != null; - public void ResetDispLevelChassis() => __pbn__DispLevelChassis = null; - private uint? __pbn__DispLevelChassis; - - [global::ProtoBuf.ProtoMember(10, Name = @"disp_level_self")] - public uint DispLevelSelf - { - get => __pbn__DispLevelSelf.GetValueOrDefault(); - set => __pbn__DispLevelSelf = value; - } - public bool ShouldSerializeDispLevelSelf() => __pbn__DispLevelSelf != null; - public void ResetDispLevelSelf() => __pbn__DispLevelSelf = null; - private uint? __pbn__DispLevelSelf; - - [global::ProtoBuf.ProtoMember(11, Name = @"is_disp_tojiru_on")] - public bool IsDispTojiruOn - { - get => __pbn__IsDispTojiruOn.GetValueOrDefault(); - set => __pbn__IsDispTojiruOn = value; - } - public bool ShouldSerializeIsDispTojiruOn() => __pbn__IsDispTojiruOn != null; - public void ResetIsDispTojiruOn() => __pbn__IsDispTojiruOn = null; - private bool? __pbn__IsDispTojiruOn; - - [global::ProtoBuf.ProtoMember(12, Name = @"default_option_setting")] - public byte[] DefaultOptionSetting - { - get => __pbn__DefaultOptionSetting; - set => __pbn__DefaultOptionSetting = value; - } - public bool ShouldSerializeDefaultOptionSetting() => __pbn__DefaultOptionSetting != null; - public void ResetDefaultOptionSetting() => __pbn__DefaultOptionSetting = null; - private byte[] __pbn__DefaultOptionSetting; - - [global::ProtoBuf.ProtoMember(13, Name = @"notes_position", DataFormat = global::ProtoBuf.DataFormat.ZigZag)] - public int NotesPosition - { - get => __pbn__NotesPosition.GetValueOrDefault(); - set => __pbn__NotesPosition = value; - } - public bool ShouldSerializeNotesPosition() => __pbn__NotesPosition != null; - public void ResetNotesPosition() => __pbn__NotesPosition = null; - private int? __pbn__NotesPosition; - - [global::ProtoBuf.ProtoMember(14, Name = @"is_voice_on")] - public bool IsVoiceOn - { - get => __pbn__IsVoiceOn.GetValueOrDefault(); - set => __pbn__IsVoiceOn = value; - } - public bool ShouldSerializeIsVoiceOn() => __pbn__IsVoiceOn != null; - public void ResetIsVoiceOn() => __pbn__IsVoiceOn = null; - private bool? __pbn__IsVoiceOn; - - [global::ProtoBuf.ProtoMember(15, Name = @"is_skip_on")] - public bool IsSkipOn - { - get => __pbn__IsSkipOn.GetValueOrDefault(); - set => __pbn__IsSkipOn = value; - } - public bool ShouldSerializeIsSkipOn() => __pbn__IsSkipOn != null; - public void ResetIsSkipOn() => __pbn__IsSkipOn = null; - private bool? __pbn__IsSkipOn; - - [global::ProtoBuf.ProtoMember(16, Name = @"difficulty_played_course")] - public uint DifficultyPlayedCourse - { - get => __pbn__DifficultyPlayedCourse.GetValueOrDefault(); - set => __pbn__DifficultyPlayedCourse = value; - } - public bool ShouldSerializeDifficultyPlayedCourse() => __pbn__DifficultyPlayedCourse != null; - public void ResetDifficultyPlayedCourse() => __pbn__DifficultyPlayedCourse = null; - private uint? __pbn__DifficultyPlayedCourse; - - [global::ProtoBuf.ProtoMember(17, Name = @"difficulty_played_star")] - public uint DifficultyPlayedStar - { - get => __pbn__DifficultyPlayedStar.GetValueOrDefault(); - set => __pbn__DifficultyPlayedStar = value; - } - public bool ShouldSerializeDifficultyPlayedStar() => __pbn__DifficultyPlayedStar != null; - public void ResetDifficultyPlayedStar() => __pbn__DifficultyPlayedStar = null; - private uint? __pbn__DifficultyPlayedStar; - - [global::ProtoBuf.ProtoMember(18, Name = @"total_credit_cnt")] - public uint TotalCreditCnt - { - get => __pbn__TotalCreditCnt.GetValueOrDefault(); - set => __pbn__TotalCreditCnt = value; - } - public bool ShouldSerializeTotalCreditCnt() => __pbn__TotalCreditCnt != null; - public void ResetTotalCreditCnt() => __pbn__TotalCreditCnt = null; - private uint? __pbn__TotalCreditCnt; - - [global::ProtoBuf.ProtoMember(19, Name = @"song_recent_cnt")] - public uint SongRecentCnt - { - get => __pbn__SongRecentCnt.GetValueOrDefault(); - set => __pbn__SongRecentCnt = value; - } - public bool ShouldSerializeSongRecentCnt() => __pbn__SongRecentCnt != null; - public void ResetSongRecentCnt() => __pbn__SongRecentCnt = null; - private uint? __pbn__SongRecentCnt; - - [global::ProtoBuf.ProtoMember(20, Name = @"is_challengecompe")] - public bool IsChallengecompe - { - get => __pbn__IsChallengecompe.GetValueOrDefault(); - set => __pbn__IsChallengecompe = value; - } - public bool ShouldSerializeIsChallengecompe() => __pbn__IsChallengecompe != null; - public void ResetIsChallengecompe() => __pbn__IsChallengecompe = null; - private bool? __pbn__IsChallengecompe; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class PlayResultRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"baid_conf", IsRequired = true)] - public uint BaidConf { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"chassis_id_conf", IsRequired = true)] - public string ChassisIdConf { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"shop_id_conf", IsRequired = true)] - public string ShopIdConf { get; set; } - - [global::ProtoBuf.ProtoMember(4, Name = @"play_datetime_conf", IsRequired = true)] - public string PlayDatetimeConf { get; set; } - - [global::ProtoBuf.ProtoMember(5, Name = @"playresult_data", IsRequired = true)] - public byte[] PlayresultData { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class PlayResultResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class PlayResultDataRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"baid", IsRequired = true)] - public uint Baid { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } - - [global::ProtoBuf.ProtoMember(4, Name = @"play_datetime", IsRequired = true)] - public string PlayDatetime { get; set; } - - [global::ProtoBuf.ProtoMember(5, Name = @"is_right", IsRequired = true)] - public bool IsRight { get; set; } - - [global::ProtoBuf.ProtoMember(6, Name = @"card_type", IsRequired = true)] - public uint CardType { get; set; } - - [global::ProtoBuf.ProtoMember(7, Name = @"is_two_players", IsRequired = true)] - public bool IsTwoPlayers { get; set; } - - [global::ProtoBuf.ProtoMember(8, Name = @"ary_stage_info")] - public global::System.Collections.Generic.List AryStageInfoes { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(9, Name = @"release_song_no")] - public uint[] ReleaseSongNoes { get; set; } - - [global::ProtoBuf.ProtoMember(10, Name = @"ura_release_song_no")] - public uint[] UraReleaseSongNoes { get; set; } - - [global::ProtoBuf.ProtoMember(11, Name = @"get_tone_no")] - public uint[] GetToneNoes { get; set; } - - [global::ProtoBuf.ProtoMember(12, Name = @"get_costume_no_1")] - public uint[] GetCostumeNo1s { get; set; } - - [global::ProtoBuf.ProtoMember(13, Name = @"get_costume_no_2")] - public uint[] GetCostumeNo2s { get; set; } - - [global::ProtoBuf.ProtoMember(14, Name = @"get_costume_no_3")] - public uint[] GetCostumeNo3s { get; set; } - - [global::ProtoBuf.ProtoMember(15, Name = @"get_costume_no_4")] - public uint[] GetCostumeNo4s { get; set; } - - [global::ProtoBuf.ProtoMember(16, Name = @"get_costume_no_5")] - public uint[] GetCostumeNo5s { get; set; } - - [global::ProtoBuf.ProtoMember(17, Name = @"get_title_no")] - public uint[] GetTitleNoes { get; set; } - - [global::ProtoBuf.ProtoMember(18, Name = @"get_generic_info_no")] - public uint[] GetGenericInfoNoes { get; set; } - - [global::ProtoBuf.ProtoMember(19, Name = @"ary_play_costume", IsRequired = true)] - public CostumeData AryPlayCostume { get; set; } - - [global::ProtoBuf.ProtoMember(20, Name = @"ary_current_costume", IsRequired = true)] - public CostumeData AryCurrentCostume { get; set; } - - [global::ProtoBuf.ProtoMember(21, Name = @"title")] - [global::System.ComponentModel.DefaultValue("")] - public string Title - { - get => __pbn__Title ?? ""; - set => __pbn__Title = value; - } - public bool ShouldSerializeTitle() => __pbn__Title != null; - public void ResetTitle() => __pbn__Title = null; - private string __pbn__Title; - - [global::ProtoBuf.ProtoMember(22, Name = @"titleplate_id")] - public uint TitleplateId - { - get => __pbn__TitleplateId.GetValueOrDefault(); - set => __pbn__TitleplateId = value; - } - public bool ShouldSerializeTitleplateId() => __pbn__TitleplateId != null; - public void ResetTitleplateId() => __pbn__TitleplateId = null; - private uint? __pbn__TitleplateId; - - [global::ProtoBuf.ProtoMember(23, Name = @"play_mode", IsRequired = true)] - public uint PlayMode { get; set; } - - [global::ProtoBuf.ProtoMember(24, Name = @"dan_id")] - public uint DanId - { - get => __pbn__DanId.GetValueOrDefault(); - set => __pbn__DanId = value; - } - public bool ShouldSerializeDanId() => __pbn__DanId != null; - public void ResetDanId() => __pbn__DanId = null; - private uint? __pbn__DanId; - - [global::ProtoBuf.ProtoMember(25, Name = @"dan_result")] - public uint DanResult - { - get => __pbn__DanResult.GetValueOrDefault(); - set => __pbn__DanResult = value; - } - public bool ShouldSerializeDanResult() => __pbn__DanResult != null; - public void ResetDanResult() => __pbn__DanResult = null; - private uint? __pbn__DanResult; - - [global::ProtoBuf.ProtoMember(26, Name = @"soul_gauge_total")] - public uint SoulGaugeTotal - { - get => __pbn__SoulGaugeTotal.GetValueOrDefault(); - set => __pbn__SoulGaugeTotal = value; - } - public bool ShouldSerializeSoulGaugeTotal() => __pbn__SoulGaugeTotal != null; - public void ResetSoulGaugeTotal() => __pbn__SoulGaugeTotal = null; - private uint? __pbn__SoulGaugeTotal; - - [global::ProtoBuf.ProtoMember(27, Name = @"combo_cnt_total")] - public uint ComboCntTotal - { - get => __pbn__ComboCntTotal.GetValueOrDefault(); - set => __pbn__ComboCntTotal = value; - } - public bool ShouldSerializeComboCntTotal() => __pbn__ComboCntTotal != null; - public void ResetComboCntTotal() => __pbn__ComboCntTotal = null; - private uint? __pbn__ComboCntTotal; - - [global::ProtoBuf.ProtoMember(28, Name = @"is_not_recorded_dan")] - public bool IsNotRecordedDan - { - get => __pbn__IsNotRecordedDan.GetValueOrDefault(); - set => __pbn__IsNotRecordedDan = value; - } - public bool ShouldSerializeIsNotRecordedDan() => __pbn__IsNotRecordedDan != null; - public void ResetIsNotRecordedDan() => __pbn__IsNotRecordedDan = null; - private bool? __pbn__IsNotRecordedDan; - - [global::ProtoBuf.ProtoMember(29, Name = @"area_code", IsRequired = true)] - public uint AreaCode { get; set; } - - [global::ProtoBuf.ProtoMember(30, Name = @"reserved", IsRequired = true)] - public byte[] Reserved { get; set; } - - [global::ProtoBuf.ProtoMember(31, Name = @"tournament_mode")] - public uint TournamentMode - { - get => __pbn__TournamentMode.GetValueOrDefault(); - set => __pbn__TournamentMode = value; - } - public bool ShouldSerializeTournamentMode() => __pbn__TournamentMode != null; - public void ResetTournamentMode() => __pbn__TournamentMode = null; - private uint? __pbn__TournamentMode; - - [global::ProtoBuf.ProtoMember(32, Name = @"accesstoken")] - [global::System.ComponentModel.DefaultValue("")] - public string Accesstoken - { - get => __pbn__Accesstoken ?? ""; - set => __pbn__Accesstoken = value; - } - public bool ShouldSerializeAccesstoken() => __pbn__Accesstoken != null; - public void ResetAccesstoken() => __pbn__Accesstoken = null; - private string __pbn__Accesstoken; - - [global::ProtoBuf.ProtoMember(33, Name = @"content_info")] - public byte[] ContentInfo - { - get => __pbn__ContentInfo; - set => __pbn__ContentInfo = value; - } - public bool ShouldSerializeContentInfo() => __pbn__ContentInfo != null; - public void ResetContentInfo() => __pbn__ContentInfo = null; - private byte[] __pbn__ContentInfo; - - [global::ProtoBuf.ProtoMember(34, Name = @"difficulty_played_course")] - public uint DifficultyPlayedCourse - { - get => __pbn__DifficultyPlayedCourse.GetValueOrDefault(); - set => __pbn__DifficultyPlayedCourse = value; - } - public bool ShouldSerializeDifficultyPlayedCourse() => __pbn__DifficultyPlayedCourse != null; - public void ResetDifficultyPlayedCourse() => __pbn__DifficultyPlayedCourse = null; - private uint? __pbn__DifficultyPlayedCourse; - - [global::ProtoBuf.ProtoMember(35, Name = @"difficulty_played_star")] - public uint DifficultyPlayedStar - { - get => __pbn__DifficultyPlayedStar.GetValueOrDefault(); - set => __pbn__DifficultyPlayedStar = value; - } - public bool ShouldSerializeDifficultyPlayedStar() => __pbn__DifficultyPlayedStar != null; - public void ResetDifficultyPlayedStar() => __pbn__DifficultyPlayedStar = null; - private uint? __pbn__DifficultyPlayedStar; - - [global::ProtoBuf.ProtoMember(36, Name = @"input_median")] - [global::System.ComponentModel.DefaultValue("")] - public string InputMedian - { - get => __pbn__InputMedian ?? ""; - set => __pbn__InputMedian = value; - } - public bool ShouldSerializeInputMedian() => __pbn__InputMedian != null; - public void ResetInputMedian() => __pbn__InputMedian = null; - private string __pbn__InputMedian; - - [global::ProtoBuf.ProtoMember(37, Name = @"input_variance")] - [global::System.ComponentModel.DefaultValue("")] - public string InputVariance - { - get => __pbn__InputVariance ?? ""; - set => __pbn__InputVariance = value; - } - public bool ShouldSerializeInputVariance() => __pbn__InputVariance != null; - public void ResetInputVariance() => __pbn__InputVariance = null; - private string __pbn__InputVariance; - - [global::ProtoBuf.ProtoContract()] - public partial class StageData : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"song_no", IsRequired = true)] - public uint SongNo { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"level", IsRequired = true)] - public uint Level { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"stage_mode", IsRequired = true)] - public uint StageMode { get; set; } - - [global::ProtoBuf.ProtoMember(4, Name = @"play_result", IsRequired = true)] - public uint PlayResult { get; set; } - - [global::ProtoBuf.ProtoMember(5, Name = @"play_score", IsRequired = true)] - public uint PlayScore { get; set; } - - [global::ProtoBuf.ProtoMember(6, Name = @"score_rate", IsRequired = true)] - public uint ScoreRate { get; set; } - - [global::ProtoBuf.ProtoMember(7, Name = @"score_rank", IsRequired = true)] - public uint ScoreRank { get; set; } - - [global::ProtoBuf.ProtoMember(8, Name = @"good_cnt", IsRequired = true)] - public uint GoodCnt { get; set; } - - [global::ProtoBuf.ProtoMember(9, Name = @"ok_cnt", IsRequired = true)] - public uint OkCnt { get; set; } - - [global::ProtoBuf.ProtoMember(10, Name = @"ng_cnt", IsRequired = true)] - public uint NgCnt { get; set; } - - [global::ProtoBuf.ProtoMember(11, Name = @"pound_cnt", IsRequired = true)] - public uint PoundCnt { get; set; } - - [global::ProtoBuf.ProtoMember(12, Name = @"combo_cnt", IsRequired = true)] - public uint ComboCnt { get; set; } - - [global::ProtoBuf.ProtoMember(13, Name = @"hit_cnt")] - public uint HitCnt - { - get => __pbn__HitCnt.GetValueOrDefault(); - set => __pbn__HitCnt = value; - } - public bool ShouldSerializeHitCnt() => __pbn__HitCnt != null; - public void ResetHitCnt() => __pbn__HitCnt = null; - private uint? __pbn__HitCnt; - - [global::ProtoBuf.ProtoMember(14, Name = @"option_flg", IsRequired = true)] - public byte[] OptionFlg { get; set; } - - [global::ProtoBuf.ProtoMember(15, Name = @"tone_flg", IsRequired = true)] - public byte[] ToneFlg { get; set; } - - [global::ProtoBuf.ProtoMember(16, Name = @"notes_position", DataFormat = global::ProtoBuf.DataFormat.ZigZag, IsRequired = true)] - public int NotesPosition { get; set; } + [global::ProtoBuf.ProtoMember(3, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } - [global::ProtoBuf.ProtoMember(17, Name = @"is_voice_on", IsRequired = true)] - public bool IsVoiceOn { get; set; } + [global::ProtoBuf.ProtoMember(4, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } - [global::ProtoBuf.ProtoMember(18, Name = @"is_skip_on", IsRequired = true)] - public bool IsSkipOn { get; set; } + } - [global::ProtoBuf.ProtoMember(19, Name = @"is_skip_use", IsRequired = true)] - public bool IsSkipUse { get; set; } + [global::ProtoBuf.ProtoContract()] + public partial class ChallengeCompeResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoMember(20, Name = @"support_level", IsRequired = true)] - public uint SupportLevel { get; set; } + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } - [global::ProtoBuf.ProtoMember(21, Name = @"ary_challenge_id")] - public global::System.Collections.Generic.List AryChallengeIds { get; } = new global::System.Collections.Generic.List(); + [global::ProtoBuf.ProtoMember(2, Name = @"ary_challenge_stat")] + public global::System.Collections.Generic.List AryChallengeStats { get; } = new global::System.Collections.Generic.List(); + + [global::ProtoBuf.ProtoMember(3, Name = @"ary_user_compe_stat")] + public global::System.Collections.Generic.List AryUserCompeStats { get; } = new global::System.Collections.Generic.List(); + + [global::ProtoBuf.ProtoMember(4, Name = @"ary_bng_compe_stat")] + public global::System.Collections.Generic.List AryBngCompeStats { get; } = new global::System.Collections.Generic.List(); + + [global::ProtoBuf.ProtoContract()] + public partial class CompeData : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"compe_id", IsRequired = true)] + public uint CompeId { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"ary_track_stat")] + public global::System.Collections.Generic.List AryTrackStats { get; } = new global::System.Collections.Generic.List(); + + [global::ProtoBuf.ProtoContract()] + public partial class TracksData : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"song_no", IsRequired = true)] + public uint SongNo { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"level", IsRequired = true)] + public uint Level { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"option_flg", IsRequired = true)] + public byte[] OptionFlg { get; set; } + + [global::ProtoBuf.ProtoMember(4, Name = @"high_score", IsRequired = true)] + public uint HighScore { get; set; } + + } + + } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class GetAiDataRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"wechat_qr_str", IsRequired = true)] + public string WechatQrStr { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } + + [global::ProtoBuf.ProtoMember(4, Name = @"baid", IsRequired = true)] + public ulong Baid { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class GetAiDataResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"total_winnings")] + public uint TotalWinnings + { + get => __pbn__TotalWinnings.GetValueOrDefault(); + set => __pbn__TotalWinnings = value; + } + public bool ShouldSerializeTotalWinnings() => __pbn__TotalWinnings != null; + public void ResetTotalWinnings() => __pbn__TotalWinnings = null; + private uint? __pbn__TotalWinnings; + + [global::ProtoBuf.ProtoMember(3, Name = @"input_median")] + [global::System.ComponentModel.DefaultValue("")] + public string InputMedian + { + get => __pbn__InputMedian ?? ""; + set => __pbn__InputMedian = value; + } + public bool ShouldSerializeInputMedian() => __pbn__InputMedian != null; + public void ResetInputMedian() => __pbn__InputMedian = null; + private string __pbn__InputMedian; + + [global::ProtoBuf.ProtoMember(4, Name = @"input_variance")] + [global::System.ComponentModel.DefaultValue("")] + public string InputVariance + { + get => __pbn__InputVariance ?? ""; + set => __pbn__InputVariance = value; + } + public bool ShouldSerializeInputVariance() => __pbn__InputVariance != null; + public void ResetInputVariance() => __pbn__InputVariance = null; + private string __pbn__InputVariance; + + } + + [global::ProtoBuf.ProtoContract()] + public partial class GetAiScoreRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"wechat_qr_str", IsRequired = true)] + public string WechatQrStr { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } + + [global::ProtoBuf.ProtoMember(4, Name = @"baid", IsRequired = true)] + public ulong Baid { get; set; } + + [global::ProtoBuf.ProtoMember(5, Name = @"song_no", IsRequired = true)] + public uint SongNo { get; set; } + + [global::ProtoBuf.ProtoMember(6, Name = @"level", IsRequired = true)] + public uint Level { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class GetAiScoreResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"ary_best_section_data")] + public global::System.Collections.Generic.List AryBestSectionDatas { get; } = new global::System.Collections.Generic.List(); + + [global::ProtoBuf.ProtoContract()] + public partial class AiBestSectionData : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"section_no", IsRequired = true)] + public uint SectionNo { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"crown")] + public uint Crown + { + get => __pbn__Crown.GetValueOrDefault(); + set => __pbn__Crown = value; + } + public bool ShouldSerializeCrown() => __pbn__Crown != null; + public void ResetCrown() => __pbn__Crown = null; + private uint? __pbn__Crown; + + [global::ProtoBuf.ProtoMember(3, Name = @"score")] + public uint Score + { + get => __pbn__Score.GetValueOrDefault(); + set => __pbn__Score = value; + } + public bool ShouldSerializeScore() => __pbn__Score != null; + public void ResetScore() => __pbn__Score = null; + private uint? __pbn__Score; + + [global::ProtoBuf.ProtoMember(4, Name = @"good_cnt", IsRequired = true)] + public uint GoodCnt { get; set; } + + [global::ProtoBuf.ProtoMember(5, Name = @"ok_cnt", IsRequired = true)] + public uint OkCnt { get; set; } - [global::ProtoBuf.ProtoMember(22, Name = @"ary_user_compe_id")] - public global::System.Collections.Generic.List AryUserCompeIds { get; } = new global::System.Collections.Generic.List(); + [global::ProtoBuf.ProtoMember(6, Name = @"ng_cnt", IsRequired = true)] + public uint NgCnt { get; set; } + + [global::ProtoBuf.ProtoMember(7, Name = @"pound_cnt", IsRequired = true)] + public uint PoundCnt { get; set; } + + } - [global::ProtoBuf.ProtoMember(23, Name = @"ary_bng_compe_id")] - public global::System.Collections.Generic.List AryBngCompeIds { get; } = new global::System.Collections.Generic.List(); + } - [global::ProtoBuf.ProtoMember(24, Name = @"music_categ", IsRequired = true)] - public uint MusicCateg { get; set; } + [global::ProtoBuf.ProtoContract()] + public partial class GetTokenCountRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoMember(25, Name = @"is_favorite", IsRequired = true)] - public bool IsFavorite { get; set; } + [global::ProtoBuf.ProtoMember(1, Name = @"wechat_qr_str", IsRequired = true)] + public string WechatQrStr { get; set; } - [global::ProtoBuf.ProtoMember(26, Name = @"is_recent", IsRequired = true)] - public bool IsRecent { get; set; } + [global::ProtoBuf.ProtoMember(2, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } - [global::ProtoBuf.ProtoMember(27, Name = @"selected_folder_id", IsRequired = true)] - public uint SelectedFolderId { get; set; } + [global::ProtoBuf.ProtoMember(3, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } - [global::ProtoBuf.ProtoMember(28, Name = @"is_papamama", IsRequired = true)] - public bool IsPapamama { get; set; } + [global::ProtoBuf.ProtoMember(4, Name = @"baid", IsRequired = true)] + public ulong Baid { get; set; } - [global::ProtoBuf.ProtoMember(29, Name = @"star_level", IsRequired = true)] - public uint StarLevel { get; set; } + } - [global::ProtoBuf.ProtoMember(30, Name = @"is_win")] - public bool IsWin - { - get => __pbn__IsWin.GetValueOrDefault(); - set => __pbn__IsWin = value; - } - public bool ShouldSerializeIsWin() => __pbn__IsWin != null; - public void ResetIsWin() => __pbn__IsWin = null; - private bool? __pbn__IsWin; - - [global::ProtoBuf.ProtoMember(31, Name = @"ary_section_data")] - public global::System.Collections.Generic.List ArySectionDatas { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class ResultcompeData : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"compe_id", IsRequired = true)] - public uint CompeId { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"track_no", IsRequired = true)] - public uint TrackNo { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class AiStageSectionData : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"is_win", IsRequired = true)] - public bool IsWin { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"crown", IsRequired = true)] - public uint Crown { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"score", IsRequired = true)] - public uint Score { get; set; } - - [global::ProtoBuf.ProtoMember(4, Name = @"good_cnt", IsRequired = true)] - public uint GoodCnt { get; set; } - - [global::ProtoBuf.ProtoMember(5, Name = @"ok_cnt", IsRequired = true)] - public uint OkCnt { get; set; } - - [global::ProtoBuf.ProtoMember(6, Name = @"ng_cnt", IsRequired = true)] - public uint NgCnt { get; set; } - - [global::ProtoBuf.ProtoMember(7, Name = @"pound_cnt", IsRequired = true)] - public uint PoundCnt { get; set; } - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CostumeData : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"costume_1")] - public uint Costume1 - { - get => __pbn__Costume1.GetValueOrDefault(); - set => __pbn__Costume1 = value; - } - public bool ShouldSerializeCostume1() => __pbn__Costume1 != null; - public void ResetCostume1() => __pbn__Costume1 = null; - private uint? __pbn__Costume1; - - [global::ProtoBuf.ProtoMember(2, Name = @"costume_2")] - public uint Costume2 - { - get => __pbn__Costume2.GetValueOrDefault(); - set => __pbn__Costume2 = value; - } - public bool ShouldSerializeCostume2() => __pbn__Costume2 != null; - public void ResetCostume2() => __pbn__Costume2 = null; - private uint? __pbn__Costume2; - - [global::ProtoBuf.ProtoMember(3, Name = @"costume_3")] - public uint Costume3 - { - get => __pbn__Costume3.GetValueOrDefault(); - set => __pbn__Costume3 = value; - } - public bool ShouldSerializeCostume3() => __pbn__Costume3 != null; - public void ResetCostume3() => __pbn__Costume3 = null; - private uint? __pbn__Costume3; - - [global::ProtoBuf.ProtoMember(4, Name = @"costume_4")] - public uint Costume4 - { - get => __pbn__Costume4.GetValueOrDefault(); - set => __pbn__Costume4 = value; - } - public bool ShouldSerializeCostume4() => __pbn__Costume4 != null; - public void ResetCostume4() => __pbn__Costume4 = null; - private uint? __pbn__Costume4; - - [global::ProtoBuf.ProtoMember(5, Name = @"costume_5")] - public uint Costume5 - { - get => __pbn__Costume5.GetValueOrDefault(); - set => __pbn__Costume5 = value; - } - public bool ShouldSerializeCostume5() => __pbn__Costume5 != null; - public void ResetCostume5() => __pbn__Costume5 = null; - private uint? __pbn__Costume5; - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class SelfBestRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"baid", IsRequired = true)] - public uint Baid { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } - - [global::ProtoBuf.ProtoMember(4, Name = @"level")] - public uint Level - { - get => __pbn__Level.GetValueOrDefault(); - set => __pbn__Level = value; - } - public bool ShouldSerializeLevel() => __pbn__Level != null; - public void ResetLevel() => __pbn__Level = null; - private uint? __pbn__Level; - - [global::ProtoBuf.ProtoMember(5, Name = @"ary_song_no")] - public uint[] ArySongNoes { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class SelfBestResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"level")] - public uint Level - { - get => __pbn__Level.GetValueOrDefault(); - set => __pbn__Level = value; - } - public bool ShouldSerializeLevel() => __pbn__Level != null; - public void ResetLevel() => __pbn__Level = null; - private uint? __pbn__Level; - - [global::ProtoBuf.ProtoMember(3, Name = @"ary_selfbest_score")] - public global::System.Collections.Generic.List ArySelfbestScores { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class SelfBestData : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"song_no", IsRequired = true)] - public uint SongNo { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"self_best_score", IsRequired = true)] - public uint SelfBestScore { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"self_best_score_rate", IsRequired = true)] - public uint SelfBestScoreRate { get; set; } - - [global::ProtoBuf.ProtoMember(4, Name = @"ura_best_score", IsRequired = true)] - public uint UraBestScore { get; set; } - - [global::ProtoBuf.ProtoMember(5, Name = @"ura_best_score_rate", IsRequired = true)] - public uint UraBestScoreRate { get; set; } - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CrownsDataRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"baid", IsRequired = true)] - public uint Baid { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class CrownsDataResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoContract()] + public partial class GetTokenCountResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"crown_flg")] - public byte[] CrownFlg - { - get => __pbn__CrownFlg; - set => __pbn__CrownFlg = value; - } - public bool ShouldSerializeCrownFlg() => __pbn__CrownFlg != null; - public void ResetCrownFlg() => __pbn__CrownFlg = null; - private byte[] __pbn__CrownFlg; - - [global::ProtoBuf.ProtoMember(3, Name = @"dondaful_crown_flg")] - public byte[] DondafulCrownFlg - { - get => __pbn__DondafulCrownFlg; - set => __pbn__DondafulCrownFlg = value; - } - public bool ShouldSerializeDondafulCrownFlg() => __pbn__DondafulCrownFlg != null; - public void ResetDondafulCrownFlg() => __pbn__DondafulCrownFlg = null; - private byte[] __pbn__DondafulCrownFlg; + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } - } + [global::ProtoBuf.ProtoMember(2, Name = @"ary_token_count_data")] + public global::System.Collections.Generic.List AryTokenCountDatas { get; } = new global::System.Collections.Generic.List(); - [global::ProtoBuf.ProtoContract()] - public partial class ChallengeCompeRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoContract()] + public partial class TokenCountData : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoMember(1, Name = @"baid", IsRequired = true)] - public uint Baid { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class ChallengeCompeResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"ary_challenge_stat")] - public global::System.Collections.Generic.List AryChallengeStats { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(3, Name = @"ary_user_compe_stat")] - public global::System.Collections.Generic.List AryUserCompeStats { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoMember(4, Name = @"ary_bng_compe_stat")] - public global::System.Collections.Generic.List AryBngCompeStats { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class CompeData : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"compe_id", IsRequired = true)] - public uint CompeId { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"ary_track_stat")] - public global::System.Collections.Generic.List AryTrackStats { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class TracksData : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"song_no", IsRequired = true)] - public uint SongNo { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"level", IsRequired = true)] - public uint Level { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"option_flg", IsRequired = true)] - public byte[] OptionFlg { get; set; } - - [global::ProtoBuf.ProtoMember(4, Name = @"high_score", IsRequired = true)] - public uint HighScore { get; set; } - - } - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class GetAiDataRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"baid", IsRequired = true)] - public uint Baid { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class GetAiDataResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"total_winnings")] - public uint TotalWinnings - { - get => __pbn__TotalWinnings.GetValueOrDefault(); - set => __pbn__TotalWinnings = value; - } - public bool ShouldSerializeTotalWinnings() => __pbn__TotalWinnings != null; - public void ResetTotalWinnings() => __pbn__TotalWinnings = null; - private uint? __pbn__TotalWinnings; - - [global::ProtoBuf.ProtoMember(3, Name = @"input_median")] - [global::System.ComponentModel.DefaultValue("")] - public string InputMedian - { - get => __pbn__InputMedian ?? ""; - set => __pbn__InputMedian = value; - } - public bool ShouldSerializeInputMedian() => __pbn__InputMedian != null; - public void ResetInputMedian() => __pbn__InputMedian = null; - private string __pbn__InputMedian; - - [global::ProtoBuf.ProtoMember(4, Name = @"input_variance")] - [global::System.ComponentModel.DefaultValue("")] - public string InputVariance - { - get => __pbn__InputVariance ?? ""; - set => __pbn__InputVariance = value; - } - public bool ShouldSerializeInputVariance() => __pbn__InputVariance != null; - public void ResetInputVariance() => __pbn__InputVariance = null; - private string __pbn__InputVariance; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class GetAiScoreRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"baid", IsRequired = true)] - public uint Baid { get; set; } - - [global::ProtoBuf.ProtoMember(4, Name = @"song_no", IsRequired = true)] - public uint SongNo { get; set; } - - [global::ProtoBuf.ProtoMember(5, Name = @"level", IsRequired = true)] - public uint Level { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class GetAiScoreResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"ary_best_section_data")] - public global::System.Collections.Generic.List AryBestSectionDatas { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class AiBestSectionData : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"section_no", IsRequired = true)] - public uint SectionNo { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"crown")] - public uint Crown - { - get => __pbn__Crown.GetValueOrDefault(); - set => __pbn__Crown = value; - } - public bool ShouldSerializeCrown() => __pbn__Crown != null; - public void ResetCrown() => __pbn__Crown = null; - private uint? __pbn__Crown; - - [global::ProtoBuf.ProtoMember(3, Name = @"score")] - public uint Score - { - get => __pbn__Score.GetValueOrDefault(); - set => __pbn__Score = value; - } - public bool ShouldSerializeScore() => __pbn__Score != null; - public void ResetScore() => __pbn__Score = null; - private uint? __pbn__Score; - - [global::ProtoBuf.ProtoMember(4, Name = @"good_cnt", IsRequired = true)] - public uint GoodCnt { get; set; } - - [global::ProtoBuf.ProtoMember(5, Name = @"ok_cnt", IsRequired = true)] - public uint OkCnt { get; set; } - - [global::ProtoBuf.ProtoMember(6, Name = @"ng_cnt", IsRequired = true)] - public uint NgCnt { get; set; } - - [global::ProtoBuf.ProtoMember(7, Name = @"pound_cnt", IsRequired = true)] - public uint PoundCnt { get; set; } - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class GetTokenCountRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(1, Name = @"token_id", IsRequired = true)] + public uint TokenId { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } + [global::ProtoBuf.ProtoMember(2, Name = @"token_count", DataFormat = global::ProtoBuf.DataFormat.ZigZag, IsRequired = true)] + public int TokenCount { get; set; } - [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } + } - [global::ProtoBuf.ProtoMember(3, Name = @"baid", IsRequired = true)] - public uint Baid { get; set; } + } - } + [global::ProtoBuf.ProtoContract()] + public partial class AddTokenCountRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoContract()] - public partial class GetTokenCountResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(1, Name = @"wechat_qr_str", IsRequired = true)] + public string WechatQrStr { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } + [global::ProtoBuf.ProtoMember(2, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } - [global::ProtoBuf.ProtoMember(2, Name = @"ary_token_count_data")] - public global::System.Collections.Generic.List AryTokenCountDatas { get; } = new global::System.Collections.Generic.List(); + [global::ProtoBuf.ProtoMember(3, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } - [global::ProtoBuf.ProtoContract()] - public partial class TokenCountData : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(4, Name = @"baid", IsRequired = true)] + public ulong Baid { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"token_id", IsRequired = true)] - public uint TokenId { get; set; } + [global::ProtoBuf.ProtoMember(5, Name = @"ary_add_token_count_data")] + public global::System.Collections.Generic.List AryAddTokenCountDatas { get; } = new global::System.Collections.Generic.List(); - [global::ProtoBuf.ProtoMember(2, Name = @"token_count", DataFormat = global::ProtoBuf.DataFormat.ZigZag, IsRequired = true)] - public int TokenCount { get; set; } + [global::ProtoBuf.ProtoContract()] + public partial class AddTokenCountData : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - } + [global::ProtoBuf.ProtoMember(1, Name = @"token_id", IsRequired = true)] + public uint TokenId { get; set; } - } + [global::ProtoBuf.ProtoMember(2, Name = @"add_token_count", DataFormat = global::ProtoBuf.DataFormat.ZigZag, IsRequired = true)] + public int AddTokenCount { get; set; } - [global::ProtoBuf.ProtoContract()] - public partial class AddTokenCountRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + } - [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } + } - [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } + [global::ProtoBuf.ProtoContract()] + public partial class AddTokenCountResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoMember(3, Name = @"baid", IsRequired = true)] - public uint Baid { get; set; } + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } - [global::ProtoBuf.ProtoMember(4, Name = @"ary_add_token_count_data")] - public global::System.Collections.Generic.List AryAddTokenCountDatas { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class AddTokenCountData : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + } - [global::ProtoBuf.ProtoMember(1, Name = @"token_id", IsRequired = true)] - public uint TokenId { get; set; } + [global::ProtoBuf.ProtoContract()] + public partial class SongPurchaseRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoMember(2, Name = @"add_token_count", DataFormat = global::ProtoBuf.DataFormat.ZigZag, IsRequired = true)] - public int AddTokenCount { get; set; } + [global::ProtoBuf.ProtoMember(1, Name = @"wechat_qr_str", IsRequired = true)] + public string WechatQrStr { get; set; } - } + [global::ProtoBuf.ProtoMember(2, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } - } + [global::ProtoBuf.ProtoMember(3, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } - [global::ProtoBuf.ProtoContract()] - public partial class AddTokenCountResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(4, Name = @"baid", IsRequired = true)] + public ulong Baid { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } + [global::ProtoBuf.ProtoMember(5, Name = @"song_no", IsRequired = true)] + public uint SongNo { get; set; } - } + [global::ProtoBuf.ProtoMember(6, Name = @"token_id", IsRequired = true)] + public uint TokenId { get; set; } - [global::ProtoBuf.ProtoContract()] - public partial class SongPurchaseRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } + [global::ProtoBuf.ProtoMember(7, Name = @"price", IsRequired = true)] + public uint Price { get; set; } - [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"baid", IsRequired = true)] - public uint Baid { get; set; } - - [global::ProtoBuf.ProtoMember(4, Name = @"song_no", IsRequired = true)] - public uint SongNo { get; set; } - - [global::ProtoBuf.ProtoMember(5, Name = @"token_id", IsRequired = true)] - public uint TokenId { get; set; } - - [global::ProtoBuf.ProtoMember(6, Name = @"price", IsRequired = true)] - public uint Price { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class SongPurchaseResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"token_count", DataFormat = global::ProtoBuf.DataFormat.ZigZag)] - public int TokenCount - { - get => __pbn__TokenCount.GetValueOrDefault(); - set => __pbn__TokenCount = value; - } - public bool ShouldSerializeTokenCount() => __pbn__TokenCount != null; - public void ResetTokenCount() => __pbn__TokenCount = null; - private int? __pbn__TokenCount; - - } - - [global::ProtoBuf.ProtoContract()] - public partial class HeadClerk2Request : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } + } - [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } + [global::ProtoBuf.ProtoContract()] + public partial class SongPurchaseResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoMember(3, Name = @"current_place_id")] - [global::System.ComponentModel.DefaultValue("")] - public string CurrentPlaceId - { - get => __pbn__CurrentPlaceId ?? ""; - set => __pbn__CurrentPlaceId = value; - } - public bool ShouldSerializeCurrentPlaceId() => __pbn__CurrentPlaceId != null; - public void ResetCurrentPlaceId() => __pbn__CurrentPlaceId = null; - private string __pbn__CurrentPlaceId; - - [global::ProtoBuf.ProtoMember(4, Name = @"ary_play_info")] - public global::System.Collections.Generic.List AryPlayInfoes { get; } = new global::System.Collections.Generic.List(); - - [global::ProtoBuf.ProtoContract()] - public partial class PlayData : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"baid", IsRequired = true)] - public uint Baid { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"net_id", IsRequired = true)] - public string NetId { get; set; } - - [global::ProtoBuf.ProtoMember(3, Name = @"played_at", IsRequired = true)] - public string PlayedAt { get; set; } - - [global::ProtoBuf.ProtoMember(4, Name = @"is_right", IsRequired = true)] - public bool IsRight { get; set; } - - [global::ProtoBuf.ProtoMember(5, Name = @"place_id", IsRequired = true)] - public string PlaceId { get; set; } - - [global::ProtoBuf.ProtoMember(6, Name = @"type")] - public uint Type - { - get => __pbn__Type.GetValueOrDefault(); - set => __pbn__Type = value; - } - public bool ShouldSerializeType() => __pbn__Type != null; - public void ResetType() => __pbn__Type = null; - private uint? __pbn__Type; - - [global::ProtoBuf.ProtoMember(7, Name = @"amount")] - public uint Amount - { - get => __pbn__Amount.GetValueOrDefault(); - set => __pbn__Amount = value; - } - public bool ShouldSerializeAmount() => __pbn__Amount != null; - public void ResetAmount() => __pbn__Amount = null; - private uint? __pbn__Amount; - - } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class HeadClerk2Response : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } - - } - - [global::ProtoBuf.ProtoContract()] - public partial class RewardcardcheckRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"device_type", IsRequired = true)] - public uint DeviceType { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"access_code", IsRequired = true)] - public string AccessCode { get; set; } + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } - [global::ProtoBuf.ProtoMember(3, Name = @"chip_id", IsRequired = true)] - public string ChipId { get; set; } - - [global::ProtoBuf.ProtoMember(4, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } + [global::ProtoBuf.ProtoMember(2, Name = @"token_count", DataFormat = global::ProtoBuf.DataFormat.ZigZag)] + public int TokenCount + { + get => __pbn__TokenCount.GetValueOrDefault(); + set => __pbn__TokenCount = value; + } + public bool ShouldSerializeTokenCount() => __pbn__TokenCount != null; + public void ResetTokenCount() => __pbn__TokenCount = null; + private int? __pbn__TokenCount; + + } - [global::ProtoBuf.ProtoMember(5, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } + [global::ProtoBuf.ProtoContract()] + public partial class HeadClerk2Request : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"ary_play_info")] + public global::System.Collections.Generic.List AryPlayInfoes { get; } = new global::System.Collections.Generic.List(); + + [global::ProtoBuf.ProtoContract()] + public partial class PlayData : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"baid", IsRequired = true)] + public ulong Baid { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"played_at", IsRequired = true)] + public string PlayedAt { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"is_right", IsRequired = true)] + public bool IsRight { get; set; } + + [global::ProtoBuf.ProtoMember(4, Name = @"type")] + public uint Type + { + get => __pbn__Type.GetValueOrDefault(); + set => __pbn__Type = value; + } + public bool ShouldSerializeType() => __pbn__Type != null; + public void ResetType() => __pbn__Type = null; + private uint? __pbn__Type; - [global::ProtoBuf.ProtoMember(6, Name = @"country_id", IsRequired = true)] - public string CountryId { get; set; } + [global::ProtoBuf.ProtoMember(5, Name = @"amount")] + public uint Amount + { + get => __pbn__Amount.GetValueOrDefault(); + set => __pbn__Amount = value; + } + public bool ShouldSerializeAmount() => __pbn__Amount != null; + public void ResetAmount() => __pbn__Amount = null; + private uint? __pbn__Amount; - } + } - [global::ProtoBuf.ProtoContract()] - public partial class RewardcardcheckResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + } - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } + [global::ProtoBuf.ProtoContract()] + public partial class HeadClerk2Response : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoMember(2, Name = @"baid")] - public uint Baid - { - get => __pbn__Baid.GetValueOrDefault(); - set => __pbn__Baid = value; - } - public bool ShouldSerializeBaid() => __pbn__Baid != null; - public void ResetBaid() => __pbn__Baid = null; - private uint? __pbn__Baid; + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } - } + } - [global::ProtoBuf.ProtoContract()] - public partial class RewardexecutionRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoContract()] + public partial class RewardcardcheckRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"wechat_qr_str", IsRequired = true)] + public string WechatQrStr { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"baid", IsRequired = true)] - public uint Baid { get; set; } + [global::ProtoBuf.ProtoMember(4, Name = @"country_id", IsRequired = true)] + public string CountryId { get; set; } - [global::ProtoBuf.ProtoMember(2, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } + } + + [global::ProtoBuf.ProtoContract()] + public partial class RewardcardcheckResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoMember(3, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } - [global::ProtoBuf.ProtoMember(4, Name = @"release_song_no")] - public uint[] ReleaseSongNoes { get; set; } + [global::ProtoBuf.ProtoMember(2, Name = @"baid")] + public ulong Baid + { + get => __pbn__Baid.GetValueOrDefault(); + set => __pbn__Baid = value; + } + public bool ShouldSerializeBaid() => __pbn__Baid != null; + public void ResetBaid() => __pbn__Baid = null; + private ulong? __pbn__Baid; - [global::ProtoBuf.ProtoMember(5, Name = @"get_tone_no")] - public uint[] GetToneNoes { get; set; } + } - [global::ProtoBuf.ProtoMember(6, Name = @"get_costume_no_1")] - public uint[] GetCostumeNo1s { get; set; } + [global::ProtoBuf.ProtoContract()] + public partial class RewardexecutionRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoMember(7, Name = @"get_costume_no_2")] - public uint[] GetCostumeNo2s { get; set; } + [global::ProtoBuf.ProtoMember(1, Name = @"wechat_qr_str", IsRequired = true)] + public string WechatQrStr { get; set; } - [global::ProtoBuf.ProtoMember(8, Name = @"get_costume_no_3")] - public uint[] GetCostumeNo3s { get; set; } + [global::ProtoBuf.ProtoMember(2, Name = @"baid", IsRequired = true)] + public ulong Baid { get; set; } - [global::ProtoBuf.ProtoMember(9, Name = @"get_costume_no_4")] - public uint[] GetCostumeNo4s { get; set; } + [global::ProtoBuf.ProtoMember(3, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } - [global::ProtoBuf.ProtoMember(10, Name = @"get_costume_no_5")] - public uint[] GetCostumeNo5s { get; set; } + [global::ProtoBuf.ProtoMember(4, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } - [global::ProtoBuf.ProtoMember(11, Name = @"get_title_no")] - public uint[] GetTitleNoes { get; set; } + [global::ProtoBuf.ProtoMember(5, Name = @"release_song_no")] + public uint[] ReleaseSongNoes { get; set; } - } + [global::ProtoBuf.ProtoMember(6, Name = @"get_tone_no")] + public uint[] GetToneNoes { get; set; } - [global::ProtoBuf.ProtoContract()] - public partial class RewardexecutionResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(7, Name = @"get_costume_no_1")] + public uint[] GetCostumeNo1s { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } + [global::ProtoBuf.ProtoMember(8, Name = @"get_costume_no_2")] + public uint[] GetCostumeNo2s { get; set; } - } + [global::ProtoBuf.ProtoMember(9, Name = @"get_costume_no_3")] + public uint[] GetCostumeNo3s { get; set; } - [global::ProtoBuf.ProtoContract()] - public partial class GetDanScoreRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(10, Name = @"get_costume_no_4")] + public uint[] GetCostumeNo4s { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"baid", IsRequired = true)] - public uint Baid { get; set; } + [global::ProtoBuf.ProtoMember(11, Name = @"get_costume_no_5")] + public uint[] GetCostumeNo5s { get; set; } - [global::ProtoBuf.ProtoMember(2, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } + [global::ProtoBuf.ProtoMember(12, Name = @"get_title_no")] + public uint[] GetTitleNoes { get; set; } - [global::ProtoBuf.ProtoMember(3, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } + } - [global::ProtoBuf.ProtoMember(4, Name = @"type", IsRequired = true)] - public uint Type { get; set; } + [global::ProtoBuf.ProtoContract()] + public partial class RewardexecutionResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoMember(5, Name = @"dan_id")] - public uint[] DanIds { get; set; } + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } - } + } - [global::ProtoBuf.ProtoContract()] - public partial class GetDanScoreResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoContract()] + public partial class GetDanScoreRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } + [global::ProtoBuf.ProtoMember(1, Name = @"wechat_qr_str", IsRequired = true)] + public string WechatQrStr { get; set; } - [global::ProtoBuf.ProtoMember(2, Name = @"ary_dan_score_data")] - public global::System.Collections.Generic.List AryDanScoreDatas { get; } = new global::System.Collections.Generic.List(); + [global::ProtoBuf.ProtoMember(2, Name = @"baid", IsRequired = true)] + public ulong Baid { get; set; } - [global::ProtoBuf.ProtoContract()] - public partial class DanScoreData : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(3, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"dan_id", IsRequired = true)] - public uint DanId { get; set; } + [global::ProtoBuf.ProtoMember(4, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } - [global::ProtoBuf.ProtoMember(2, Name = @"arrival_song_cnt", IsRequired = true)] - public uint ArrivalSongCnt { get; set; } + [global::ProtoBuf.ProtoMember(5, Name = @"type", IsRequired = true)] + public uint Type { get; set; } - [global::ProtoBuf.ProtoMember(3, Name = @"soul_gauge_total", IsRequired = true)] - public uint SoulGaugeTotal { get; set; } + [global::ProtoBuf.ProtoMember(6, Name = @"dan_id")] + public uint[] DanIds { get; set; } - [global::ProtoBuf.ProtoMember(4, Name = @"combo_cnt_total", IsRequired = true)] - public uint ComboCntTotal { get; set; } + } - [global::ProtoBuf.ProtoMember(5, Name = @"ary_dan_score_data_stage")] - public global::System.Collections.Generic.List AryDanScoreDataStages { get; } = new global::System.Collections.Generic.List(); + [global::ProtoBuf.ProtoContract()] + public partial class GetDanScoreResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoContract()] - public partial class DanScoreDataStage : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"play_score", IsRequired = true)] - public uint PlayScore { get; set; } + [global::ProtoBuf.ProtoMember(2, Name = @"ary_dan_score_data")] + public global::System.Collections.Generic.List AryDanScoreDatas { get; } = new global::System.Collections.Generic.List(); - [global::ProtoBuf.ProtoMember(2, Name = @"good_cnt", IsRequired = true)] - public uint GoodCnt { get; set; } + [global::ProtoBuf.ProtoContract()] + public partial class DanScoreData : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoMember(3, Name = @"ok_cnt", IsRequired = true)] - public uint OkCnt { get; set; } + [global::ProtoBuf.ProtoMember(1, Name = @"dan_id", IsRequired = true)] + public uint DanId { get; set; } - [global::ProtoBuf.ProtoMember(4, Name = @"ng_cnt", IsRequired = true)] - public uint NgCnt { get; set; } + [global::ProtoBuf.ProtoMember(2, Name = @"arrival_song_cnt", IsRequired = true)] + public uint ArrivalSongCnt { get; set; } - [global::ProtoBuf.ProtoMember(5, Name = @"pound_cnt", IsRequired = true)] - public uint PoundCnt { get; set; } + [global::ProtoBuf.ProtoMember(3, Name = @"soul_gauge_total", IsRequired = true)] + public uint SoulGaugeTotal { get; set; } - [global::ProtoBuf.ProtoMember(6, Name = @"hit_cnt", IsRequired = true)] - public uint HitCnt { get; set; } + [global::ProtoBuf.ProtoMember(4, Name = @"combo_cnt_total", IsRequired = true)] + public uint ComboCntTotal { get; set; } - [global::ProtoBuf.ProtoMember(7, Name = @"combo_cnt", IsRequired = true)] - public uint ComboCnt { get; set; } + [global::ProtoBuf.ProtoMember(5, Name = @"ary_dan_score_data_stage")] + public global::System.Collections.Generic.List AryDanScoreDataStages { get; } = new global::System.Collections.Generic.List(); - [global::ProtoBuf.ProtoMember(8, Name = @"high_score")] - public uint HighScore - { - get => __pbn__HighScore.GetValueOrDefault(); - set => __pbn__HighScore = value; - } - public bool ShouldSerializeHighScore() => __pbn__HighScore != null; - public void ResetHighScore() => __pbn__HighScore = null; - private uint? __pbn__HighScore; + [global::ProtoBuf.ProtoContract()] + public partial class DanScoreDataStage : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - } + [global::ProtoBuf.ProtoMember(1, Name = @"play_score", IsRequired = true)] + public uint PlayScore { get; set; } - } + [global::ProtoBuf.ProtoMember(2, Name = @"good_cnt", IsRequired = true)] + public uint GoodCnt { get; set; } - } + [global::ProtoBuf.ProtoMember(3, Name = @"ok_cnt", IsRequired = true)] + public uint OkCnt { get; set; } - [global::ProtoBuf.ProtoContract()] - public partial class RewardItemRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(4, Name = @"ng_cnt", IsRequired = true)] + public uint NgCnt { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"baid", IsRequired = true)] - public uint Baid { get; set; } + [global::ProtoBuf.ProtoMember(5, Name = @"pound_cnt", IsRequired = true)] + public uint PoundCnt { get; set; } - [global::ProtoBuf.ProtoMember(2, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } + [global::ProtoBuf.ProtoMember(6, Name = @"hit_cnt", IsRequired = true)] + public uint HitCnt { get; set; } - [global::ProtoBuf.ProtoMember(3, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } + [global::ProtoBuf.ProtoMember(7, Name = @"combo_cnt", IsRequired = true)] + public uint ComboCnt { get; set; } - [global::ProtoBuf.ProtoMember(4, Name = @"release_song_no")] - public uint[] ReleaseSongNoes { get; set; } + [global::ProtoBuf.ProtoMember(8, Name = @"high_score")] + public uint HighScore + { + get => __pbn__HighScore.GetValueOrDefault(); + set => __pbn__HighScore = value; + } + public bool ShouldSerializeHighScore() => __pbn__HighScore != null; + public void ResetHighScore() => __pbn__HighScore = null; + private uint? __pbn__HighScore; - [global::ProtoBuf.ProtoMember(5, Name = @"ura_release_song_no")] - public uint[] UraReleaseSongNoes { get; set; } + } - [global::ProtoBuf.ProtoMember(6, Name = @"get_tone_no")] - public uint[] GetToneNoes { get; set; } + } - [global::ProtoBuf.ProtoMember(7, Name = @"get_costume_no_1")] - public uint[] GetCostumeNo1s { get; set; } + } - [global::ProtoBuf.ProtoMember(8, Name = @"get_costume_no_2")] - public uint[] GetCostumeNo2s { get; set; } + [global::ProtoBuf.ProtoContract()] + public partial class RewardItemRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoMember(9, Name = @"get_costume_no_3")] - public uint[] GetCostumeNo3s { get; set; } + [global::ProtoBuf.ProtoMember(1, Name = @"wechat_qr_str", IsRequired = true)] + public string WechatQrStr { get; set; } - [global::ProtoBuf.ProtoMember(10, Name = @"get_costume_no_4")] - public uint[] GetCostumeNo4s { get; set; } + [global::ProtoBuf.ProtoMember(2, Name = @"baid", IsRequired = true)] + public ulong Baid { get; set; } - [global::ProtoBuf.ProtoMember(11, Name = @"get_costume_no_5")] - public uint[] GetCostumeNo5s { get; set; } + [global::ProtoBuf.ProtoMember(3, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } - [global::ProtoBuf.ProtoMember(12, Name = @"get_title_no")] - public uint[] GetTitleNoes { get; set; } + [global::ProtoBuf.ProtoMember(4, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } - } + [global::ProtoBuf.ProtoMember(5, Name = @"release_song_no")] + public uint[] ReleaseSongNoes { get; set; } - [global::ProtoBuf.ProtoContract()] - public partial class RewardItemResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(6, Name = @"ura_release_song_no")] + public uint[] UraReleaseSongNoes { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } + [global::ProtoBuf.ProtoMember(7, Name = @"get_tone_no")] + public uint[] GetToneNoes { get; set; } - } - - [global::ProtoBuf.ProtoContract()] - public partial class GetScoreRankRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(8, Name = @"get_costume_no_1")] + public uint[] GetCostumeNo1s { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"baid", IsRequired = true)] - public uint Baid { get; set; } + [global::ProtoBuf.ProtoMember(9, Name = @"get_costume_no_2")] + public uint[] GetCostumeNo2s { get; set; } - [global::ProtoBuf.ProtoMember(2, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } + [global::ProtoBuf.ProtoMember(10, Name = @"get_costume_no_3")] + public uint[] GetCostumeNo3s { get; set; } - [global::ProtoBuf.ProtoMember(3, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } - - } + [global::ProtoBuf.ProtoMember(11, Name = @"get_costume_no_4")] + public uint[] GetCostumeNo4s { get; set; } - [global::ProtoBuf.ProtoContract()] - public partial class GetScoreRankResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } - - [global::ProtoBuf.ProtoMember(2, Name = @"iki_score_rank_flg")] - public byte[] IkiScoreRankFlg - { - get => __pbn__IkiScoreRankFlg; - set => __pbn__IkiScoreRankFlg = value; - } - public bool ShouldSerializeIkiScoreRankFlg() => __pbn__IkiScoreRankFlg != null; - public void ResetIkiScoreRankFlg() => __pbn__IkiScoreRankFlg = null; - private byte[] __pbn__IkiScoreRankFlg; + [global::ProtoBuf.ProtoMember(12, Name = @"get_costume_no_5")] + public uint[] GetCostumeNo5s { get; set; } - [global::ProtoBuf.ProtoMember(3, Name = @"miyabi_score_rank_flg")] - public byte[] MiyabiScoreRankFlg - { - get => __pbn__MiyabiScoreRankFlg; - set => __pbn__MiyabiScoreRankFlg = value; - } - public bool ShouldSerializeMiyabiScoreRankFlg() => __pbn__MiyabiScoreRankFlg != null; - public void ResetMiyabiScoreRankFlg() => __pbn__MiyabiScoreRankFlg = null; - private byte[] __pbn__MiyabiScoreRankFlg; - - [global::ProtoBuf.ProtoMember(4, Name = @"kiwami_score_rank_flg")] - public byte[] KiwamiScoreRankFlg - { - get => __pbn__KiwamiScoreRankFlg; - set => __pbn__KiwamiScoreRankFlg = value; - } - public bool ShouldSerializeKiwamiScoreRankFlg() => __pbn__KiwamiScoreRankFlg != null; - public void ResetKiwamiScoreRankFlg() => __pbn__KiwamiScoreRankFlg = null; - private byte[] __pbn__KiwamiScoreRankFlg; - - } + [global::ProtoBuf.ProtoMember(13, Name = @"get_title_no")] + public uint[] GetTitleNoes { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class RewardItemResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class GetScoreRankRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"wechat_qr_str", IsRequired = true)] + public string WechatQrStr { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"baid", IsRequired = true)] + public ulong Baid { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } + + [global::ProtoBuf.ProtoMember(4, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } + + } + + [global::ProtoBuf.ProtoContract()] + public partial class GetScoreRankResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"iki_score_rank_flg")] + public byte[] IkiScoreRankFlg + { + get => __pbn__IkiScoreRankFlg; + set => __pbn__IkiScoreRankFlg = value; + } + public bool ShouldSerializeIkiScoreRankFlg() => __pbn__IkiScoreRankFlg != null; + public void ResetIkiScoreRankFlg() => __pbn__IkiScoreRankFlg = null; + private byte[] __pbn__IkiScoreRankFlg; + + [global::ProtoBuf.ProtoMember(3, Name = @"miyabi_score_rank_flg")] + public byte[] MiyabiScoreRankFlg + { + get => __pbn__MiyabiScoreRankFlg; + set => __pbn__MiyabiScoreRankFlg = value; + } + public bool ShouldSerializeMiyabiScoreRankFlg() => __pbn__MiyabiScoreRankFlg != null; + public void ResetMiyabiScoreRankFlg() => __pbn__MiyabiScoreRankFlg = null; + private byte[] __pbn__MiyabiScoreRankFlg; + + [global::ProtoBuf.ProtoMember(4, Name = @"kiwami_score_rank_flg")] + public byte[] KiwamiScoreRankFlg + { + get => __pbn__KiwamiScoreRankFlg; + set => __pbn__KiwamiScoreRankFlg = value; + } + public bool ShouldSerializeKiwamiScoreRankFlg() => __pbn__KiwamiScoreRankFlg != null; + public void ResetKiwamiScoreRankFlg() => __pbn__KiwamiScoreRankFlg = null; + private byte[] __pbn__KiwamiScoreRankFlg; + + } } diff --git a/TaikoLocalServer/Models/MusicAttributeEntry.cs b/TaikoLocalServer/Models/MusicAttributeEntry.cs deleted file mode 100644 index d6fb212..0000000 --- a/TaikoLocalServer/Models/MusicAttributeEntry.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System.Text.Json.Serialization; - -namespace TaikoLocalServer.Models; - -public class MusicAttributeEntry -{ - [JsonPropertyName("uniqueId")] - public uint MusicId { get; set; } - - [JsonPropertyName("canPlayUra")] - public bool HasUra { get; set; } -} \ No newline at end of file diff --git a/TaikoLocalServer/Models/MusicAttributes.cs b/TaikoLocalServer/Models/MusicAttributes.cs deleted file mode 100644 index db526d6..0000000 --- a/TaikoLocalServer/Models/MusicAttributes.cs +++ /dev/null @@ -1,9 +0,0 @@ -using System.Text.Json.Serialization; - -namespace TaikoLocalServer.Models; - -public class MusicAttributes -{ - [JsonPropertyName("items")] - public List MusicAttributeEntries { get; set; } = new(); -} \ No newline at end of file diff --git a/TaikoLocalServer/Models/MusicInfoEntry.cs b/TaikoLocalServer/Models/MusicInfoEntry.cs new file mode 100644 index 0000000..b5e7142 --- /dev/null +++ b/TaikoLocalServer/Models/MusicInfoEntry.cs @@ -0,0 +1,12 @@ +using System.Text.Json.Serialization; + +namespace TaikoLocalServer.Models; + +public class MusicInfoEntry +{ + [JsonPropertyName("uniqueId")] + public uint MusicId { get; set; } + + [JsonPropertyName("starUra")] + public uint starUra { get; set; } +} \ No newline at end of file diff --git a/TaikoLocalServer/Models/MusicInfoes.cs b/TaikoLocalServer/Models/MusicInfoes.cs new file mode 100644 index 0000000..2fdf64a --- /dev/null +++ b/TaikoLocalServer/Models/MusicInfoes.cs @@ -0,0 +1,9 @@ +using System.Text.Json.Serialization; + +namespace TaikoLocalServer.Models; + +public class MusicInfoes +{ + [JsonPropertyName("items")] + public List MusicInfoEntries { get; set; } = new(); +} \ No newline at end of file diff --git a/TaikoLocalServer/Models/NeiroEntry.cs b/TaikoLocalServer/Models/NeiroEntry.cs new file mode 100644 index 0000000..fc82ec9 --- /dev/null +++ b/TaikoLocalServer/Models/NeiroEntry.cs @@ -0,0 +1,9 @@ +using System.Text.Json.Serialization; + +namespace TaikoLocalServer.Models; + +public class NeiroEntry +{ + [JsonPropertyName("uniqueId")] + public uint uniqueId { get; set; } +} \ No newline at end of file diff --git a/TaikoLocalServer/Models/Neiros.cs b/TaikoLocalServer/Models/Neiros.cs new file mode 100644 index 0000000..88e0915 --- /dev/null +++ b/TaikoLocalServer/Models/Neiros.cs @@ -0,0 +1,9 @@ +using System.Text.Json.Serialization; + +namespace TaikoLocalServer.Models; + +public class Neiros +{ + [JsonPropertyName("items")] + public List NeiroEntries { get; set; } = new(); +} \ No newline at end of file diff --git a/TaikoLocalServer/Models/ShougouEntry.cs b/TaikoLocalServer/Models/ShougouEntry.cs new file mode 100644 index 0000000..1c759db --- /dev/null +++ b/TaikoLocalServer/Models/ShougouEntry.cs @@ -0,0 +1,9 @@ +using System.Text.Json.Serialization; + +namespace TaikoLocalServer.Models; + +public class ShougouEntry +{ + [JsonPropertyName("uniqueId")] + public uint uniqueId { get; set; } +} \ No newline at end of file diff --git a/TaikoLocalServer/Models/Shougous.cs b/TaikoLocalServer/Models/Shougous.cs new file mode 100644 index 0000000..1be52be --- /dev/null +++ b/TaikoLocalServer/Models/Shougous.cs @@ -0,0 +1,9 @@ +using System.Text.Json.Serialization; + +namespace TaikoLocalServer.Models; + +public class Shougous +{ + [JsonPropertyName("items")] + public List ShougouEntries { get; set; } = new(); +} \ No newline at end of file diff --git a/TaikoLocalServer/Models/VsInterface.cs b/TaikoLocalServer/Models/VsInterface.cs index ec218d9..bdda2c9 100644 --- a/TaikoLocalServer/Models/VsInterface.cs +++ b/TaikoLocalServer/Models/VsInterface.cs @@ -8,249 +8,248 @@ #pragma warning disable CS0612, CS0618, CS1591, CS3021, IDE0079, IDE1006, RCS1036, RCS1057, RCS1085, RCS1192 namespace taiko.vsinterface { + [global::ProtoBuf.ProtoContract()] + public partial class StartupAuthRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoContract()] - public partial class StartupAuthRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } + [global::ProtoBuf.ProtoMember(2, Name = @"usbmem_key")] + [global::System.ComponentModel.DefaultValue("")] + public string UsbmemKey + { + get => __pbn__UsbmemKey ?? ""; + set => __pbn__UsbmemKey = value; + } + public bool ShouldSerializeUsbmemKey() => __pbn__UsbmemKey != null; + public void ResetUsbmemKey() => __pbn__UsbmemKey = null; + private string __pbn__UsbmemKey; - [global::ProtoBuf.ProtoMember(2, Name = @"usbmem_key")] - [global::System.ComponentModel.DefaultValue("")] - public string UsbmemKey - { - get => __pbn__UsbmemKey ?? ""; - set => __pbn__UsbmemKey = value; - } - public bool ShouldSerializeUsbmemKey() => __pbn__UsbmemKey != null; - public void ResetUsbmemKey() => __pbn__UsbmemKey = null; - private string __pbn__UsbmemKey; + [global::ProtoBuf.ProtoMember(3, Name = @"hdd_ver", IsRequired = true)] + public uint HddVer { get; set; } - [global::ProtoBuf.ProtoMember(3, Name = @"hdd_ver", IsRequired = true)] - public uint HddVer { get; set; } + [global::ProtoBuf.ProtoMember(4, Name = @"usbmem_ver")] + public uint UsbmemVer + { + get => __pbn__UsbmemVer.GetValueOrDefault(); + set => __pbn__UsbmemVer = value; + } + public bool ShouldSerializeUsbmemVer() => __pbn__UsbmemVer != null; + public void ResetUsbmemVer() => __pbn__UsbmemVer = null; + private uint? __pbn__UsbmemVer; - [global::ProtoBuf.ProtoMember(4, Name = @"usbmem_ver")] - public uint UsbmemVer - { - get => __pbn__UsbmemVer.GetValueOrDefault(); - set => __pbn__UsbmemVer = value; - } - public bool ShouldSerializeUsbmemVer() => __pbn__UsbmemVer != null; - public void ResetUsbmemVer() => __pbn__UsbmemVer = null; - private uint? __pbn__UsbmemVer; + [global::ProtoBuf.ProtoMember(5, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } - [global::ProtoBuf.ProtoMember(5, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } + [global::ProtoBuf.ProtoMember(6, Name = @"rack_id")] + [global::System.ComponentModel.DefaultValue("")] + public string RackId + { + get => __pbn__RackId ?? ""; + set => __pbn__RackId = value; + } + public bool ShouldSerializeRackId() => __pbn__RackId != null; + public void ResetRackId() => __pbn__RackId = null; + private string __pbn__RackId; - [global::ProtoBuf.ProtoMember(6, Name = @"rack_id")] - [global::System.ComponentModel.DefaultValue("")] - public string RackId - { - get => __pbn__RackId ?? ""; - set => __pbn__RackId = value; - } - public bool ShouldSerializeRackId() => __pbn__RackId != null; - public void ResetRackId() => __pbn__RackId = null; - private string __pbn__RackId; + [global::ProtoBuf.ProtoMember(7, Name = @"country_id")] + [global::System.ComponentModel.DefaultValue("")] + public string CountryId + { + get => __pbn__CountryId ?? ""; + set => __pbn__CountryId = value; + } + public bool ShouldSerializeCountryId() => __pbn__CountryId != null; + public void ResetCountryId() => __pbn__CountryId = null; + private string __pbn__CountryId; - [global::ProtoBuf.ProtoMember(7, Name = @"country_id")] - [global::System.ComponentModel.DefaultValue("")] - public string CountryId - { - get => __pbn__CountryId ?? ""; - set => __pbn__CountryId = value; - } - public bool ShouldSerializeCountryId() => __pbn__CountryId != null; - public void ResetCountryId() => __pbn__CountryId = null; - private string __pbn__CountryId; + [global::ProtoBuf.ProtoMember(8, Name = @"ary_operation_info")] + public global::System.Collections.Generic.List AryOperationInfoes { get; } = new global::System.Collections.Generic.List(); - [global::ProtoBuf.ProtoMember(8, Name = @"ary_operation_info")] - public global::System.Collections.Generic.List AryOperationInfoes { get; } = new global::System.Collections.Generic.List(); + [global::ProtoBuf.ProtoContract()] + public partial class OperationData : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoContract()] - public partial class OperationData : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(1, Name = @"key_data", IsRequired = true)] + public uint KeyData { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"key_data", IsRequired = true)] - public uint KeyData { get; set; } + [global::ProtoBuf.ProtoMember(2, Name = @"value_data", IsRequired = true)] + public byte[] ValueData { get; set; } - [global::ProtoBuf.ProtoMember(2, Name = @"value_data", IsRequired = true)] - public byte[] ValueData { get; set; } + } - } + } - } + [global::ProtoBuf.ProtoContract()] + public partial class StartupAuthResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoContract()] - public partial class StartupAuthResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } + [global::ProtoBuf.ProtoMember(2, Name = @"ary_movie_info")] + public global::System.Collections.Generic.List AryMovieInfoes { get; } = new global::System.Collections.Generic.List(); - [global::ProtoBuf.ProtoMember(2, Name = @"ary_movie_info")] - public global::System.Collections.Generic.List AryMovieInfoes { get; } = new global::System.Collections.Generic.List(); + [global::ProtoBuf.ProtoMember(3, Name = @"ary_operation_info")] + public global::System.Collections.Generic.List AryOperationInfoes { get; } = new global::System.Collections.Generic.List(); - [global::ProtoBuf.ProtoMember(3, Name = @"ary_operation_info")] - public global::System.Collections.Generic.List AryOperationInfoes { get; } = new global::System.Collections.Generic.List(); + [global::ProtoBuf.ProtoContract()] + public partial class MovieData : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoContract()] - public partial class MovieData : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(1, Name = @"movie_id", IsRequired = true)] + public uint MovieId { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"movie_id", IsRequired = true)] - public uint MovieId { get; set; } + [global::ProtoBuf.ProtoMember(2, Name = @"enable_days", IsRequired = true)] + public uint EnableDays { get; set; } - [global::ProtoBuf.ProtoMember(2, Name = @"enable_days", IsRequired = true)] - public uint EnableDays { get; set; } + } - } + [global::ProtoBuf.ProtoContract()] + public partial class OperationData : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoContract()] - public partial class OperationData : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(1, Name = @"key_data", IsRequired = true)] + public uint KeyData { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"key_data", IsRequired = true)] - public uint KeyData { get; set; } + [global::ProtoBuf.ProtoMember(2, Name = @"value_data", IsRequired = true)] + public byte[] ValueData { get; set; } - [global::ProtoBuf.ProtoMember(2, Name = @"value_data", IsRequired = true)] - public byte[] ValueData { get; set; } + } - } + } - } + [global::ProtoBuf.ProtoContract()] + public partial class VerupAuthRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoContract()] - public partial class VerupAuthRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } + [global::ProtoBuf.ProtoMember(2, Name = @"usbmem_key", IsRequired = true)] + public string UsbmemKey { get; set; } - [global::ProtoBuf.ProtoMember(2, Name = @"usbmem_key", IsRequired = true)] - public string UsbmemKey { get; set; } + [global::ProtoBuf.ProtoMember(3, Name = @"hdd_ver", IsRequired = true)] + public uint HddVer { get; set; } - [global::ProtoBuf.ProtoMember(3, Name = @"hdd_ver", IsRequired = true)] - public uint HddVer { get; set; } + [global::ProtoBuf.ProtoMember(4, Name = @"usbmem_ver", IsRequired = true)] + public uint UsbmemVer { get; set; } - [global::ProtoBuf.ProtoMember(4, Name = @"usbmem_ver", IsRequired = true)] - public uint UsbmemVer { get; set; } + [global::ProtoBuf.ProtoMember(5, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } - [global::ProtoBuf.ProtoMember(5, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } + [global::ProtoBuf.ProtoMember(6, Name = @"rack_id")] + [global::System.ComponentModel.DefaultValue("")] + public string RackId + { + get => __pbn__RackId ?? ""; + set => __pbn__RackId = value; + } + public bool ShouldSerializeRackId() => __pbn__RackId != null; + public void ResetRackId() => __pbn__RackId = null; + private string __pbn__RackId; - [global::ProtoBuf.ProtoMember(6, Name = @"rack_id")] - [global::System.ComponentModel.DefaultValue("")] - public string RackId - { - get => __pbn__RackId ?? ""; - set => __pbn__RackId = value; - } - public bool ShouldSerializeRackId() => __pbn__RackId != null; - public void ResetRackId() => __pbn__RackId = null; - private string __pbn__RackId; + [global::ProtoBuf.ProtoMember(7, Name = @"country_id")] + [global::System.ComponentModel.DefaultValue("")] + public string CountryId + { + get => __pbn__CountryId ?? ""; + set => __pbn__CountryId = value; + } + public bool ShouldSerializeCountryId() => __pbn__CountryId != null; + public void ResetCountryId() => __pbn__CountryId = null; + private string __pbn__CountryId; - [global::ProtoBuf.ProtoMember(7, Name = @"country_id")] - [global::System.ComponentModel.DefaultValue("")] - public string CountryId - { - get => __pbn__CountryId ?? ""; - set => __pbn__CountryId = value; - } - public bool ShouldSerializeCountryId() => __pbn__CountryId != null; - public void ResetCountryId() => __pbn__CountryId = null; - private string __pbn__CountryId; + } - } + [global::ProtoBuf.ProtoContract()] + public partial class VerupAuthResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoContract()] - public partial class VerupAuthResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } + } - } + [global::ProtoBuf.ProtoContract()] + public partial class VerupCompleteRequest : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoContract()] - public partial class VerupCompleteRequest : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] + public string ChassisId { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"chassis_id", IsRequired = true)] - public string ChassisId { get; set; } + [global::ProtoBuf.ProtoMember(2, Name = @"usbmem_key", IsRequired = true)] + public string UsbmemKey { get; set; } - [global::ProtoBuf.ProtoMember(2, Name = @"usbmem_key", IsRequired = true)] - public string UsbmemKey { get; set; } + [global::ProtoBuf.ProtoMember(3, Name = @"hdd_ver", IsRequired = true)] + public uint HddVer { get; set; } - [global::ProtoBuf.ProtoMember(3, Name = @"hdd_ver", IsRequired = true)] - public uint HddVer { get; set; } + [global::ProtoBuf.ProtoMember(4, Name = @"usbmem_ver", IsRequired = true)] + public uint UsbmemVer { get; set; } - [global::ProtoBuf.ProtoMember(4, Name = @"usbmem_ver", IsRequired = true)] - public uint UsbmemVer { get; set; } + [global::ProtoBuf.ProtoMember(5, Name = @"shop_id", IsRequired = true)] + public string ShopId { get; set; } - [global::ProtoBuf.ProtoMember(5, Name = @"shop_id", IsRequired = true)] - public string ShopId { get; set; } + [global::ProtoBuf.ProtoMember(6, Name = @"rack_id")] + [global::System.ComponentModel.DefaultValue("")] + public string RackId + { + get => __pbn__RackId ?? ""; + set => __pbn__RackId = value; + } + public bool ShouldSerializeRackId() => __pbn__RackId != null; + public void ResetRackId() => __pbn__RackId = null; + private string __pbn__RackId; - [global::ProtoBuf.ProtoMember(6, Name = @"rack_id")] - [global::System.ComponentModel.DefaultValue("")] - public string RackId - { - get => __pbn__RackId ?? ""; - set => __pbn__RackId = value; - } - public bool ShouldSerializeRackId() => __pbn__RackId != null; - public void ResetRackId() => __pbn__RackId = null; - private string __pbn__RackId; + [global::ProtoBuf.ProtoMember(7, Name = @"country_id")] + [global::System.ComponentModel.DefaultValue("")] + public string CountryId + { + get => __pbn__CountryId ?? ""; + set => __pbn__CountryId = value; + } + public bool ShouldSerializeCountryId() => __pbn__CountryId != null; + public void ResetCountryId() => __pbn__CountryId = null; + private string __pbn__CountryId; - [global::ProtoBuf.ProtoMember(7, Name = @"country_id")] - [global::System.ComponentModel.DefaultValue("")] - public string CountryId - { - get => __pbn__CountryId ?? ""; - set => __pbn__CountryId = value; - } - public bool ShouldSerializeCountryId() => __pbn__CountryId != null; - public void ResetCountryId() => __pbn__CountryId = null; - private string __pbn__CountryId; + } - } + [global::ProtoBuf.ProtoContract()] + public partial class VerupCompleteResponse : global::ProtoBuf.IExtensible + { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); - [global::ProtoBuf.ProtoContract()] - public partial class VerupCompleteResponse : global::ProtoBuf.IExtensible - { - private global::ProtoBuf.IExtension __pbn__extensionData; - global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) - => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] + public uint Result { get; set; } - [global::ProtoBuf.ProtoMember(1, Name = @"result", IsRequired = true)] - public uint Result { get; set; } - - } + } } diff --git a/TaikoLocalServer/Program.cs b/TaikoLocalServer/Program.cs index 059505e..9978850 100644 --- a/TaikoLocalServer/Program.cs +++ b/TaikoLocalServer/Program.cs @@ -1,6 +1,9 @@ using System.Reflection; using System.Security.Authentication; +using Serilog.Sinks.File.Header; +using TaikoLocalServer.Logging; using GameDatabase.Context; +using Microsoft.AspNetCore.HttpLogging; using Microsoft.AspNetCore.HttpOverrides; using TaikoLocalServer.Middlewares; using TaikoLocalServer.Services.Extentions; @@ -23,26 +26,32 @@ try { var builder = WebApplication.CreateBuilder(args); - builder.Host.ConfigureAppConfiguration((hostingContext, config) => + builder.Services.AddHttpLogging(options => { - const string configurationsDirectory = "Configurations"; - config.AddJsonFile($"{configurationsDirectory}/Kestrel.json", optional: true, reloadOnChange: false); - config.AddJsonFile($"{configurationsDirectory}/Logging.json", optional: false, reloadOnChange: false); - config.AddJsonFile($"{configurationsDirectory}/Database.json", optional: false, reloadOnChange: false); - config.AddJsonFile($"{configurationsDirectory}/ServerSettings.json", optional: false, reloadOnChange: false); - config.AddJsonFile($"{configurationsDirectory}/DataSettings.json", optional: true, reloadOnChange: false); + options.LoggingFields = HttpLoggingFields.All; + options.RequestBodyLogLimit = 32768; + options.ResponseBodyLogLimit = 32768; }); - // Manually enable tls 1.0 - builder.WebHost.UseKestrel(kestrelOptions => - { - kestrelOptions.ConfigureHttpsDefaults(options => - options.SslProtocols = SslProtocols.Tls | SslProtocols.Tls11 | SslProtocols.Tls12 | SslProtocols.Tls13); - }); + const string configurationsDirectory = "Configurations"; + builder.Configuration.AddJsonFile($"{configurationsDirectory}/Kestrel.json", optional: true, reloadOnChange: false); + builder.Configuration.AddJsonFile($"{configurationsDirectory}/Logging.json", optional: false, reloadOnChange: false); + builder.Configuration.AddJsonFile($"{configurationsDirectory}/Database.json", optional: false, reloadOnChange: false); + builder.Configuration.AddJsonFile($"{configurationsDirectory}/ServerSettings.json", optional: false, reloadOnChange: false); + builder.Configuration.AddJsonFile($"{configurationsDirectory}/DataSettings.json", optional: true, reloadOnChange: false); builder.Host.UseSerilog((context, configuration) => { - configuration.WriteTo.Console().ReadFrom.Configuration(context.Configuration); + configuration + .WriteTo.Console().ReadFrom.Configuration(context.Configuration) + .WriteTo.Logger(x => + { + x.WriteTo.File(new CsvFormatter(), + path: "./Logs/HeadClerkLog-.csv", + hooks: new HeaderWriter("Date,ChassisId,ShopId,Baid,PlayedAt,IsRight,Type,Amount"), + rollingInterval: RollingInterval.Day); + x.Filter.ByIncludingOnly("StartsWith(@m, 'CSV WRITE:')"); + }); }); if (builder.Configuration.GetValue("ServerSettings:EnableMoreSongs")) @@ -117,6 +126,16 @@ try app.UseHttpLogging(); + app.Use(async (context, next) => + { + await next(); + + if (context.Response.StatusCode >= 400) + { + Log.Error("Unknown request from: {RemoteIpAddress} {Method} {Path} {StatusCode}", + context.Connection.RemoteIpAddress, context.Request.Method, context.Request.Path, context.Response.StatusCode); + } + }); app.MapControllers(); app.MapFallbackToFile("index.html"); diff --git a/TaikoLocalServer/Properties/launchSettings.json b/TaikoLocalServer/Properties/launchSettings.json index b04626b..2494077 100644 --- a/TaikoLocalServer/Properties/launchSettings.json +++ b/TaikoLocalServer/Properties/launchSettings.json @@ -12,7 +12,7 @@ "TaikoLocalServer": { "commandName": "Project", "dotnetRunMessages": true, - "launchBrowser": true, + "launchBrowser": false, "launchUrl": "", "applicationUrl": "http://localhost:5000", "environmentVariables": { @@ -21,7 +21,7 @@ }, "IIS Express": { "commandName": "IISExpress", - "launchBrowser": true, + "launchBrowser": false, "launchUrl": "swagger", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" diff --git a/TaikoLocalServer/Services/AiDatumService.cs b/TaikoLocalServer/Services/AiDatumService.cs index 2d716e7..ec95b53 100644 --- a/TaikoLocalServer/Services/AiDatumService.cs +++ b/TaikoLocalServer/Services/AiDatumService.cs @@ -13,14 +13,14 @@ public class AiDatumService : IAiDatumService this.context = context; } - public async Task> GetAllAiScoreById(uint baid) + public async Task> GetAllAiScoreById(ulong baid) { return await context.AiScoreData.Where(datum => datum.Baid == baid) .Include(datum => datum.AiSectionScoreData) .ToListAsync(); } - public async Task GetSongAiScore(uint baid, uint songId, Difficulty difficulty) + public async Task GetSongAiScore(ulong baid, uint songId, Difficulty difficulty) { return await context.AiScoreData.Where(datum => datum.Baid == baid && datum.SongId == songId && diff --git a/TaikoLocalServer/Services/CardService.cs b/TaikoLocalServer/Services/CardService.cs index 44eb2ea..2d3dd30 100644 --- a/TaikoLocalServer/Services/CardService.cs +++ b/TaikoLocalServer/Services/CardService.cs @@ -7,46 +7,59 @@ namespace TaikoLocalServer.Services; public class CardService : ICardService { - private readonly TaikoDbContext context; + private readonly TaikoDbContext context; - public CardService(TaikoDbContext context) - { - this.context = context; - } + public CardService(TaikoDbContext context) + { + this.context = context; + } - public async Task GetCardByAccessCode(string accessCode) - { - return await context.Cards.FindAsync(accessCode); - } + public async Task GetCardByAccessCode(string accessCode) + { + return await context.Cards.FindAsync(accessCode); + } - public uint GetNextBaid() - { - return context.Cards.Any() ? context.Cards.Max(card => card.Baid) + 1 : 1; - } + public ulong GetNextBaid() + { + return context.Cards.Any() ? context.Cards.ToList().Max(card => card.Baid) + 1 : 1; + } - public async Task> GetUsersFromCards() - { - return await context.Cards.Select(card => card.CopyPropertiesToNew(null)).ToListAsync(); - } + public async Task> GetUsersFromCards() + { + return await context.Cards.Select(card => card.CopyPropertiesToNew(null)).ToListAsync(); + } - public async Task AddCard(Card card) - { - context.Add(card); - await context.SaveChangesAsync(); - } + public async Task AddCard(Card card) + { + context.Add(card); + await context.SaveChangesAsync(); + } - public async Task DeleteCard(string accessCode) - { - var card = await context.Cards.FindAsync(accessCode); + public async Task DeleteCard(string accessCode) + { + var card = await context.Cards.FindAsync(accessCode); - if (card is null) - { - return false; - } + if (card is null) + { + return false; + } - context.Cards.Remove(card); - await context.SaveChangesAsync(); + context.Cards.Remove(card); + await context.SaveChangesAsync(); - return true; - } + return true; + } + + public async Task UpdatePassword(string accessCode, string password, string salt) + { + var card = await context.Cards.FindAsync(accessCode); + + if (card is null) return false; + + card.Password = password; + card.Salt = salt; + await context.SaveChangesAsync(); + + return true; + } } \ No newline at end of file diff --git a/TaikoLocalServer/Services/DanScoreDatumService.cs b/TaikoLocalServer/Services/DanScoreDatumService.cs index bc4d82a..005f9a2 100644 --- a/TaikoLocalServer/Services/DanScoreDatumService.cs +++ b/TaikoLocalServer/Services/DanScoreDatumService.cs @@ -12,14 +12,14 @@ public class DanScoreDatumService : IDanScoreDatumService this.context = context; } - public async Task> GetDanScoreDatumByBaid(uint baid) + public async Task> GetDanScoreDatumByBaid(ulong baid) { return await context.DanScoreData.Where(datum => datum.Baid == baid) .Include(datum => datum.DanStageScoreData) .ToListAsync(); } - public async Task GetSingleDanScoreDatum(uint baid, uint danId) + public async Task GetSingleDanScoreDatum(ulong baid, uint danId) { return await context.DanScoreData.Include(datum => datum.DanStageScoreData) .FirstOrDefaultAsync(datum => datum.Baid == baid && diff --git a/TaikoLocalServer/Services/GameDataService.cs b/TaikoLocalServer/Services/GameDataService.cs index c4292d3..57db30c 100644 --- a/TaikoLocalServer/Services/GameDataService.cs +++ b/TaikoLocalServer/Services/GameDataService.cs @@ -1,10 +1,12 @@ -using System.Collections.Immutable; -using System.Text.Json; -using ICSharpCode.SharpZipLib.GZip; +using ICSharpCode.SharpZipLib.GZip; using Microsoft.Extensions.Options; using SharedProject.Models; using SharedProject.Utils; using Swan.Mapping; +using System.Collections.Immutable; +using System.IO.Compression; +using System.Security.Cryptography; +using System.Text.Json; using TaikoLocalServer.Settings; using Throw; @@ -12,178 +14,460 @@ namespace TaikoLocalServer.Services; public class GameDataService : IGameDataService { - private ImmutableDictionary danDataDictionary = - ImmutableDictionary.Empty; + private ImmutableDictionary musicInfoes = + ImmutableDictionary.Empty; - private ImmutableDictionary introDataDictionary = - ImmutableDictionary.Empty; - - private ImmutableDictionary musicAttributes = - ImmutableDictionary.Empty; + private ImmutableDictionary danDataDictionary = + ImmutableDictionary.Empty; - private ImmutableDictionary folderDictionary = - ImmutableDictionary.Empty; + private ImmutableDictionary gaidenDataDictionary = + ImmutableDictionary.Empty; - private List musics = new(); + private ImmutableDictionary introDataDictionary = + ImmutableDictionary.Empty; - private List musicsWithUra = new(); - - private readonly DataSettings settings; + private ImmutableDictionary movieDataDictionary = + ImmutableDictionary.Empty; - public GameDataService(IOptions settings) - { - this.settings = settings.Value; - } + private ImmutableDictionary folderDictionary = + ImmutableDictionary.Empty; - public List GetMusicList() - { - return musics; - } + private ImmutableDictionary qrCodeDataDictionary = ImmutableDictionary.Empty; + + private List shopFolderList = new(); - public List GetMusicWithUraList() - { - return musicsWithUra; - } + private List musics = new(); - public ImmutableDictionary GetMusicAttributes() - { - return musicAttributes; - } + private List musicsWithUra = new(); - public ImmutableDictionary GetDanDataDictionary() - { - return danDataDictionary; - } - - public ImmutableDictionary GetSongIntroDictionary() - { - return introDataDictionary; - } + private List lockedSongsList = new(); + + private List costumeFlagArraySizes = new(); + + private int titleFlagArraySize; + + private int toneFlagArraySize; - public ImmutableDictionary GetFolderDictionary() - { - return folderDictionary; - } + private Dictionary tokenDataDictionary = new(); - public async Task InitializeAsync() - { - var dataPath = PathHelper.GetDataPath(); - var musicAttributePath = Path.Combine(dataPath, Constants.MUSIC_ATTRIBUTE_FILE_NAME); - var compressedMusicAttributePath = Path.Combine(dataPath, Constants.MUSIC_ATTRIBUTE_COMPRESSED_FILE_NAME); - var danDataPath = Path.Combine(dataPath, settings.DanDataFileName); - var songIntroDataPath = Path.Combine(dataPath, settings.IntroDataFileName); - var eventFolderDataPath = Path.Combine(dataPath, settings.EventFolderDataFileName); + private readonly DataSettings settings; - if (File.Exists(compressedMusicAttributePath)) - { - TryDecompressMusicAttribute(); - } - await using var musicAttributeFile = File.OpenRead(musicAttributePath); - await using var danDataFile = File.OpenRead(danDataPath); - await using var songIntroDataFile = File.OpenRead(songIntroDataPath); - await using var eventFolderDataFile = File.OpenRead(eventFolderDataPath); + public GameDataService(IOptions settings) + { + this.settings = settings.Value; + } - var attributesData = await JsonSerializer.DeserializeAsync(musicAttributeFile); - var danData = await JsonSerializer.DeserializeAsync>(danDataFile); - var introData = await JsonSerializer.DeserializeAsync>(songIntroDataFile); - var eventFolderData = await JsonSerializer.DeserializeAsync>(eventFolderDataFile); + public List GetMusicList() + { + return musics; + } - InitializeMusicAttributes(attributesData); + public List GetMusicWithUraList() + { + return musicsWithUra; + } - InitializeDanData(danData); + public ImmutableDictionary GetMusicInfoes() + { + return musicInfoes; + } - InitializeIntroData(introData); + public ImmutableDictionary GetDanDataDictionary() + { + return danDataDictionary; + } - InitializeEventFolderData(eventFolderData); - } + public ImmutableDictionary GetGaidenDataDictionary() + { + return gaidenDataDictionary; + } - private static void TryDecompressMusicAttribute() - { - var dataPath = PathHelper.GetDataPath(); - var musicAttributePath = Path.Combine(dataPath, Constants.MUSIC_ATTRIBUTE_FILE_NAME); - var compressedMusicAttributePath = Path.Combine(dataPath, Constants.MUSIC_ATTRIBUTE_COMPRESSED_FILE_NAME); - - using var compressed = File.Open(compressedMusicAttributePath, FileMode.Open); - using var output = File.Create(musicAttributePath); - - GZip.Decompress(compressed, output, true); - } + public ImmutableDictionary GetSongIntroDictionary() + { + return introDataDictionary; + } - private void InitializeIntroData(List? introData) - { - introData.ThrowIfNull("Shouldn't happen!"); - introDataDictionary = introData.ToImmutableDictionary(data => data.SetId, ToResponseIntroData); - } + public ImmutableDictionary GetMovieDataDictionary() + { + return movieDataDictionary; + } - private void InitializeDanData(List? danData) - { - danData.ThrowIfNull("Shouldn't happen!"); - danDataDictionary = danData.ToImmutableDictionary(data => data.DanId, ToResponseOdaiData); - } + public ImmutableDictionary GetFolderDictionary() + { + return folderDictionary; + } - private void InitializeEventFolderData(List? eventFolderData) - { - eventFolderData.ThrowIfNull("Shouldn't happen!"); - folderDictionary = eventFolderData.ToImmutableDictionary(data => data.FolderId, ToResponseEventFolderData); - } + public List GetShopFolderList() + { + return shopFolderList; + } - private void InitializeMusicAttributes(MusicAttributes? attributesData) - { - attributesData.ThrowIfNull("Shouldn't happen!"); + public Dictionary GetTokenDataDictionary() + { + return tokenDataDictionary; + } - musicAttributes = attributesData.MusicAttributeEntries.ToImmutableDictionary(attribute => attribute.MusicId); + public List GetLockedSongsList() + { + return lockedSongsList; + } + + public List GetCostumeFlagArraySizes() + { + return costumeFlagArraySizes; + } + + public int GetTitleFlagArraySize() + { + return titleFlagArraySize; + } + + public int GetToneFlagArraySize() + { + return toneFlagArraySize; + } - musics = musicAttributes.Select(pair => pair.Key) - .ToList(); - musics.Sort(); + public ImmutableDictionary GetQRCodeDataDictionary() + { + return qrCodeDataDictionary; + } - musicsWithUra = musicAttributes.Where(attribute => attribute.Value.HasUra) - .Select(pair => pair.Key) - .ToList(); - musicsWithUra.Sort(); - } + public async Task InitializeAsync() + { + var dataPath = PathHelper.GetDataPath(); + + var musicInfoPath = Path.Combine(dataPath, $"{Constants.MUSIC_INFO_BASE_NAME}.json"); + var encryptedInfo = Path.Combine(dataPath, $"{Constants.MUSIC_INFO_BASE_NAME}.bin"); + + var wordlistPath = Path.Combine(dataPath, $"{Constants.WORDLIST_BASE_NAME}.json"); + var encryptedWordlist = Path.Combine(dataPath, $"{Constants.WORDLIST_BASE_NAME}.bin"); + + var musicOrderPath = Path.Combine(dataPath, $"{Constants.MUSIC_ORDER_BASE_NAME}.json"); + var encryptedMusicOrder = Path.Combine(dataPath, $"{Constants.MUSIC_ORDER_BASE_NAME}.bin"); + + var donCosRewardPath = Path.Combine(dataPath, $"{Constants.DON_COS_REWARD_BASE_NAME}.json"); + var encryptedDonCosReward = Path.Combine(dataPath, $"{Constants.DON_COS_REWARD_BASE_NAME}.bin"); + + var shougouPath = Path.Combine(dataPath, $"{Constants.SHOUGOU_BASE_NAME}.json"); + var encryptedShougou = Path.Combine(dataPath, $"{Constants.SHOUGOU_BASE_NAME}.bin"); + + var neiroPath = Path.Combine(dataPath, $"{Constants.NEIRO_BASE_NAME}.json"); + var encryptedNeiro = Path.Combine(dataPath, $"{Constants.NEIRO_BASE_NAME}.bin"); + + var danDataPath = Path.Combine(dataPath, settings.DanDataFileName); + var gaidenDataPath = Path.Combine(dataPath, settings.GaidenDataFileName); + var songIntroDataPath = Path.Combine(dataPath, settings.IntroDataFileName); + var movieDataPath = Path.Combine(dataPath, settings.MovieDataFileName); + var eventFolderDataPath = Path.Combine(dataPath, settings.EventFolderDataFileName); + var shopFolderDataPath = Path.Combine(dataPath, settings.ShopFolderDataFileName); + var tokenDataPath = Path.Combine(dataPath, settings.TokenDataFileName); + var lockedSongsDataPath = Path.Combine(dataPath, settings.LockedSongsDataFileName); + var qrCodeDataPath = Path.Combine(dataPath, settings.QRCodeDataFileName); - private static GetDanOdaiResponse.OdaiData ToResponseOdaiData(DanData data) - { - var responseOdaiData = new GetDanOdaiResponse.OdaiData - { - DanId = data.DanId, - Title = data.Title, - VerupNo = data.VerupNo - }; + if (File.Exists(encryptedInfo)) + { + DecryptDataTable(encryptedInfo, musicInfoPath); + } + if (File.Exists(encryptedWordlist)) + { + DecryptDataTable(encryptedWordlist, wordlistPath); + } + if (File.Exists(encryptedMusicOrder)) + { + DecryptDataTable(encryptedMusicOrder, musicOrderPath); + } + if (File.Exists(encryptedDonCosReward)) + { + DecryptDataTable(encryptedDonCosReward, donCosRewardPath); + } + if (File.Exists(encryptedShougou)) + { + DecryptDataTable(encryptedShougou, shougouPath); + } + if (File.Exists(encryptedNeiro)) + { + DecryptDataTable(encryptedNeiro, neiroPath); + } + + if (!File.Exists(musicInfoPath)) + { + throw new FileNotFoundException("Music info file not found!"); + } + if (!File.Exists(wordlistPath)) + { + throw new FileNotFoundException("Wordlist file not found!"); + } + if (!File.Exists(musicOrderPath)) + { + throw new FileNotFoundException("Music order file not found!"); + } + if (!File.Exists(donCosRewardPath)) + { + throw new FileNotFoundException("Don cos reward file not found!"); + } + if (!File.Exists(shougouPath)) + { + throw new FileNotFoundException("Shougou file not found!"); + } + if (!File.Exists(neiroPath)) + { + throw new FileNotFoundException("Neiro file not found!"); + } + + await using var musicInfoFile = File.OpenRead(musicInfoPath); + await using var danDataFile = File.OpenRead(danDataPath); + await using var gaidenDataFile = File.OpenRead(gaidenDataPath); + await using var songIntroDataFile = File.OpenRead(songIntroDataPath); + await using var movieDataFile = File.OpenRead(movieDataPath); + await using var eventFolderDataFile = File.OpenRead(eventFolderDataPath); + await using var shopFolderDataFile = File.OpenRead(shopFolderDataPath); + await using var tokenDataFile = File.OpenRead(tokenDataPath); + await using var lockedSongsDataFile = File.OpenRead(lockedSongsDataPath); + await using var donCosRewardFile = File.OpenRead(donCosRewardPath); + await using var shougouFile = File.OpenRead(shougouPath); + await using var neiroFile = File.OpenRead(neiroPath); + await using var qrCodeDataFile = File.OpenRead(qrCodeDataPath); - var odaiSongs = data.OdaiSongList.Select(song => song.CopyPropertiesToNew()); - responseOdaiData.AryOdaiSongs.AddRange(odaiSongs); + var infoesData = await JsonSerializer.DeserializeAsync(musicInfoFile); + var danData = await JsonSerializer.DeserializeAsync>(danDataFile); + var gaidenData = await JsonSerializer.DeserializeAsync>(gaidenDataFile); + var introData = await JsonSerializer.DeserializeAsync>(songIntroDataFile); + var movieData = await JsonSerializer.DeserializeAsync>(movieDataFile); + var eventFolderData = await JsonSerializer.DeserializeAsync>(eventFolderDataFile); + var shopFolderData = await JsonSerializer.DeserializeAsync>(shopFolderDataFile); + var tokenData = await JsonSerializer.DeserializeAsync>(tokenDataFile); + var lockedSongsData = await JsonSerializer.DeserializeAsync>(lockedSongsDataFile); + var donCosRewardData = await JsonSerializer.DeserializeAsync(donCosRewardFile); + var shougouData = await JsonSerializer.DeserializeAsync(shougouFile); + var neiroData = await JsonSerializer.DeserializeAsync(neiroFile); + var qrCodeData = await JsonSerializer.DeserializeAsync>(qrCodeDataFile); - var odaiBorders = data.OdaiBorderList.Select(border => border.CopyPropertiesToNew()); - responseOdaiData.AryOdaiBorders.AddRange(odaiBorders); + InitializeMusicInfoes(infoesData); - return responseOdaiData; - } + InitializeDanData(danData); - private static GetSongIntroductionResponse.SongIntroductionData ToResponseIntroData(SongIntroductionData data) - { - var responseOdaiData = new GetSongIntroductionResponse.SongIntroductionData - { - SetId = data.SetId, - VerupNo = data.VerupNo, - MainSongNo = data.MainSongNo, - SubSongNoes = data.SubSongNo - }; + InitializeGaidenData(gaidenData); - return responseOdaiData; - } + InitializeIntroData(introData); - private static GetfolderResponse.EventfolderData ToResponseEventFolderData(EventFolderData data) - { - var responseEventFolderData = new GetfolderResponse.EventfolderData - { - FolderId = data.FolderId, - VerupNo = data.VerupNo, - Priority = data.Priority, - SongNoes = data.SongNo - }; + InitializeMovieData(movieData); - return responseEventFolderData; - } + InitializeEventFolderData(eventFolderData); + + InitializeShopFolderData(shopFolderData); + + InitializeTokenData(tokenData); + + InitializeLockedSongsData(lockedSongsData); + + InitializeCostumeFlagArraySizes(donCosRewardData); + + InitializeTitleFlagArraySize(shougouData); + + InitializeToneFlagArraySize(neiroData); + + InitializeQrCodeData(qrCodeData); + } + + private static void DecryptDataTable(string inputFileName, string outputFileName) + { + var aes = Aes.Create(); + aes.Mode = CipherMode.CBC; + aes.KeySize = 256; + aes.Padding = PaddingMode.PKCS7; + aes.Key = Convert.FromHexString("3530304242323633353537423431384139353134383346433246464231354534"); + var iv = new byte[16]; + using var fs = File.OpenRead(inputFileName); + var count = fs.Read(iv, 0, 16); + count.Throw("Read IV for datatable failed!").IfNotEquals(16); + aes.IV = iv; + using var cs = new CryptoStream(fs, aes.CreateDecryptor(), CryptoStreamMode.Read); + using var ms = new MemoryStream(); + cs.CopyTo(ms); + ms.Position = 0; + using var gz = new GZipStream(ms, CompressionMode.Decompress); + using var output = File.Create(outputFileName); + gz.CopyTo(output); + } + + private void InitializeIntroData(List? introData) + { + introData.ThrowIfNull("Shouldn't happen!"); + introDataDictionary = introData.ToImmutableDictionary(data => data.SetId, ToResponseIntroData); + } + + private void InitializeMovieData(List? movieData) + { + movieData.ThrowIfNull("Shouldn't happen!"); + movieDataDictionary = movieData.ToImmutableDictionary(data => data.MovieId, ToResponseMovieData); + } + + private void InitializeDanData(List? danData) + { + danData.ThrowIfNull("Shouldn't happen!"); + danDataDictionary = danData.ToImmutableDictionary(data => data.DanId, ToResponseOdaiData); + } + + private void InitializeGaidenData(List? gaidenData) + { + gaidenData.ThrowIfNull("Shouldn't happen!"); + gaidenDataDictionary = gaidenData.ToImmutableDictionary(data => data.DanId, ToResponseOdaiData); + } + + private void InitializeEventFolderData(List? eventFolderData) + { + eventFolderData.ThrowIfNull("Shouldn't happen!"); + folderDictionary = eventFolderData.ToImmutableDictionary(data => data.FolderId, ToResponseEventFolderData); + } + + private void InitializeMusicInfoes(MusicInfoes? infoesData) + { + infoesData.ThrowIfNull("Shouldn't happen!"); + + musicInfoes = infoesData.MusicInfoEntries.ToImmutableDictionary(info => info.MusicId); + + musics = musicInfoes.Select(pair => pair.Key) + .ToList(); + musics.Sort(); + + musicsWithUra = musicInfoes.Where(info => info.Value.starUra > 0) + .Select(pair => pair.Key) + .ToList(); + musicsWithUra.Sort(); + } + + private void InitializeShopFolderData(List? shopFolderData) + { + shopFolderData.ThrowIfNull("Shouldn't happen!"); + foreach (var folderData in shopFolderData) + { + shopFolderList.Add(ToResponseShopFolderData(folderData)); + } + } + + private void InitializeTokenData(Dictionary? tokenData) + { + tokenData.ThrowIfNull("Shouldn't happen!"); + tokenDataDictionary = tokenData; + } + + private void InitializeLockedSongsData(Dictionary? lockedSongsData) + { + lockedSongsData.ThrowIfNull("Shouldn't happen!"); + lockedSongsList = lockedSongsData["songNo"].ToList(); + } + + private void InitializeCostumeFlagArraySizes(DonCosRewards? donCosRewardData) + { + donCosRewardData.ThrowIfNull("Shouldn't happen!"); + var kigurumiUniqueIdList = donCosRewardData.DonCosRewardEntries + .Where(entry => entry.cosType == "kigurumi") + .Select(entry => entry.uniqueId); + var headUniqueIdList = donCosRewardData.DonCosRewardEntries + .Where(entry => entry.cosType == "head") + .Select(entry => entry.uniqueId); + var bodyUniqueIdList = donCosRewardData.DonCosRewardEntries + .Where(entry => entry.cosType == "body") + .Select(entry => entry.uniqueId); + var faceUniqueIdList = donCosRewardData.DonCosRewardEntries + .Where(entry => entry.cosType == "face") + .Select(entry => entry.uniqueId); + var puchiUniqueIdList = donCosRewardData.DonCosRewardEntries + .Where(entry => entry.cosType == "puchi") + .Select(entry => entry.uniqueId); + + costumeFlagArraySizes = new List + { + (int)kigurumiUniqueIdList.Max() + 1, + (int)headUniqueIdList.Max() + 1, + (int)bodyUniqueIdList.Max() + 1, + (int)faceUniqueIdList.Max() + 1, + (int)puchiUniqueIdList.Max() + 1 + }; + } + + private void InitializeTitleFlagArraySize(Shougous? shougouData) + { + shougouData.ThrowIfNull("Shouldn't happen!"); + titleFlagArraySize = (int)shougouData.ShougouEntries.Max(entry => entry.uniqueId) + 1; + } + + private void InitializeToneFlagArraySize(Neiros? neiroData) + { + neiroData.ThrowIfNull("Shouldn't happen!"); + toneFlagArraySize = (int)neiroData.NeiroEntries.Max(entry => entry.uniqueId) + 1; + } + + private void InitializeQrCodeData(List? qrCodeData) + { + qrCodeData.ThrowIfNull("Shouldn't happen!"); + qrCodeDataDictionary = qrCodeData.ToImmutableDictionary(data => data.Serial, data => data.Id); + } + + private static GetDanOdaiResponse.OdaiData ToResponseOdaiData(DanData data) + { + var responseOdaiData = new GetDanOdaiResponse.OdaiData + { + DanId = data.DanId, + Title = data.Title, + VerupNo = data.VerupNo + }; + + var odaiSongs = data.OdaiSongList.Select(song => song.CopyPropertiesToNew()); + responseOdaiData.AryOdaiSongs.AddRange(odaiSongs); + + var odaiBorders = data.OdaiBorderList.Select(border => border.CopyPropertiesToNew()); + responseOdaiData.AryOdaiBorders.AddRange(odaiBorders); + + return responseOdaiData; + } + + private static GetSongIntroductionResponse.SongIntroductionData ToResponseIntroData(SongIntroductionData data) + { + var responseIntroData = new GetSongIntroductionResponse.SongIntroductionData + { + SetId = data.SetId, + VerupNo = data.VerupNo, + MainSongNo = data.MainSongNo, + SubSongNoes = data.SubSongNo + }; + + return responseIntroData; + } + + private static InitialdatacheckResponse.MovieData ToResponseMovieData(MovieData data) + { + var responseMovieData = new InitialdatacheckResponse.MovieData + { + MovieId = data.MovieId, + EnableDays = data.EnableDays + }; + + return responseMovieData; + } + + private static GetfolderResponse.EventfolderData ToResponseEventFolderData(EventFolderData data) + { + var responseEventFolderData = new GetfolderResponse.EventfolderData + { + FolderId = data.FolderId, + VerupNo = data.VerupNo, + Priority = data.Priority, + SongNoes = data.SongNo, + ParentFolderId = data.ParentFolderId + }; + + return responseEventFolderData; + } + + private static GetShopFolderResponse.ShopFolderData ToResponseShopFolderData(ShopFolderData data) + { + var responseShopFolderData = new GetShopFolderResponse.ShopFolderData + { + SongNo = data.SongNo, + Price = data.Price + }; + + return responseShopFolderData; + } } \ No newline at end of file diff --git a/TaikoLocalServer/Services/Interfaces/IAiDatumService.cs b/TaikoLocalServer/Services/Interfaces/IAiDatumService.cs index 5525034..fc29213 100644 --- a/TaikoLocalServer/Services/Interfaces/IAiDatumService.cs +++ b/TaikoLocalServer/Services/Interfaces/IAiDatumService.cs @@ -4,9 +4,9 @@ namespace TaikoLocalServer.Services.Interfaces; public interface IAiDatumService { - public Task> GetAllAiScoreById(uint baid); + public Task> GetAllAiScoreById(ulong baid); - public Task GetSongAiScore(uint baid, uint songId, Difficulty difficulty); + public Task GetSongAiScore(ulong baid, uint songId, Difficulty difficulty); public Task UpdateSongAiScore(AiScoreDatum datum); diff --git a/TaikoLocalServer/Services/Interfaces/ICardService.cs b/TaikoLocalServer/Services/Interfaces/ICardService.cs index f40f17e..3f215f8 100644 --- a/TaikoLocalServer/Services/Interfaces/ICardService.cs +++ b/TaikoLocalServer/Services/Interfaces/ICardService.cs @@ -5,13 +5,15 @@ namespace TaikoLocalServer.Services.Interfaces; public interface ICardService { - public Task GetCardByAccessCode(string accessCode); + public Task GetCardByAccessCode(string accessCode); - public uint GetNextBaid(); + public ulong GetNextBaid(); - public Task> GetUsersFromCards(); + public Task> GetUsersFromCards(); - public Task AddCard(Card card); + public Task AddCard(Card card); - public Task DeleteCard(string accessCode); + public Task DeleteCard(string accessCode); + + public Task UpdatePassword(string accessCode, string password, string salt); } \ No newline at end of file diff --git a/TaikoLocalServer/Services/Interfaces/IDanScoreDatumService.cs b/TaikoLocalServer/Services/Interfaces/IDanScoreDatumService.cs index bdf5c8b..17fef69 100644 --- a/TaikoLocalServer/Services/Interfaces/IDanScoreDatumService.cs +++ b/TaikoLocalServer/Services/Interfaces/IDanScoreDatumService.cs @@ -4,9 +4,9 @@ namespace TaikoLocalServer.Services.Interfaces; public interface IDanScoreDatumService { - public Task> GetDanScoreDatumByBaid(uint baid); + public Task> GetDanScoreDatumByBaid(ulong baid); - public Task GetSingleDanScoreDatum(uint baid, uint danId); + public Task GetSingleDanScoreDatum(ulong baid, uint danId); public Task InsertOrUpdateDanScoreDatum(DanScoreDatum datum); } \ No newline at end of file diff --git a/TaikoLocalServer/Services/Interfaces/IGameDataService.cs b/TaikoLocalServer/Services/Interfaces/IGameDataService.cs index 7d41f53..43ccd78 100644 --- a/TaikoLocalServer/Services/Interfaces/IGameDataService.cs +++ b/TaikoLocalServer/Services/Interfaces/IGameDataService.cs @@ -1,21 +1,40 @@ using System.Collections.Immutable; +using SharedProject.Models; namespace TaikoLocalServer.Services.Interfaces; public interface IGameDataService { - public Task InitializeAsync(); - - public List GetMusicList(); + public Task InitializeAsync(); - public List GetMusicWithUraList(); + public List GetMusicList(); - public ImmutableDictionary GetMusicAttributes(); + public List GetMusicWithUraList(); - public ImmutableDictionary GetDanDataDictionary(); + public ImmutableDictionary GetMusicInfoes(); - public ImmutableDictionary GetSongIntroDictionary(); + public ImmutableDictionary GetDanDataDictionary(); + + public ImmutableDictionary GetGaidenDataDictionary(); - public ImmutableDictionary GetFolderDictionary(); + public ImmutableDictionary GetSongIntroDictionary(); + + public ImmutableDictionary GetMovieDataDictionary(); + + public ImmutableDictionary GetFolderDictionary(); + + public List GetShopFolderList(); + + public Dictionary GetTokenDataDictionary(); + + public List GetLockedSongsList(); + + public List GetCostumeFlagArraySizes(); + + public int GetTitleFlagArraySize(); + + public int GetToneFlagArraySize(); + + public ImmutableDictionary GetQRCodeDataDictionary(); } diff --git a/TaikoLocalServer/Services/Interfaces/ISongBestDatumService.cs b/TaikoLocalServer/Services/Interfaces/ISongBestDatumService.cs index fe3f389..77664dc 100644 --- a/TaikoLocalServer/Services/Interfaces/ISongBestDatumService.cs +++ b/TaikoLocalServer/Services/Interfaces/ISongBestDatumService.cs @@ -5,9 +5,9 @@ namespace TaikoLocalServer.Services.Interfaces; public interface ISongBestDatumService { - public Task> GetAllSongBestData(uint baid); + public Task> GetAllSongBestData(ulong baid); public Task UpdateOrInsertSongBestDatum(SongBestDatum datum); - public Task> GetAllSongBestAsModel(uint baid); + public Task> GetAllSongBestAsModel(ulong baid); } \ No newline at end of file diff --git a/TaikoLocalServer/Services/Interfaces/ISongPlayDatumService.cs b/TaikoLocalServer/Services/Interfaces/ISongPlayDatumService.cs index c179951..1f8e3ca 100644 --- a/TaikoLocalServer/Services/Interfaces/ISongPlayDatumService.cs +++ b/TaikoLocalServer/Services/Interfaces/ISongPlayDatumService.cs @@ -4,7 +4,7 @@ namespace TaikoLocalServer.Services.Interfaces; public interface ISongPlayDatumService { - public Task> GetSongPlayDatumByBaid(uint baid); + public Task> GetSongPlayDatumByBaid(ulong baid); - public Task AddSongPlayDatum(SongPlayDatum datum); + public Task AddSongPlayDatum(SongPlayDatum datum); } \ No newline at end of file diff --git a/TaikoLocalServer/Services/Interfaces/IUserDatumService.cs b/TaikoLocalServer/Services/Interfaces/IUserDatumService.cs index 6fc9b75..5019be5 100644 --- a/TaikoLocalServer/Services/Interfaces/IUserDatumService.cs +++ b/TaikoLocalServer/Services/Interfaces/IUserDatumService.cs @@ -4,21 +4,21 @@ namespace TaikoLocalServer.Services.Interfaces; public interface IUserDatumService { - public Task GetFirstUserDatumOrNull(uint baid); - - public Task GetFirstUserDatumOrDefault(uint baid); + public Task GetFirstUserDatumOrNull(ulong baid); - public Task> GetAllUserData(); + public Task GetFirstUserDatumOrDefault(ulong baid); - public Task UpdateOrInsertUserDatum(UserDatum userDatum); - - public Task InsertUserDatum(UserDatum userDatum); - - public Task UpdateUserDatum(UserDatum userDatum); + public Task> GetAllUserData(); + + public Task UpdateOrInsertUserDatum(UserDatum userDatum); + + public Task InsertUserDatum(UserDatum userDatum); + + public Task UpdateUserDatum(UserDatum userDatum); + + public Task> GetFavoriteSongIds(ulong baid); + + public Task UpdateFavoriteSong(ulong baid, uint songId, bool isFavorite); - public Task> GetFavoriteSongIds(uint baid); - public Task UpdateFavoriteSong(uint baid, uint songId, bool isFavorite); - - } \ No newline at end of file diff --git a/TaikoLocalServer/Services/SongBestDatumService.cs b/TaikoLocalServer/Services/SongBestDatumService.cs index 52ca3fe..f76ce61 100644 --- a/TaikoLocalServer/Services/SongBestDatumService.cs +++ b/TaikoLocalServer/Services/SongBestDatumService.cs @@ -15,7 +15,7 @@ public class SongBestDatumService : ISongBestDatumService this.context = context; } - public async Task> GetAllSongBestData(uint baid) + public async Task> GetAllSongBestData(ulong baid) { return await context.SongBestData.Where(datum => datum.Baid == baid).ToListAsync(); } @@ -37,7 +37,7 @@ public class SongBestDatumService : ISongBestDatumService await context.SaveChangesAsync(); } - public async Task> GetAllSongBestAsModel(uint baid) + public async Task> GetAllSongBestAsModel(ulong baid) { var songbestDbData = await context.SongBestData.Where(datum => datum.Baid == baid) .ToListAsync(); diff --git a/TaikoLocalServer/Services/SongPlayDatumService.cs b/TaikoLocalServer/Services/SongPlayDatumService.cs index e456e14..55229b6 100644 --- a/TaikoLocalServer/Services/SongPlayDatumService.cs +++ b/TaikoLocalServer/Services/SongPlayDatumService.cs @@ -12,7 +12,7 @@ class SongPlayDatumService : ISongPlayDatumService this.context = context; } - public async Task> GetSongPlayDatumByBaid(uint baid) + public async Task> GetSongPlayDatumByBaid(ulong baid) { return await context.SongPlayData.Where(datum => datum.Baid == baid).ToListAsync(); } diff --git a/TaikoLocalServer/Services/UserDatumService.cs b/TaikoLocalServer/Services/UserDatumService.cs index 39a7309..00a1f43 100644 --- a/TaikoLocalServer/Services/UserDatumService.cs +++ b/TaikoLocalServer/Services/UserDatumService.cs @@ -17,12 +17,12 @@ public class UserDatumService : IUserDatumService this.logger = logger; } - public async Task GetFirstUserDatumOrNull(uint baid) + public async Task GetFirstUserDatumOrNull(ulong baid) { return await context.UserData.FindAsync(baid); } - public async Task GetFirstUserDatumOrDefault(uint baid) + public async Task GetFirstUserDatumOrDefault(ulong baid) { return await context.UserData.FindAsync(baid) ?? new UserDatum(); } @@ -57,7 +57,7 @@ public class UserDatumService : IUserDatumService await context.SaveChangesAsync(); } - public async Task> GetFavoriteSongIds(uint baid) + public async Task> GetFavoriteSongIds(ulong baid) { var userDatum = await context.UserData.FindAsync(baid); userDatum.ThrowIfNull($"User with baid: {baid} not found!"); @@ -77,7 +77,7 @@ public class UserDatumService : IUserDatumService return result; } - public async Task UpdateFavoriteSong(uint baid, uint songId, bool isFavorite) + public async Task UpdateFavoriteSong(ulong baid, uint songId, bool isFavorite) { var userDatum = await context.UserData.FindAsync(baid); userDatum.ThrowIfNull($"User with baid: {baid} not found!"); diff --git a/TaikoLocalServer/Settings/DataSettings.cs b/TaikoLocalServer/Settings/DataSettings.cs index 619b18e..a9a92f8 100644 --- a/TaikoLocalServer/Settings/DataSettings.cs +++ b/TaikoLocalServer/Settings/DataSettings.cs @@ -2,9 +2,21 @@ public class DataSettings { - public string DanDataFileName { get; set; } = "dan_data.json"; + public string DanDataFileName { get; set; } = "dan_data.json"; + + public string GaidenDataFileName { get; set; } = "gaiden_data.json"; - public string EventFolderDataFileName { get; set; } = "event_folder_data.json"; + public string EventFolderDataFileName { get; set; } = "event_folder_data.json"; - public string IntroDataFileName { get; set; } = "intro_data.json"; + public string IntroDataFileName { get; set; } = "intro_data.json"; + + public string MovieDataFileName { get; set; } = "movie_data.json"; + + public string ShopFolderDataFileName { get; set; } = "shop_folder_data.json"; + + public string TokenDataFileName { get; set; } = "token_data.json"; + + public string LockedSongsDataFileName { get; set; } = "locked_songs_data.json"; + + public string QRCodeDataFileName { get; set; } = "qrcode_data.json"; } \ No newline at end of file diff --git a/TaikoLocalServer/TaikoLocalServer.csproj b/TaikoLocalServer/TaikoLocalServer.csproj index 3d314db..f7fe243 100644 --- a/TaikoLocalServer/TaikoLocalServer.csproj +++ b/TaikoLocalServer/TaikoLocalServer.csproj @@ -1,10 +1,12 @@ - + - net6.0 + net8.0 enable enable - 0.3.0-alpha + 0.4.0-alpha + 11 + false @@ -12,23 +14,24 @@ - - - - + + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - - - - - - + + + + + + + + + + + @@ -58,6 +61,60 @@ PreserveNewest + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + @@ -70,12 +127,6 @@ PreserveNewest - - PreserveNewest - - - PreserveNewest - diff --git a/TaikoLocalServer/wwwroot/data/dan_data.json b/TaikoLocalServer/wwwroot/data/dan_data.json index dae1a65..d39ed99 100644 --- a/TaikoLocalServer/wwwroot/data/dan_data.json +++ b/TaikoLocalServer/wwwroot/data/dan_data.json @@ -5,17 +5,17 @@ "title":"5kyuu", "aryOdaiSong":[ { - "songNo":828, + "songNo":420, "level":2, "isHiddenSongName":false }, { - "songNo":187, + "songNo":881, "level":2, "isHiddenSongName":false }, { - "songNo":789, + "songNo":995, "level":2, "isHiddenSongName":false } @@ -30,8 +30,8 @@ { "odaiType":8, "borderType":1, - "redBorderTotal":786, - "goldBorderTotal":832 + "redBorderTotal":884, + "goldBorderTotal":936 } ] }, @@ -41,17 +41,17 @@ "title":"4kyuu", "aryOdaiSong":[ { - "songNo":874, + "songNo":828, "level":3, "isHiddenSongName":false }, { - "songNo":411, + "songNo":882, "level":3, "isHiddenSongName":false }, { - "songNo":793, + "songNo":284, "level":3, "isHiddenSongName":false } @@ -66,14 +66,14 @@ { "odaiType":8, "borderType":1, - "redBorderTotal":970, - "goldBorderTotal":1023 + "redBorderTotal":1171, + "goldBorderTotal":1235 }, { "odaiType":4, "borderType":1, - "redBorderTotal":84, - "goldBorderTotal":65 + "redBorderTotal":92, + "goldBorderTotal":78 } ] }, @@ -83,17 +83,17 @@ "title":"3kyuu", "aryOdaiSong":[ { - "songNo":405, + "songNo":268, "level":3, "isHiddenSongName":false }, { - "songNo":728, + "songNo":1035, "level":3, "isHiddenSongName":false }, { - "songNo":893, + "songNo":1079, "level":3, "isHiddenSongName":false } @@ -108,14 +108,14 @@ { "odaiType":8, "borderType":1, - "redBorderTotal":1180, - "goldBorderTotal":1230 + "redBorderTotal":1521, + "goldBorderTotal":1586 }, { "odaiType":4, "borderType":1, - "redBorderTotal":65, - "goldBorderTotal":43 + "redBorderTotal":70, + "goldBorderTotal":47 } ] }, @@ -125,17 +125,17 @@ "title":"2kyuu", "aryOdaiSong":[ { - "songNo":140, + "songNo":84, "level":3, "isHiddenSongName":false }, { - "songNo":414, + "songNo":405, "level":3, "isHiddenSongName":false }, { - "songNo":354, + "songNo":730, "level":3, "isHiddenSongName":false } @@ -150,14 +150,14 @@ { "odaiType":8, "borderType":1, - "redBorderTotal":1555, - "goldBorderTotal":1604 + "redBorderTotal":1287, + "goldBorderTotal":1328 }, { "odaiType":4, "borderType":1, - "redBorderTotal":55, - "goldBorderTotal":27 + "redBorderTotal":47, + "goldBorderTotal":23 } ] }, @@ -167,18 +167,18 @@ "title":"1kyuu", "aryOdaiSong":[ { - "songNo":881, + "songNo":907, "level":3, "isHiddenSongName":false }, { - "songNo":421, - "level":3, + "songNo":884, + "level":4, "isHiddenSongName":false }, { - "songNo":641, - "level":3, + "songNo":9, + "level":4, "isHiddenSongName":false } ], @@ -192,14 +192,14 @@ { "odaiType":8, "borderType":1, - "redBorderTotal":2135, - "goldBorderTotal":2183 + "redBorderTotal":1365, + "goldBorderTotal":1408 }, { "odaiType":4, "borderType":1, - "redBorderTotal":40, - "goldBorderTotal":32 + "redBorderTotal":37, + "goldBorderTotal":31 } ] }, @@ -209,17 +209,17 @@ "title":"1dan", "aryOdaiSong":[ { - "songNo":809, + "songNo":384, "level":4, "isHiddenSongName":false }, { - "songNo":303, + "songNo":273, "level":4, "isHiddenSongName":false }, { - "songNo":689, + "songNo":1100, "level":4, "isHiddenSongName":false } @@ -232,10 +232,10 @@ "goldBorderTotal":100 }, { - "odaiType":5, + "odaiType":2, "borderType":1, - "redBorderTotal":370, - "goldBorderTotal":520 + "redBorderTotal":934, + "goldBorderTotal":980 }, { "odaiType":4, @@ -246,12 +246,12 @@ { "odaiType":6, "borderType":2, - "redBorder_1":43, - "goldBorder_1":54, - "redBorder_2":77, - "goldBorder_2":94, - "redBorder_3":0, - "goldBorder_3":0 + "redBorder_1":58, + "goldBorder_1":65, + "redBorder_2":75, + "goldBorder_2":84, + "redBorder_3":29, + "goldBorder_3":33 } ] }, @@ -261,17 +261,17 @@ "title":"2dan", "aryOdaiSong":[ { - "songNo":726, + "songNo":436, "level":4, "isHiddenSongName":false }, { - "songNo":861, + "songNo":305, "level":4, "isHiddenSongName":false }, { - "songNo":52, + "songNo":1053, "level":4, "isHiddenSongName":false } @@ -284,26 +284,26 @@ "goldBorderTotal":100 }, { - "odaiType":5, + "odaiType":2, "borderType":1, - "redBorderTotal":480, - "goldBorderTotal":647 + "redBorderTotal":976, + "goldBorderTotal":1021 }, { "odaiType":4, "borderType":1, - "redBorderTotal":25, - "goldBorderTotal":16 + "redBorderTotal":26, + "goldBorderTotal":14 }, { "odaiType":6, "borderType":2, - "redBorder_1":24, - "goldBorder_1":30, - "redBorder_2":16, - "goldBorder_2":20, - "redBorder_3":16, - "goldBorder_3":21 + "redBorder_1":63, + "goldBorder_1":71, + "redBorder_2":80, + "goldBorder_2":90, + "redBorder_3":139, + "goldBorder_3":157 } ] }, @@ -313,17 +313,17 @@ "title":"3dan", "aryOdaiSong":[ { - "songNo":804, + "songNo":973, "level":4, "isHiddenSongName":false }, { - "songNo":474, + "songNo":364, "level":4, "isHiddenSongName":false }, { - "songNo":141, + "songNo":426, "level":4, "isHiddenSongName":false } @@ -336,26 +336,26 @@ "goldBorderTotal":100 }, { - "odaiType":5, + "odaiType":2, "borderType":1, - "redBorderTotal":590, - "goldBorderTotal":764 + "redBorderTotal":1254, + "goldBorderTotal":1308 }, { "odaiType":4, "borderType":1, - "redBorderTotal":24, - "goldBorderTotal":12 + "redBorderTotal":28, + "goldBorderTotal":14 }, { "odaiType":6, "borderType":2, - "redBorder_1":180, - "goldBorder_1":219, - "redBorder_2":63, - "goldBorder_2":75, - "redBorder_3":32, - "goldBorder_3":41 + "redBorder_1":29, + "goldBorder_1":33, + "redBorder_2":26, + "goldBorder_2":30, + "redBorder_3":132, + "goldBorder_3":148 } ] }, @@ -365,17 +365,17 @@ "title":"4dan", "aryOdaiSong":[ { - "songNo":523, + "songNo":212, "level":4, "isHiddenSongName":false }, { - "songNo":70, + "songNo":184, "level":4, "isHiddenSongName":false }, { - "songNo":735, + "songNo":137, "level":4, "isHiddenSongName":false } @@ -388,26 +388,26 @@ "goldBorderTotal":100 }, { - "odaiType":5, + "odaiType":2, "borderType":1, - "redBorderTotal":660, - "goldBorderTotal":842 + "redBorderTotal":1371, + "goldBorderTotal":1427 }, { "odaiType":4, "borderType":1, - "redBorderTotal":22, - "goldBorderTotal":11 + "redBorderTotal":25, + "goldBorderTotal":12 }, { "odaiType":6, "borderType":2, - "redBorder_1":121, - "goldBorder_1":141, - "redBorder_2":0, - "goldBorder_2":0, - "redBorder_3":76, - "goldBorder_3":93 + "redBorder_1":0, + "goldBorder_1":0, + "redBorder_2":11, + "goldBorder_2":13, + "redBorder_3":106, + "goldBorder_3":119 } ] }, @@ -417,17 +417,17 @@ "title":"5dan", "aryOdaiSong":[ { - "songNo":213, + "songNo":855, "level":4, "isHiddenSongName":false }, { - "songNo":428, + "songNo":950, "level":4, "isHiddenSongName":false }, { - "songNo":451, + "songNo":53, "level":4, "isHiddenSongName":false } @@ -440,26 +440,26 @@ "goldBorderTotal":100 }, { - "odaiType":5, + "odaiType":2, "borderType":1, - "redBorderTotal":825, - "goldBorderTotal":1007 + "redBorderTotal":1276, + "goldBorderTotal":1325 }, { "odaiType":4, "borderType":1, - "redBorderTotal":20, - "goldBorderTotal":10 + "redBorderTotal":19, + "goldBorderTotal":9 }, { "odaiType":6, "borderType":2, - "redBorder_1":33, - "goldBorder_1":40, - "redBorder_2":71, - "goldBorder_2":87, - "redBorder_3":75, - "goldBorder_3":94 + "redBorder_1":126, + "goldBorder_1":141, + "redBorder_2":199, + "goldBorder_2":222, + "redBorder_3":28, + "goldBorder_3":32 } ] }, @@ -469,18 +469,18 @@ "title":"6dan", "aryOdaiSong":[ { - "songNo":551, - "level":5, + "songNo":963, + "level":4, + "isHiddenSongName":false + }, + { + "songNo":918, + "level":4, "isHiddenSongName":false }, { "songNo":270, - "level":4, - "isHiddenSongName":false - }, - { - "songNo":645, - "level":4, + "level":5, "isHiddenSongName":false } ], @@ -494,24 +494,24 @@ { "odaiType":2, "borderType":1, - "redBorderTotal":1530, - "goldBorderTotal":1590 + "redBorderTotal":1745, + "goldBorderTotal":1809 }, { "odaiType":4, "borderType":1, - "redBorderTotal":18, - "goldBorderTotal":9 + "redBorderTotal":21, + "goldBorderTotal":10 }, { "odaiType":6, "borderType":2, - "redBorder_1":40, - "goldBorder_1":48, - "redBorder_2":15, - "goldBorder_2":18, - "redBorder_3":4, - "goldBorder_3":5 + "redBorder_1":154, + "goldBorder_1":165, + "redBorder_2":28, + "goldBorder_2":30, + "redBorder_3":0, + "goldBorder_3":0 } ] }, @@ -521,17 +521,17 @@ "title":"7dan", "aryOdaiSong":[ { - "songNo":805, + "songNo":919, "level":4, "isHiddenSongName":false }, { - "songNo":800, + "songNo":445, "level":4, "isHiddenSongName":false }, { - "songNo":361, + "songNo":202, "level":4, "isHiddenSongName":false } @@ -546,8 +546,8 @@ { "odaiType":2, "borderType":1, - "redBorderTotal":1790, - "goldBorderTotal":1895 + "redBorderTotal":1764, + "goldBorderTotal":1826 }, { "odaiType":4, @@ -558,12 +558,12 @@ { "odaiType":6, "borderType":2, - "redBorder_1":0, - "goldBorder_1":0, - "redBorder_2":44, - "goldBorder_2":52, - "redBorder_3":33, - "goldBorder_3":37 + "redBorder_1":135, + "goldBorder_1":148, + "redBorder_2":68, + "goldBorder_2":74, + "redBorder_3":288, + "goldBorder_3":317 } ] }, @@ -573,17 +573,17 @@ "title":"8dan", "aryOdaiSong":[ { - "songNo":239, + "songNo":684, "level":4, "isHiddenSongName":false }, { - "songNo":866, + "songNo":164, "level":4, "isHiddenSongName":false }, { - "songNo":431, + "songNo":1015, "level":4, "isHiddenSongName":false } @@ -598,60 +598,8 @@ { "odaiType":2, "borderType":1, - "redBorderTotal":1940, - "goldBorderTotal":2020 - }, - { - "odaiType":4, - "borderType":1, - "redBorderTotal":13, - "goldBorderTotal":6 - }, - { - "odaiType":6, - "borderType":2, - "redBorder_1":18, - "goldBorder_1":20, - "redBorder_2":158, - "goldBorder_2":187, - "redBorder_3":72, - "goldBorder_3":84 - } - ] - }, - { - "danId":14, - "verupNo":1, - "title":"9dan", - "aryOdaiSong":[ - { - "songNo":785, - "level":4, - "isHiddenSongName":false - }, - { - "songNo":780, - "level":4, - "isHiddenSongName":false - }, - { - "songNo":779, - "level":4, - "isHiddenSongName":false - } - ], - "aryOdaiBorder":[ - { - "odaiType":1, - "borderType":1, - "redBorderTotal":100, - "goldBorderTotal":100 - }, - { - "odaiType":2, - "borderType":1, - "redBorderTotal":2260, - "goldBorderTotal":2330 + "redBorderTotal":1892, + "goldBorderTotal":1955 }, { "odaiType":4, @@ -662,12 +610,64 @@ { "odaiType":6, "borderType":2, - "redBorder_1":44, - "goldBorder_1":51, - "redBorder_2":207, - "goldBorder_2":243, - "redBorder_3":6, - "goldBorder_3":8 + "redBorder_1":85, + "goldBorder_1":92, + "redBorder_2":72, + "goldBorder_2":76, + "redBorder_3":115, + "goldBorder_3":123 + } + ] + }, + { + "danId":14, + "verupNo":1, + "title":"9dan", + "aryOdaiSong":[ + { + "songNo":568, + "level":4, + "isHiddenSongName":false + }, + { + "songNo":117, + "level":4, + "isHiddenSongName":false + }, + { + "songNo":21, + "level":4, + "isHiddenSongName":false + } + ], + "aryOdaiBorder":[ + { + "odaiType":1, + "borderType":1, + "redBorderTotal":100, + "goldBorderTotal":100 + }, + { + "odaiType":2, + "borderType":1, + "redBorderTotal":2045, + "goldBorderTotal":2100 + }, + { + "odaiType":4, + "borderType":1, + "redBorderTotal":10, + "goldBorderTotal":5 + }, + { + "odaiType":6, + "borderType":2, + "redBorder_1":107, + "goldBorder_1":114, + "redBorder_2":74, + "goldBorder_2":79, + "redBorder_3":54, + "goldBorder_3":59 } ] }, @@ -677,17 +677,17 @@ "title":"10dan", "aryOdaiSong":[ { - "songNo":759, + "songNo":502, "level":4, "isHiddenSongName":false }, { - "songNo":719, + "songNo":360, "level":4, "isHiddenSongName":false }, { - "songNo":905, + "songNo":1104, "level":4, "isHiddenSongName":false } @@ -702,12 +702,12 @@ { "odaiType":3, "borderType":2, - "redBorder_1":30, - "goldBorder_1":13, - "redBorder_2":30, + "redBorder_1":20, + "goldBorder_1":11, + "redBorder_2":25, "goldBorder_2":13, - "redBorder_3":28, - "goldBorder_3":12 + "redBorder_3":30, + "goldBorder_3":16 }, { "odaiType":4, @@ -718,12 +718,12 @@ { "odaiType":6, "borderType":2, - "redBorder_1":26, - "goldBorder_1":31, - "redBorder_2":59, - "goldBorder_2":70, - "redBorder_3":53, - "goldBorder_3":61 + "redBorder_1":127, + "goldBorder_1":137, + "redBorder_2":16, + "goldBorder_2":17, + "redBorder_3":45, + "goldBorder_3":49 } ] }, @@ -733,19 +733,19 @@ "title":"11dan", "aryOdaiSong":[ { - "songNo":595, + "songNo":774, "level":4, "isHiddenSongName":false }, { - "songNo":714, + "songNo":954, "level":4, "isHiddenSongName":false }, { - "songNo":961, - "level":4, - "isHiddenSongName":false + "songNo":1121, + "level":5, + "isHiddenSongName":true } ], "aryOdaiBorder":[ @@ -765,17 +765,17 @@ "odaiType":4, "borderType":1, "redBorderTotal":6, - "goldBorderTotal":3 + "goldBorderTotal":4 }, { "odaiType":6, "borderType":2, - "redBorder_1":105, - "goldBorder_1":111, - "redBorder_2":32, - "goldBorder_2":34, - "redBorder_3":38, - "goldBorder_3":41 + "redBorder_1":155, + "goldBorder_1":171, + "redBorder_2":54, + "goldBorder_2":62, + "redBorder_3":70, + "goldBorder_3":72 } ] }, @@ -785,19 +785,19 @@ "title":"12dan", "aryOdaiSong":[ { - "songNo":859, - "level":4, - "isHiddenSongName":false - }, - { - "songNo":720, - "level":4, - "isHiddenSongName":false - }, - { - "songNo":959, + "songNo":736, "level":5, "isHiddenSongName":false + }, + { + "songNo":748, + "level":4, + "isHiddenSongName":false + }, + { + "songNo":1120, + "level":5, + "isHiddenSongName":true } ], "aryOdaiBorder":[ @@ -822,12 +822,12 @@ { "odaiType":6, "borderType":2, - "redBorder_1":4, - "goldBorder_1":5, - "redBorder_2":49, - "goldBorder_2":52, - "redBorder_3":6, - "goldBorder_3":7 + "redBorder_1":139, + "goldBorder_1":163, + "redBorder_2":58, + "goldBorder_2":69, + "redBorder_3":132, + "goldBorder_3":139 } ] }, @@ -837,19 +837,19 @@ "title":"13dan", "aryOdaiSong":[ { - "songNo":777, + "songNo":982, "level":4, "isHiddenSongName":false }, { - "songNo":716, - "level":5, + "songNo":990, + "level":4, "isHiddenSongName":false }, { - "songNo":958, + "songNo":1122, "level":5, - "isHiddenSongName":false + "isHiddenSongName":true } ], "aryOdaiBorder":[ @@ -874,12 +874,12 @@ { "odaiType":6, "borderType":2, - "redBorder_1":151, - "goldBorder_1":159, - "redBorder_2":8, - "goldBorder_2":9, - "redBorder_3":34, - "goldBorder_3":36 + "redBorder_1":86, + "goldBorder_1":96, + "redBorder_2":0, + "goldBorder_2":0, + "redBorder_3":232, + "goldBorder_3":273 } ] }, @@ -889,19 +889,19 @@ "title":"14dan", "aryOdaiSong":[ { - "songNo":627, + "songNo":555, "level":4, - "isHiddenSongName":false + "isHiddenSongName":true }, { - "songNo":463, - "level":4, - "isHiddenSongName":false - }, - { - "songNo":960, + "songNo":721, "level":5, - "isHiddenSongName":false + "isHiddenSongName":true + }, + { + "songNo":1129, + "level":5, + "isHiddenSongName":true } ], "aryOdaiBorder":[ @@ -926,12 +926,12 @@ { "odaiType":6, "borderType":2, - "redBorder_1":13, - "goldBorder_1":14, - "redBorder_2":25, - "goldBorder_2":27, - "redBorder_3":124, - "goldBorder_3":131 + "redBorder_1":34, + "goldBorder_1":35, + "redBorder_2":17, + "goldBorder_2":22, + "redBorder_3":40, + "goldBorder_3":50 } ] } diff --git a/TaikoLocalServer/wwwroot/data/gaiden_data.json b/TaikoLocalServer/wwwroot/data/gaiden_data.json new file mode 100644 index 0000000..d732bb2 --- /dev/null +++ b/TaikoLocalServer/wwwroot/data/gaiden_data.json @@ -0,0 +1,38 @@ +[ + { + "danId":20, + "verupNo":1, + "title":"gaiden_2022_odai_7", + "aryOdaiSong":[ + { + "songNo":828, + "level":2, + "isHiddenSongName":false + }, + { + "songNo":187, + "level":2, + "isHiddenSongName":false + }, + { + "songNo":789, + "level":2, + "isHiddenSongName":false + } + ], + "aryOdaiBorder":[ + { + "odaiType":1, + "borderType":1, + "redBorderTotal":92, + "goldBorderTotal":95 + }, + { + "odaiType":8, + "borderType":1, + "redBorderTotal":786, + "goldBorderTotal":832 + } + ] + } +] \ No newline at end of file diff --git a/TaikoLocalServer/wwwroot/data/intro_data.json b/TaikoLocalServer/wwwroot/data/intro_data.json index ac08a5c..e5941d2 100644 --- a/TaikoLocalServer/wwwroot/data/intro_data.json +++ b/TaikoLocalServer/wwwroot/data/intro_data.json @@ -2,73 +2,73 @@ { "setId":1, "verupNo":1, - "mainSongNo":895, - "subSongNo":[894,732,44,921] + "mainSongNo":1115, + "subSongNo":[1022,7,1089,1059] }, { "setId":2, "verupNo":1, - "mainSongNo":912, - "subSongNo":[827,871,36,227] + "mainSongNo":1102, + "subSongNo":[1065,966,1008,916] }, { "setId":3, "verupNo":1, - "mainSongNo":913, - "subSongNo":[460,916,430,872] + "mainSongNo":1091, + "subSongNo":[1009,1064,36,965] }, { "setId":4, "verupNo":1, - "mainSongNo":842, - "subSongNo":[7,233,256,831] + "mainSongNo":1117, + "subSongNo":[122,42,430,256] }, { "setId":5, "verupNo":1, - "mainSongNo":947, - "subSongNo":[926,882,730,695] + "mainSongNo":1116, + "subSongNo":[885,985,1003,1063] }, { "setId":6, "verupNo":1, - "mainSongNo":937, - "subSongNo":[828,925,474,924] - }, + "mainSongNo":1101, + "subSongNo":[915,1004,47,1054] + }, { "setId":7, "verupNo":1, - "mainSongNo":956, - "subSongNo":[839,255,285,187] + "mainSongNo":1111, + "subSongNo":[1028,937,374,1062] }, { "setId":8, "verupNo":1, - "mainSongNo":923, - "subSongNo":[729,873,789,893] + "mainSongNo":1112, + "subSongNo":[1065,1090,1073,1087] }, { "setId":9, "verupNo":1, - "mainSongNo":915, - "subSongNo":[726,811,711,303] + "mainSongNo":1090, + "subSongNo":[1112,1003,1007,1088] }, { "setId":10, "verupNo":1, - "mainSongNo":885, - "subSongNo":[837,464,801,18] + "mainSongNo":1113, + "subSongNo":[1061,1056,1060,1016] }, { "setId":11, "verupNo":1, - "mainSongNo":898, - "subSongNo":[47,135,374,792] + "mainSongNo":1127, + "subSongNo":[1038,665,1004,1088] }, { "setId":12, "verupNo":1, - "mainSongNo":948, - "subSongNo":[412,538,411,413] + "mainSongNo":1126, + "subSongNo":[1077,1030,730,1092] } ] \ No newline at end of file diff --git a/TaikoLocalServer/wwwroot/data/locked_songs_data.json b/TaikoLocalServer/wwwroot/data/locked_songs_data.json new file mode 100644 index 0000000..86598ab --- /dev/null +++ b/TaikoLocalServer/wwwroot/data/locked_songs_data.json @@ -0,0 +1,4 @@ +{ + "songNo": [ + ] +} \ No newline at end of file diff --git a/TaikoLocalServer/wwwroot/data/movie_data.json b/TaikoLocalServer/wwwroot/data/movie_data.json new file mode 100644 index 0000000..00e2ed7 --- /dev/null +++ b/TaikoLocalServer/wwwroot/data/movie_data.json @@ -0,0 +1,6 @@ +[ + { + "movie_id": 0, + "enable_days": 0 + } +] \ No newline at end of file diff --git a/TaikoLocalServer/wwwroot/data/qrcode_data.json b/TaikoLocalServer/wwwroot/data/qrcode_data.json new file mode 100644 index 0000000..4015685 --- /dev/null +++ b/TaikoLocalServer/wwwroot/data/qrcode_data.json @@ -0,0 +1,6 @@ +[ + { + "serial": "", + "id": 0 + } +] \ No newline at end of file diff --git a/TaikoLocalServer/wwwroot/data/shop_folder_data.json b/TaikoLocalServer/wwwroot/data/shop_folder_data.json new file mode 100644 index 0000000..a3c468e --- /dev/null +++ b/TaikoLocalServer/wwwroot/data/shop_folder_data.json @@ -0,0 +1,6 @@ +[ + { + "songNo": 2, + "price": 0 + } +] \ No newline at end of file diff --git a/TaikoLocalServer/wwwroot/data/token_data.json b/TaikoLocalServer/wwwroot/data/token_data.json new file mode 100644 index 0000000..a8edc65 --- /dev/null +++ b/TaikoLocalServer/wwwroot/data/token_data.json @@ -0,0 +1,6 @@ +{ + "shopTokenId": -1, + "kaTokenId": -1, + "onePieceTokenId": 100100, + "soshinaTokenId": 100200 +} \ No newline at end of file diff --git a/TaikoWebUI/Pages/Cards.razor b/TaikoWebUI/Pages/Cards.razor index b71d5ac..314105e 100644 --- a/TaikoWebUI/Pages/Cards.razor +++ b/TaikoWebUI/Pages/Cards.razor @@ -1,88 +1,186 @@ @inject HttpClient Client @inject IDialogService DialogService +@inject LoginService LoginService +@inject NavigationManager NavigationManager @page "/Cards"

Cards

- @if (response is null) { @for (uint i = 0; i < 3; i++) { - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + } } else if (response.Users.Count != 0) { - @foreach (var user in response.Users) + if (LoginService.IsAdmin || !LoginService.LoginRequired) { - - - - - @user.Baid - - - - - Delete Card - - - - - - Access Code - @user.AccessCode - - - - - Edit Profile - - - High Scores - Dani Dojo - - - - - + @foreach (var user in response.Users) + { + + + + + @user.Baid + + + + + Show QR Code + + + + Delete Card + + + + + + Access Code + @user.AccessCode + + + + + Edit Profile + + + High Scores + Dani Dojo + + + + + + } + } + else + { + @if (!LoginService.IsLoggedIn) + { + + + + + + + Login + + + + + Login + @if (!LoginService.OnlyAdmin) + { + Register + } + + + + + + + + } + else + { + var user = response.Users[LoginService.GetBaid() - 1]; + + + + + @user.Baid + + + + + Show QR Code + + + + Delete Card + + + + + + Access Code + @user.AccessCode + + + + + Edit Profile + + + High Scores + Dani Dojo + + + + + + } } } else { - - - No data. - - + + + No data. + + } - \ No newline at end of file + diff --git a/TaikoWebUI/Pages/Cards.razor.cs b/TaikoWebUI/Pages/Cards.razor.cs index 0b7eb8f..b686517 100644 --- a/TaikoWebUI/Pages/Cards.razor.cs +++ b/TaikoWebUI/Pages/Cards.razor.cs @@ -4,6 +4,9 @@ namespace TaikoWebUI.Pages; public partial class Cards { + private string cardNum = ""; + private MudForm loginForm = default!; + private string password = ""; private DashboardResponse? response; protected override async Task OnInitializedAsync() @@ -22,12 +25,67 @@ public partial class Cards var dialog = DialogService.Show("Delete Card", parameters); var result = await dialog.Result; - if (result.Cancelled) - { - return; - } + if (result.Cancelled) return; response = await Client.GetFromJsonAsync("api/Dashboard"); } + + private async Task OnLogin() + { + if (response != null) + { + var result = LoginService.Login(cardNum, password, response); + switch (result) + { + case 0: + await DialogService.ShowMessageBox( + "Error", + "Only admin can log in.", + "Ok"); + loginForm.Reset(); + break; + case 1: + NavigationManager.NavigateTo("/Cards"); + break; + case 2: + await DialogService.ShowMessageBox( + "Error", + "Wrong password!", + "Ok"); + break; + case 3: + await DialogService.ShowMessageBox( + "Error", + (MarkupString) + "Card number not found.
Please play one game with this card number to register it.", + "Ok"); + break; + case 4: + await DialogService.ShowMessageBox( + "Error", + (MarkupString) + "Card number not registered.
Please use register button to create a password first.", + "Ok"); + break; + } + } + } + private void OnLogout() + { + LoginService.Logout(); + NavigationManager.NavigateTo("/Cards"); + } + + private Task ShowQrCode(User user) + { + var parameters = new DialogParameters + { + ["user"] = user + }; + + DialogService.Show("QR Code", parameters); + + return Task.CompletedTask; + } } \ No newline at end of file diff --git a/TaikoWebUI/Pages/ChangePassword.razor b/TaikoWebUI/Pages/ChangePassword.razor new file mode 100644 index 0000000..7639410 --- /dev/null +++ b/TaikoWebUI/Pages/ChangePassword.razor @@ -0,0 +1,48 @@ +@inject HttpClient Client +@inject IDialogService DialogService +@inject LoginService LoginService +@inject NavigationManager NavigationManager + +@page "/Cards/ChangePassword" + +

Cards

+ +@if (LoginService.OnlyAdmin || !LoginService.LoginRequired) +{ +

Changing password is turned off

+} +else +{ + + + + + + + Change Password + + + + + + + + Change password + + + + + + +} \ No newline at end of file diff --git a/TaikoWebUI/Pages/ChangePassword.razor.cs b/TaikoWebUI/Pages/ChangePassword.razor.cs new file mode 100644 index 0000000..a1aa606 --- /dev/null +++ b/TaikoWebUI/Pages/ChangePassword.razor.cs @@ -0,0 +1,64 @@ +namespace TaikoWebUI.Pages; + +public partial class ChangePassword +{ + private string cardNum = ""; + private MudForm changePasswordForm = default!; + private string confirmNewPassword = ""; + private string newPassword = ""; + private string oldPassword = ""; + + private DashboardResponse? response; + + protected override async Task OnInitializedAsync() + { + await base.OnInitializedAsync(); + response = await Client.GetFromJsonAsync("api/Dashboard"); + } + + private async Task OnChangePassword() + { + if (response != null) + { + var result = await LoginService.ChangePassword(cardNum, oldPassword, newPassword, confirmNewPassword, + response, Client); + switch (result) + { + case 0: + await DialogService.ShowMessageBox( + "Error", + "Only admin can log in.", + "Ok"); + NavigationManager.NavigateTo("/Cards"); + break; + case 1: + await DialogService.ShowMessageBox( + "Success", + "Password changed successfully.", + "Ok"); + NavigationManager.NavigateTo("/Cards"); + break; + case 2: + await DialogService.ShowMessageBox( + "Error", + "Confirm new password is not the same as new password.", + "Ok"); + break; + case 3: + await DialogService.ShowMessageBox( + "Error", + (MarkupString) + "Card number not found.
Please play one game with this card number to register it.", + "Ok"); + break; + case 4: + await DialogService.ShowMessageBox( + "Error", + (MarkupString) + "Old password is wrong!", + "Ok"); + break; + } + } + } +} \ No newline at end of file diff --git a/TaikoWebUI/Pages/DaniDojo.razor b/TaikoWebUI/Pages/DaniDojo.razor index 4c7d71c..4676bb7 100644 --- a/TaikoWebUI/Pages/DaniDojo.razor +++ b/TaikoWebUI/Pages/DaniDojo.razor @@ -1,381 +1,302 @@ @inject IGameDataService GameDataService @inject HttpClient Client +@inject LoginService LoginService @page "/Cards/{baid:int}/DaniDojo"

Dani Dojo

-Card: @Baid +@if (LoginService.LoginRequired) +{ + Card: @LoginService.GetCardNum() +} +else +{ + Card: @Baid +} - +@if (LoginService.LoginRequired && (!LoginService.IsLoggedIn || (LoginService.Baid != Baid && !LoginService.IsAdmin))) +{ - - - @for (uint i = 1; i <= 19; i++) - { - var danId = i; - var danData = GameDataService.GetDanDataById(danId); + + Please log in by clicking on "cards" tab first. + + +} +else +{ + + + + + @for (uint i = 1; i <= 19; i++) + { + var danId = i; + var danData = GameDataService.GetDanDataById(danId); - - Details - - - - - - Result - - - - - @{ - var danResultState = GetDanResultState(danId); - var danClearStateString = GetDanClearStateString(danResultState); - } - danResultState.ToString() - @danClearStateString - - - - - - - - + + Details + + + - High Score + Result - - @{ - var totalScore = GetTotalScore(danId); - } - - - @totalScore + + + @{ + var danResultState = GetDanResultState(danId); + var danClearStateString = GetDanClearStateString(danResultState); + } + danResultState.ToString() + @danClearStateString - - - - Totals - - - - @{ - var totalGoods = GetTotalGoodHits(danId); - var totalOks = GetTotalOkHits(danId); - var totalBads = GetTotalBadHits(danId); - var totalDrumroll = GetTotalDrumrollHits(danId); - var totalMaxCombo = GetTotalMaxCombo(danId); - var totalHits = GetTotalHits(danId); - } - - - - Good - @totalGoods - - - OK - @totalOks - - - Bad - @totalBads - - - Drumroll - @totalDrumroll - - - MAX Combo - @totalMaxCombo - - - Total Hits - @totalHits - - - - - - - + - Songs - - - - @for (uint j = 0; j <= 2; j++) - { - var index = (int)j; - var danDataOdaiSong = danData.OdaiSongList[index]; - var stageNumber = j + 1; - var difficulty = (Difficulty)danDataOdaiSong.Level; - - - - - -

@stageNumber

-
- - - - @difficulty - - - - @GameDataService.GetMusicStarLevel(danDataOdaiSong.SongNo, difficulty) - - - - - @GameDataService.GetMusicNameBySongId(danDataOdaiSong.SongNo) - @GameDataService.GetMusicArtistBySongId(danDataOdaiSong.SongNo) - - - - @if (bestDataMap.ContainsKey(danId)) - { - var danBestData = bestDataMap[danId]; - if (danBestData.DanBestStageDataList.Count > index) - { - var bestStage = danBestData.DanBestStageDataList[index]; - - - - - Good - @bestStage.GoodCount - - - OK - @bestStage.OkCount - - - Bad - @bestStage.BadCount - - - Drumroll - @bestStage.DrumrollCount - - - MAX Combo - @bestStage.ComboCount - - - Total Hits - @bestStage.TotalHitCount - - - - } - } -
-
-
- } -
-
-
- - Conditions - - - - - - + + + + - Soul Gauge + High Score - - - @{ - var redRequirement = GetSoulGauge(danData, false); - var goldRequirement = GetSoulGauge(danData, true); - var barClass = "bar-default"; - var resultText = "Failed"; - } - - Result - @if (bestDataMap.ContainsKey(danId)) - { - var danBestData = bestDataMap[danId]; - - if (danBestData.SoulGaugeTotal >= redRequirement) { - barClass = "bar-pass-red"; - resultText = "Pass"; - } - - if (danBestData.SoulGaugeTotal >= goldRequirement) { - barClass = "bar-pass-gold"; - resultText = "Gold"; - } - - - @(danBestData.SoulGaugeTotal)% - - @resultText - } else { - - 0% - - N/A - } - - - Conditions - - - Red - > @redRequirement% - - - Gold - > @goldRequirement% - - - + + @{ + var totalScore = GetTotalScore(danId); + } + + + @totalScore - + + + + Totals + + + + @{ + var totalGoods = GetTotalGoodHits(danId); + var totalOks = GetTotalOkHits(danId); + var totalBads = GetTotalBadHits(danId); + var totalDrumroll = GetTotalDrumrollHits(danId); + var totalMaxCombo = GetTotalMaxCombo(danId); + var totalHits = GetTotalHits(danId); + } + + + + Good + @totalGoods + + + OK + @totalOks + + + Bad + @totalBads + + + Drumroll + @totalDrumroll + + + MAX Combo + @totalMaxCombo + + + Total Hits + @totalHits + + + + + + + - - - @for (var j = 1; j < danData.OdaiBorderList.Count; j++) + Songs + + + + @for (uint j = 0; j <= 2; j++) { - var border = danData.OdaiBorderList[j]; - + var index = (int)j; + var danDataOdaiSong = danData.OdaiSongList[index]; + var stageNumber = j + 1; + var difficulty = (Difficulty)danDataOdaiSong.Level; + + + + + +

@stageNumber

+
+ + + + @difficulty + + + + @GameDataService.GetMusicStarLevel(danDataOdaiSong.SongNo, difficulty) + + + + + @GameDataService.GetMusicNameBySongId(danDataOdaiSong.SongNo) + @GameDataService.GetMusicArtistBySongId(danDataOdaiSong.SongNo) + + + + @if (bestDataMap.TryGetValue(danId, out var danBestData)) + { + if (danBestData.DanBestStageDataList.Count > index) + { + var bestStage = danBestData.DanBestStageDataList[index]; + + + + + Good + @bestStage.GoodCount + + + OK + @bestStage.OkCount + + + Bad + @bestStage.BadCount + + + Drumroll + @bestStage.DrumrollCount + + + MAX Combo + @bestStage.ComboCount + + + Total Hits + @bestStage.TotalHitCount + + + + } + } +
+
+
+ } +
+
+
+ + Conditions + + + + - - @GetDanRequirementTitle(border) - + Soul Gauge - @{ - var borderType = (DanBorderType)border.BorderType; - } - @if (borderType == DanBorderType.All) - { - - @{ - var redRequirement = border.RedBorderTotal; - var goldRequirement = border.GoldBorderTotal; - var barClass = "bar-default"; - var resultText = "Failed"; + + @{ + var redRequirement = GetSoulGauge(danData, false); + var goldRequirement = GetSoulGauge(danData, true); + var barClass = "bar-default"; + var resultText = "Failed"; + } + + Result + @if (bestDataMap.TryGetValue(danId, out var danBestData)) + { + if (danBestData.SoulGaugeTotal >= redRequirement) { + barClass = "bar-pass-red"; + resultText = "Pass"; } - - Result - @if (bestDataMap.ContainsKey(danId)) - { - var danBestData = bestDataMap[danId]; - var bestData = GetAllBestFromData((DanConditionType)border.OdaiType, danBestData); - if ((DanConditionType)border.OdaiType is DanConditionType.BadCount or DanConditionType.OkCount) - { - if (bestData <= redRequirement) - { - barClass = "bar-pass-red"; - resultText = "Pass"; - } - - if (bestData <= goldRequirement) - { - barClass = "bar-pass-gold"; - resultText = "Gold"; - } - - var resultValue = redRequirement - bestData; - if (resultValue < 0) resultValue = 0; - - - @resultValue - - @resultText - } - else - { - if (bestData >= redRequirement) - { - barClass = "bar-pass-red"; - resultText = "Pass"; - } - - if (bestData >= goldRequirement) - { - barClass = "bar-pass-gold"; - resultText = "Gold"; - } - - - @bestData - - @resultText - } - - } - else - { - - 0 - - N/A - } + if (danBestData.SoulGaugeTotal >= goldRequirement) { + barClass = "bar-pass-gold"; + resultText = "Gold"; + } + + + @danBestData.SoulGaugeTotal% + + @resultText + } else { + + 0% + + N/A + } + + + Conditions + + + Red + > @redRequirement% - @{ - var conditionOperator = GetDanConditionOperator((DanConditionType)border.OdaiType); - } - - Conditions - - - Red - @conditionOperator @redRequirement - - - Gold - @conditionOperator @goldRequirement - - + + Gold + > @goldRequirement% - } - else - { - - @for (var k = 0; k < 3; k++) - { - var songNumber = k; - var redRequirement = GetSongBorderCondition(border, songNumber, false); - var goldRequirement = GetSongBorderCondition(border, songNumber, true); - var barClass = "bar-default"; - var resultText = "Failed"; + + + + + - - - - - Stage @(songNumber + 1) - - - - Result - @if (bestDataMap.ContainsKey(danId)) + + + @for (var j = 1; j < danData.OdaiBorderList.Count; j++) + { + var border = danData.OdaiBorderList[j]; + + + + + + @GetDanRequirementTitle(border) + + + + + @{ + var borderType = (DanBorderType)border.BorderType; + } + @if (borderType == DanBorderType.All) + { + + @{ + var redRequirement = border.RedBorderTotal; + var goldRequirement = border.GoldBorderTotal; + var barClass = "bar-default"; + var resultText = "Failed"; + } + + Result + @if (bestDataMap.TryGetValue(danId, out var danBestData)) { - var danBestData = bestDataMap[danId]; - var bestData = GetSongBestFromData((DanConditionType)border.OdaiType, danBestData, songNumber); + var bestData = GetAllBestFromData((DanConditionType)border.OdaiType, danBestData); + if ((DanConditionType)border.OdaiType is DanConditionType.BadCount or DanConditionType.OkCount) { if (bestData <= redRequirement) @@ -389,6 +310,7 @@ barClass = "bar-pass-gold"; resultText = "Gold"; } + var resultValue = redRequirement - bestData; if (resultValue < 0) resultValue = 0; @@ -396,8 +318,8 @@ @resultValue @resultText - } - else + } + else { if (bestData >= redRequirement) { @@ -411,12 +333,10 @@ resultText = "Gold"; } - + @bestData - - @resultText - + @resultText } } @@ -425,48 +345,142 @@ 0 - - N/A + N/A + } + + @{ + var conditionOperator = GetDanConditionOperator((DanConditionType)border.OdaiType); + } + + Conditions + + + Red + @conditionOperator @redRequirement - } - @{ - var conditionOperator = GetDanConditionOperator((DanConditionType)border.OdaiType); - - - if (redRequirement == 0) { - conditionOperator = ""; - } - } - - Conditions - - - Red - @conditionOperator @redRequirement - - - Gold - @conditionOperator @goldRequirement - + + Gold + @conditionOperator @goldRequirement - - - - } - - } - - - } -
-
-
- -
- - } - - - -
\ No newline at end of file + + + } + else + { + + @for (var k = 0; k < 3; k++) + { + var songNumber = k; + var redRequirement = GetSongBorderCondition(border, songNumber, false); + var goldRequirement = GetSongBorderCondition(border, songNumber, true); + var barClass = "bar-default"; + var resultText = "Failed"; + + + + + + Stage @(songNumber + 1) + + + + Result + @if (bestDataMap.TryGetValue(danId, out var danBestData)) + { + var bestData = GetSongBestFromData((DanConditionType)border.OdaiType, danBestData, songNumber); + if ((DanConditionType)border.OdaiType is DanConditionType.BadCount or DanConditionType.OkCount) + { + if (bestData <= redRequirement) + { + barClass = "bar-pass-red"; + resultText = "Pass"; + } + + if (bestData <= goldRequirement) + { + barClass = "bar-pass-gold"; + resultText = "Gold"; + } + var resultValue = redRequirement - bestData; + if (bestData >= redRequirement) resultValue = 0; + + + @resultValue + + @resultText + } + else + { + if (bestData >= redRequirement) + { + barClass = "bar-pass-red"; + resultText = "Pass"; + } + + if (bestData >= goldRequirement) + { + barClass = "bar-pass-gold"; + resultText = "Gold"; + } + + + @bestData + + + @resultText + + } + + } + else + { + + 0 + + + N/A + + } + @{ + var conditionOperator = GetDanConditionOperator((DanConditionType)border.OdaiType); + + + if (redRequirement == 0) { + conditionOperator = ""; + } + } + + Conditions + + + Red + @conditionOperator @redRequirement + + + Gold + @conditionOperator @goldRequirement + + + + + + + } + + } + + + } + + + + + + + } + + + + +} \ No newline at end of file diff --git a/TaikoWebUI/Pages/Dialogs/UserQrCodeDialog.razor b/TaikoWebUI/Pages/Dialogs/UserQrCodeDialog.razor new file mode 100644 index 0000000..de2b90a --- /dev/null +++ b/TaikoWebUI/Pages/Dialogs/UserQrCodeDialog.razor @@ -0,0 +1,38 @@ +@using TaikoWebUI.Shared.Models +@using System.Collections.Immutable +@inject IGameDataService GameDataService + + + + + + + Ok + + + +@code { + + [CascadingParameter] + MudDialogInstance MudDialog { get; set; } = null!; + + [Parameter] + public User User { get; set; } = new(); + + private string qrCode = string.Empty; + + protected override void OnInitialized() + { + base.OnInitialized(); + qrCode = "BNTTCNID" + User.AccessCode; + } + + private void Submit() + { + MudDialog.Close(DialogResult.Ok(true)); + } +} \ No newline at end of file diff --git a/TaikoWebUI/Pages/HighScores.razor b/TaikoWebUI/Pages/HighScores.razor index aa54e55..c67df3a 100644 --- a/TaikoWebUI/Pages/HighScores.razor +++ b/TaikoWebUI/Pages/HighScores.razor @@ -1,12 +1,20 @@ @inject IGameDataService GameDataService @inject HttpClient Client +@inject LoginService LoginService @page "/Cards/{baid:int}/HighScores"

High Scores

-Card: @Baid +@if (LoginService.LoginRequired) +{ + Card: @LoginService.GetCardNum() +} +else +{ + Card: @Baid +} @if (response is null) @@ -19,155 +27,166 @@ } else { - - - @foreach (var difficulty in Enum.GetValues()) - { - @if (difficulty is not Difficulty.None) + @if (LoginService.LoginRequired && (!LoginService.IsLoggedIn || (LoginService.Baid != Baid && !LoginService.IsAdmin))) + { + + + Please log in by clicking on "cards" tab first. + + + } + else + { + + + @foreach (var difficulty in Enum.GetValues()) { - - @if (songBestDataMap.ContainsKey(difficulty)) - { - - - - - -
- @context.Item.MusicName - @context.Item.MusicArtist -
-
- -
-
-
-
- - - - - @GameDataService.GetMusicStarLevel(@context.Item.SongId, difficulty) - - - - - - - @GetGenreTitle(context.Item.Genre) - - - - - - - @(GetCrownText(context.Item.BestCrown)) - - - - - @if (context.Item.BestScoreRank is not ScoreRank.None) - { - @(GetRankText(context.Item.BestScoreRank)) - } - - - - - - - - - - - @(context.Item.ShowAiData ? "Hide" : "Show") - - - - - - - - -
- - @if (context.Item.ShowAiData) - { - - - - AI Battle Data - - - - - - Section No. - Result - Score - Crown - Good - OK - Bad - Drumroll - - - @(aiSectionContext.SectionIndex + 1) - - @if (@aiSectionContext.IsWin) { - Win - } - else - { - Lose - } - - @aiSectionContext.Score - - @(GetCrownText(aiSectionContext.Crown)) - - @aiSectionContext.GoodCount - @aiSectionContext.OkCount - @aiSectionContext.MissCount - @aiSectionContext.DrumrollCount - - - - - } - - - - -
- } - else - { - - - - No data for selected difficulty. - - - - } -
+ @if (difficulty is not Difficulty.None) + { + + @if (songBestDataMap.TryGetValue(difficulty, out var value)) + { + + + + + +
+ @context.Item.MusicName + @context.Item.MusicArtist +
+
+ +
+
+
+
+ + + + + @GameDataService.GetMusicStarLevel(@context.Item.SongId, difficulty) + + + + + + + @GetGenreTitle(context.Item.Genre) + + + + + + + @(GetCrownText(context.Item.BestCrown)) + + + + + @if (context.Item.BestScoreRank is not ScoreRank.None) + { + @(GetRankText(context.Item.BestScoreRank)) + } + + + + + + + + + + + @(context.Item.ShowAiData ? "Hide" : "Show") + + + + + + + + +
+ + @if (context.Item.ShowAiData) + { + + + + AI Battle Data + + + + + + Section No. + Result + Score + Crown + Good + OK + Bad + Drumroll + + + @(aiSectionContext.SectionIndex + 1) + + @if (@aiSectionContext.IsWin) { + Win + } + else + { + Lose + } + + @aiSectionContext.Score + + @(GetCrownText(aiSectionContext.Crown)) + + @aiSectionContext.GoodCount + @aiSectionContext.OkCount + @aiSectionContext.MissCount + @aiSectionContext.DrumrollCount + + + + + } + + + + +
+ } + else + { + + + + No data for selected difficulty. + + + + } +
+ } } - } -
-
+
+
+ } }
\ No newline at end of file diff --git a/TaikoWebUI/Pages/Profile.razor b/TaikoWebUI/Pages/Profile.razor index 1373290..39afad8 100644 --- a/TaikoWebUI/Pages/Profile.razor +++ b/TaikoWebUI/Pages/Profile.razor @@ -2,213 +2,308 @@ @inject HttpClient Client @inject IGameDataService GameDataService @inject IDialogService DialogService +@inject LoginService LoginService

Profile

-Card: @Baid +@if (LoginService.LoginRequired) +{ + Card: @LoginService.GetCardNum() +} +else +{ + Card: @Baid +} @if (response is not null) { - - - - - - -

Profile Options

- - - - - - - - Select a Title - - - - - @for (uint i = 0; i < 8; i++) + @if (LoginService.LoginRequired && (!LoginService.IsLoggedIn || (LoginService.Baid != Baid && !LoginService.IsAdmin))) + { + + + Please log in by clicking on "cards" tab first. + + + } + else + { + + + + + + +

Profile Options

+ + + + + + + + @for (uint i = 0; i < LanguageStrings.Length; i++) + { + var index = i; + @LanguageStrings[index] + } + + + + + + + + + Select a Title + + + + + @for (uint i = 0; i < TitlePlateStrings.Length; i++) + { + var index = i; + @TitlePlateStrings[index] + } + + + + + + @foreach (var item in Enum.GetValues()) { - var index = i; - @TitlePlateStrings[index] + } -
-
+ + + + + + + + + + + + @for (uint i = 0; i < DifficultySettingCourseStrings.Length; i++) + { + var index = i; + @DifficultySettingCourseStrings[index] + } + + + + @for (uint i = 0; i < DifficultySettingStarStrings.Length; i++) + { + var index = i; + @DifficultySettingStarStrings[index] + } + + + + @for (uint i = 0; i < DifficultySettingSortStrings.Length; i++) + { + var index = i; + @DifficultySettingSortStrings[index] + } + + + + +
+
+ + + +

Costume Options

+ + + + + @for (var i = 0; i < costumeFlagArraySizes[1]; i++) + { + var index = (uint)i; + var costumeTitle = GameDataService.GetHeadTitle(index); + @index - @costumeTitle + } + + + + @for (var i = 0; i < costumeFlagArraySizes[2]; i++) + { + var index = (uint)i; + var costumeTitle = GameDataService.GetBodyTitle(index); + @index - @costumeTitle + } + + + + @for (var i = 0; i < costumeFlagArraySizes[3]; i++) + { + var index = (uint)i; + var costumeTitle = GameDataService.GetFaceTitle(index); + @index - @costumeTitle + } + + + + @for (var i = 0; i < costumeFlagArraySizes[0]; i++) + { + var index = (uint)i; + var costumeTitle = GameDataService.GetKigurumiTitle(index); + @index - @costumeTitle + } + + + + @for (var i = 0; i < costumeFlagArraySizes[4]; i++) + { + var index = (uint)i; + var costumeTitle = GameDataService.GetPuchiTitle(index); + @index - @costumeTitle + } + + + + + + @for (uint i = 0; i < Constants.COSTUME_COLOR_MAX; i++) + { + var index = i; + +
+ @index +
+ } +
+ + @for (uint i = 0; i < Constants.COSTUME_COLOR_MAX; i++) + { + var index = i; + +
+ @index +
+ } +
+ + @for (uint i = 0; i < Constants.COSTUME_COLOR_MAX; i++) + { + var index = i; + +
+ @index +
+ } +
+
+
+
+
+
+ + + +

Song Options

+ + + + + + + + + + + + + @for (uint i = 0; i < SpeedStrings.Length; i++) + { + var index = i; + @SpeedStrings[index] + } + + + + @foreach (var item in Enum.GetValues()) + { + + } + + + + @for (uint i = 0; i < ToneStrings.Length; i++) + { + var index = i; + @ToneStrings[index] + } + + + + Notes Position + + + + +
+
+
+
+
+ + + + + +
+ @if (response.Kigurumi == 0) + { + + + - - @foreach (var item in Enum.GetValues()) - { - - } - + - - - - + + + + } + else + { + + + + } + + +
+
+ @* + Share + Learn More + *@ +
- - -

Costume Options

- - - - - @for (var i = 0; i < Constants.COSTUME_HEAD_MAX; i++) - { - var index = (uint)i; - var costumeTitle = GameDataService.GetHeadTitle(index); - @index - @costumeTitle - } - - - - @for (var i = 0; i < Constants.COSTUME_BODY_MAX; i++) - { - var index = (uint)i; - var costumeTitle = GameDataService.GetBodyTitle(index); - @index - @costumeTitle - } - - - - @for (var i = 0; i < Constants.COSTUME_FACE_MAX; i++) - { - var index = (uint)i; - var costumeTitle = GameDataService.GetFaceTitle(index); - @index - @costumeTitle - } - - - - @for (var i = 0; i < Constants.COSTUME_KIGURUMI_MAX; i++) - { - var index = (uint)i; - var costumeTitle = GameDataService.GetKigurumiTitle(index); - @index - @costumeTitle - } - - - - @for (var i = 0; i < Constants.COSTUME_PUCHI_MAX; i++) - { - var index = (uint)i; - var costumeTitle = GameDataService.GetPuchiTitle(index); - @index - @costumeTitle - } - - - - - - @for (uint i = 0; i < Constants.COSTUME_COLOR_MAX; i++) - { - var index = i; - -
- @index -
- } -
- - @for (uint i = 0; i < Constants.COSTUME_COLOR_MAX; i++) - { - var index = i; - -
- @index -
- } -
- - @for (uint i = 0; i < Constants.COSTUME_COLOR_MAX; i++) - { - var index = i; - -
- @index -
- } -
-
-
-
-
-
- - - -

Song Options

- - - - - - - - - - - - - @for (uint i = 0; i < 15; i++) - { - var index = i; - @SpeedStrings[index] - } - - - - @foreach (var item in Enum.GetValues()) - { - - } - - - - @for (uint i = 0; i < 19; i++) - { - var index = i; - @ToneStrings[index] - } - - - - Notes Position - - - - -
-
- - -
- - - - - @if (isSavingOptions) - { - - Saving... - } - else - { - - Save - } - - - - -
+ + @if (isSavingOptions) + { + + Saving... + } + else + { + + Save + } + + + + + } } \ No newline at end of file diff --git a/TaikoWebUI/Pages/Profile.razor.cs b/TaikoWebUI/Pages/Profile.razor.cs index 31c2d78..d560526 100644 --- a/TaikoWebUI/Pages/Profile.razor.cs +++ b/TaikoWebUI/Pages/Profile.razor.cs @@ -1,4 +1,6 @@ -using TaikoWebUI.Pages.Dialogs; +using Microsoft.AspNetCore.Http; +using System.Linq; +using TaikoWebUI.Pages.Dialogs; namespace TaikoWebUI.Pages; @@ -11,21 +13,115 @@ public partial class Profile private bool isSavingOptions; - private static readonly string[] CostumeColors = + private static readonly string[] CostumeColors = { "#F84828", "#68C0C0", "#DC1500", "#F8F0E0", "#009687", "#00BF87", "#00FF9A", "#66FFC2", "#FFFFFF", "#690000", "#FF0000", "#FF6666", - "#FFB3B3", "#00BCC2", "#00F7FF", "#66FAFF", "#B3FDFF", "#E4E4E4", - "#993800", "#FF5E00", "#FF9E78", "#FFCFB3", "#005199", "#0088FF", + "#FFB3B3", "#00BCC2", "#00F7FF", "#66FAFF", "#B3FDFF", "#E4E4E4", + "#993800", "#FF5E00", "#FF9E78", "#FFCFB3", "#005199", "#0088FF", "#66B8FF", "#B3DBFF", "#B9B9B9", "#B37700", "#FFAA00", "#FFCC66", "#FFE2B3", "#000C80", "#0019FF", "#6675FF", "#B3BAFF", "#858585", - "#B39B00", "#FFDD00", "#FFFF00", "#FFFF71", "#2B0080", "#5500FF", + "#B39B00", "#FFDD00", "#FFFF00", "#FFFF71", "#2B0080", "#5500FF", "#9966FF", "#CCB3FF", "#505050", "#38A100", "#78C900", "#B3FF00", "#DCFF8A", "#610080", "#C400FF", "#DC66FF", "#EDB3FF", "#232323", "#006600", "#00B800", "#00FF00", "#8AFF9E", "#990059", "#FF0095", "#FF66BF", "#FFB3DF", "#000000" }; + private static readonly List Masks = new List + { + "masks/body-bodymask-0005", "masks/body-bodymask-0019", "masks/body-bodymask-0030", + "masks/body-bodymask-0063", "masks/body-bodymask-0064", "masks/body-bodymask-0065", + "masks/body-bodymask-0070", "masks/body-bodymask-0092", "masks/body-bodymask-0121", + "masks/body-bodymask-0123", "masks/body-bodymask-0127", "masks/body-bodymask-0136", + "masks/body-bodymask-0153", + + "masks/body-facemask-0005", "masks/body-facemask-0015", "masks/body-facemask-0030", + "masks/body-facemask-0064", "masks/body-facemask-0065", "masks/body-facemask-0069", + "masks/body-facemask-0090", "masks/body-facemask-0092", "masks/body-facemask-0136", + "masks/body-facemask-0151", "masks/body-facemask-0152", "masks/body-facemask-0153", + + "masks/head-bodymask-0113", "masks/head-bodymask-0138", + + "masks/head-facemask-0003", "masks/head-facemask-0113", "masks/head-facemask-0137", + "masks/head-facemask-0138", + + "masks/kigurumi-bodymask-0052", "masks/kigurumi-bodymask-0109", "masks/kigurumi-bodymask-0110", + "masks/kigurumi-bodymask-0115", "masks/kigurumi-bodymask-0123", + + "masks/kigurumi-facemask-0052", "masks/kigurumi-facemask-0109", "masks/kigurumi-facemask-0110", + "masks/kigurumi-facemask-0115", "masks/kigurumi-facemask-0123", + }; + + // Generated using https://codepen.io/sosuke/pen/Pjoqqp + private static readonly string[] CostumeColorFilters = + { + "invert(48%) sepia(61%) saturate(6409%) hue-rotate(347deg) brightness(100%) contrast(95%);", + "invert(90%) sepia(15%) saturate(1318%) hue-rotate(127deg) brightness(82%) contrast(78%);", + "invert(15%) sepia(55%) saturate(6677%) hue-rotate(360deg) brightness(96%) contrast(102%);", + "invert(88%) sepia(26%) saturate(147%) hue-rotate(343deg) brightness(106%) contrast(95%);", + "invert(36%) sepia(47%) saturate(2136%) hue-rotate(146deg) brightness(97%) contrast(102%);", + "invert(66%) sepia(50%) saturate(5209%) hue-rotate(124deg) brightness(92%) contrast(104%);", + "invert(95%) sepia(83%) saturate(2827%) hue-rotate(73deg) brightness(101%) contrast(117%);", + "invert(80%) sepia(39%) saturate(531%) hue-rotate(96deg) brightness(102%) contrast(101%);", + "invert(100%);", + "invert(12%) sepia(33%) saturate(6542%) hue-rotate(349deg) brightness(81%) contrast(117%);", + "invert(15%) sepia(82%) saturate(6245%) hue-rotate(356deg) brightness(96%) contrast(125%);", + "invert(51%) sepia(16%) saturate(2006%) hue-rotate(312deg) brightness(100%) contrast(100%);", + "invert(97%) sepia(17%) saturate(5337%) hue-rotate(290deg) brightness(102%) contrast(100%);", + "invert(52%) sepia(70%) saturate(2785%) hue-rotate(146deg) brightness(99%) contrast(105%);", + "invert(84%) sepia(45%) saturate(4224%) hue-rotate(130deg) brightness(104%) contrast(103%);", + "invert(82%) sepia(59%) saturate(1110%) hue-rotate(159deg) brightness(108%) contrast(104%);", + "invert(85%) sepia(31%) saturate(483%) hue-rotate(158deg) brightness(104%) contrast(106%);", + "invert(99%) sepia(69%) saturate(147%) hue-rotate(166deg) brightness(109%) contrast(79%);", + "invert(17%) sepia(60%) saturate(5053%) hue-rotate(34deg) brightness(92%) contrast(101%);", + "invert(53%) sepia(81%) saturate(4073%) hue-rotate(357deg) brightness(97%) contrast(112%);", + "invert(66%) sepia(42%) saturate(573%) hue-rotate(326deg) brightness(101%) contrast(100%);", + "invert(92%) sepia(9%) saturate(2479%) hue-rotate(306deg) brightness(105%) contrast(101%);", + "invert(16%) sepia(70%) saturate(3568%) hue-rotate(195deg) brightness(95%) contrast(101%);", + "invert(45%) sepia(67%) saturate(5622%) hue-rotate(193deg) brightness(104%) contrast(104%);", + "invert(58%) sepia(74%) saturate(400%) hue-rotate(175deg) brightness(102%) contrast(102%);", + "invert(78%) sepia(13%) saturate(856%) hue-rotate(177deg) brightness(104%) contrast(104%);", + "invert(87%) sepia(0%) saturate(228%) hue-rotate(132deg) brightness(98%) contrast(66%);", + "invert(52%) sepia(87%) saturate(3669%) hue-rotate(24deg) brightness(93%) contrast(100%);", + "invert(63%) sepia(90%) saturate(1616%) hue-rotate(0deg) brightness(103%) contrast(105%);", + "invert(74%) sepia(67%) saturate(370%) hue-rotate(346deg) brightness(102%) contrast(101%);", + "invert(84%) sepia(32%) saturate(380%) hue-rotate(336deg) brightness(102%) contrast(106%);", + "invert(11%) sepia(62%) saturate(7483%) hue-rotate(240deg) brightness(61%) contrast(117%);", + "invert(13%) sepia(100%) saturate(4871%) hue-rotate(240deg) brightness(97%) contrast(143%);", + "invert(68%) sepia(71%) saturate(6691%) hue-rotate(218deg) brightness(103%) contrast(100%);", + "invert(76%) sepia(23%) saturate(1472%) hue-rotate(193deg) brightness(101%) contrast(103%);", + "invert(55%) sepia(0%) saturate(428%) hue-rotate(151deg) brightness(96%) contrast(89%);", + "invert(68%) sepia(42%) saturate(5979%) hue-rotate(24deg) brightness(97%) contrast(100%);", + "invert(93%) sepia(14%) saturate(7042%) hue-rotate(356deg) brightness(103%) contrast(106%);", + "invert(95%) sepia(23%) saturate(7492%) hue-rotate(1deg) brightness(107%) contrast(100%);", + "invert(94%) sepia(94%) saturate(558%) hue-rotate(350deg) brightness(104%) contrast(107%);", + "invert(15%) sepia(60%) saturate(5776%) hue-rotate(260deg) brightness(54%) contrast(123%);", + "invert(17%) sepia(93%) saturate(5007%) hue-rotate(257deg) brightness(95%) contrast(157%);", + "invert(46%) sepia(50%) saturate(3860%) hue-rotate(233deg) brightness(101%) contrast(102%);", + "invert(71%) sepia(12%) saturate(1421%) hue-rotate(213deg) brightness(103%) contrast(102%);", + "invert(29%) sepia(2%) saturate(0%) hue-rotate(226deg) brightness(99%) contrast(86%);", + "invert(41%) sepia(97%) saturate(1327%) hue-rotate(66deg) brightness(94%) contrast(103%);", + "invert(66%) sepia(70%) saturate(1886%) hue-rotate(40deg) brightness(97%) contrast(102%);", + "invert(75%) sepia(98%) saturate(877%) hue-rotate(24deg) brightness(107%) contrast(105%);", + "invert(86%) sepia(25%) saturate(644%) hue-rotate(29deg) brightness(105%) contrast(103%);", + "invert(16%) sepia(49%) saturate(6851%) hue-rotate(281deg) brightness(59%) contrast(114%);", + "invert(14%) sepia(97%) saturate(4833%) hue-rotate(282deg) brightness(102%) contrast(125%);", + "invert(60%) sepia(34%) saturate(5439%) hue-rotate(240deg) brightness(96%) contrast(109%);", + "invert(79%) sepia(50%) saturate(779%) hue-rotate(200deg) brightness(99%) contrast(106%);", + "invert(0%) sepia(9%) saturate(62%) hue-rotate(43deg) brightness(108%) contrast(73%);", + "invert(17%) sepia(45%) saturate(5456%) hue-rotate(101deg) brightness(100%) contrast(104%);", + "invert(42%) sepia(53%) saturate(3615%) hue-rotate(93deg) brightness(104%) contrast(107%);", + "invert(50%) sepia(63%) saturate(3097%) hue-rotate(88deg) brightness(124%) contrast(125%);", + "invert(74%) sepia(96%) saturate(217%) hue-rotate(70deg) brightness(101%) contrast(101%);", + "invert(17%) sepia(44%) saturate(7325%) hue-rotate(313deg) brightness(65%) contrast(109%);", + "invert(13%) sepia(81%) saturate(7488%) hue-rotate(318deg) brightness(104%) contrast(102%);", + "invert(60%) sepia(84%) saturate(2326%) hue-rotate(293deg) brightness(102%) contrast(100%);", + "invert(88%) sepia(96%) saturate(1040%) hue-rotate(281deg) brightness(104%) contrast(106%);", + "invert(0%);" + }; + + private static readonly string[] SpeedStrings = { "1.0", "1.1", "1.2", "1.3", "1.4", @@ -44,16 +140,41 @@ public partial class Profile "Synth Drum", "Shuriken", "Bubble Pop", "Electric Guitar" }; + private static readonly string[] LanguageStrings = + { + "Japanese", "English", "Chinese (Traditional)", "Korean", "Chinese (Simplified)" + }; + private static readonly string[] TitlePlateStrings = { "Wood", "Rainbow", "Gold", "Purple", "AI 1", "AI 2", "AI 3", "AI 4" }; + private static readonly string[] DifficultySettingCourseStrings = + { + "None", "Set up each time", + "Easy", "Normal", "Hard", "Oni", "Ura Oni" + }; + + private static readonly string[] DifficultySettingStarStrings = + { + "None", "Set up each time", + "1", "2", "3", "4", "5", "6", "7", "8", "9", "10" + }; + + private static readonly string[] DifficultySettingSortStrings = + { + "None", "Set up each time", "Default", + "Not cleared", "Not Full Combo", "Not Donderful Combo" + }; + private readonly List breadcrumbs = new() { new BreadcrumbItem("Cards", href: "/Cards"), }; + + private List costumeFlagArraySizes = new(); protected override async Task OnInitializedAsync() { @@ -63,6 +184,8 @@ public partial class Profile breadcrumbs.Add(new BreadcrumbItem($"Card: {Baid}", href: null, disabled: true)); breadcrumbs.Add(new BreadcrumbItem("Profile", href: $"/Cards/{Baid}/Profile", disabled: false)); + + costumeFlagArraySizes = GameDataService.GetCostumeFlagArraySizes(); } private async Task SaveOptions() @@ -72,6 +195,15 @@ public partial class Profile isSavingOptions = false; } + public static string ImageOrDefault(string file, uint id, string defaultfile) + { + var path = "/images/Costumes/"; + var filename = file + "-" + id.ToString().PadLeft(4, '0'); + var imagePath = path + filename + ".png"; + var imageSrc = Masks.Contains(filename) ? imagePath : path + defaultfile + ".png"; + return imageSrc; + } + private async Task OpenChooseTitleDialog() { var options = new DialogOptions @@ -88,7 +220,7 @@ public partial class Profile }; var dialog = DialogService.Show("Player Titles", parameters, options); var result = await dialog.Result; - if (!result.Cancelled) + if (!result.Canceled) { StateHasChanged(); } diff --git a/TaikoWebUI/Pages/Register.razor b/TaikoWebUI/Pages/Register.razor new file mode 100644 index 0000000..cc858ab --- /dev/null +++ b/TaikoWebUI/Pages/Register.razor @@ -0,0 +1,43 @@ +@inject HttpClient Client +@inject IDialogService DialogService +@inject LoginService LoginService +@inject NavigationManager NavigationManager + +@page "/Cards/Register" + +

Cards

+ +@if (LoginService.OnlyAdmin || !LoginService.LoginRequired) +{ +

Register is turned off

+} +else +{ + + + + + + + Register + + + + + + Register + + + + + + +} \ No newline at end of file diff --git a/TaikoWebUI/Pages/Register.razor.cs b/TaikoWebUI/Pages/Register.razor.cs new file mode 100644 index 0000000..17ed09b --- /dev/null +++ b/TaikoWebUI/Pages/Register.razor.cs @@ -0,0 +1,63 @@ +namespace TaikoWebUI.Pages; + +public partial class Register +{ + private string cardNum = ""; + private string confirmPassword = ""; + private string password = ""; + private MudForm registerForm = default!; + + private DashboardResponse? response; + + protected override async Task OnInitializedAsync() + { + await base.OnInitializedAsync(); + response = await Client.GetFromJsonAsync("api/Dashboard"); + } + + private async Task OnRegister() + { + if (response != null) + { + var result = await LoginService.Register(cardNum, password, confirmPassword, response, Client); + switch (result) + { + case 0: + await DialogService.ShowMessageBox( + "Error", + "Only admin can log in.", + "Ok"); + NavigationManager.NavigateTo("/Cards"); + break; + case 1: + await DialogService.ShowMessageBox( + "Success", + "Card registered successfully.", + "Ok"); + NavigationManager.NavigateTo("/Cards"); + break; + case 2: + await DialogService.ShowMessageBox( + "Error", + "Confirm password is not the same as password.", + "Ok"); + break; + case 3: + await DialogService.ShowMessageBox( + "Error", + (MarkupString) + "Card number not found.
Please play one game with this card number to register it.", + "Ok"); + break; + case 4: + await DialogService.ShowMessageBox( + "Error", + (MarkupString) + "Card is already registered, please use set password to login.", + "Ok"); + NavigationManager.NavigateTo("/Cards"); + break; + } + } + } +} \ No newline at end of file diff --git a/TaikoWebUI/Program.cs b/TaikoWebUI/Program.cs index 75baef5..f21f885 100644 --- a/TaikoWebUI/Program.cs +++ b/TaikoWebUI/Program.cs @@ -1,5 +1,6 @@ using Microsoft.AspNetCore.Components.WebAssembly.Hosting; using MudBlazor.Services; +using TaikoWebUI.Settings; var builder = WebAssemblyHostBuilder.CreateDefault(args); builder.RootComponents.Add("#app"); @@ -12,6 +13,10 @@ builder.Services.AddSingleton(sp => new HttpClient builder.Services.AddMudServices(); builder.Services.AddSingleton(); +builder.Services.Configure(builder.Configuration.GetSection(nameof(WebUiSettings))); + +builder.Services.AddScoped(); + var host = builder.Build(); var gameDataService = host.Services.GetRequiredService(); diff --git a/TaikoWebUI/Services/GameDataService.cs b/TaikoWebUI/Services/GameDataService.cs index 977fe54..e1c0197 100644 --- a/TaikoWebUI/Services/GameDataService.cs +++ b/TaikoWebUI/Services/GameDataService.cs @@ -1,7 +1,4 @@ using System.Collections.Immutable; -using System.Net; -using System.Text.Json; -using ICSharpCode.SharpZipLib.GZip; using Swan.Mapping; using TaikoWebUI.Shared.Models; @@ -9,15 +6,19 @@ namespace TaikoWebUI.Services; public class GameDataService : IGameDataService { - private readonly string[] bodyTitles = new string[Constants.COSTUME_BODY_MAX]; + private string[] bodyTitles; private readonly HttpClient client; - private readonly string[] faceTitles = new string[Constants.COSTUME_FACE_MAX]; + private string[] faceTitles; - private readonly string[] headTitles = new string[Constants.COSTUME_HEAD_MAX]; - private readonly string[] kigurumiMTitles = new string[Constants.COSTUME_KIGURUMI_MAX]; + private string[] headTitles; + private string[] kigurumiTitles; private readonly Dictionary musicMap = new(); - private readonly string[] puchiTitles = new string[Constants.COSTUME_PUCHI_MAX]; + private string[] puchiTitles; + + private List costumeFlagArraySizes = new(); + + private int titleFlagArraySize; private ImmutableDictionary danMap = ImmutableDictionary.Empty; @@ -32,8 +33,10 @@ public class GameDataService : IGameDataService { dataBaseUrl = dataBaseUrl.TrimEnd('/'); var musicInfo = await GetData(dataBaseUrl, Constants.MUSIC_INFO_BASE_NAME); - var wordList = await GetData(dataBaseUrl, Constants.WORD_LIST_BASE_NAME); + var wordList = await GetData(dataBaseUrl, Constants.WORDLIST_BASE_NAME); var musicOrder = await GetData(dataBaseUrl, Constants.MUSIC_ORDER_BASE_NAME); + var donCosRewardData = await GetData(dataBaseUrl, Constants.DON_COS_REWARD_BASE_NAME); + var shougouData = await GetData(dataBaseUrl, Constants.SHOUGOU_BASE_NAME); var danData = await client.GetFromJsonAsync>($"{dataBaseUrl}/data/dan_data.json"); danData.ThrowIfNull(); @@ -43,6 +46,9 @@ public class GameDataService : IGameDataService var dict = wordList.WordListEntries.GroupBy(entry => entry.Key) .ToImmutableDictionary(group => group.Key, group => group.First()); await Task.Run(() => InitializeMusicMap(musicInfo, dict, musicOrder)); + + InitializeCostumeFlagArraySizes(donCosRewardData); + InitializeTitleFlagArraySize(shougouData); await Task.Run(() => InitializeHeadTitles(dict)); await Task.Run(() => InitializeFaceTitles(dict)); @@ -54,32 +60,9 @@ public class GameDataService : IGameDataService private async Task GetData(string dataBaseUrl, string fileBaseName) where T : notnull { - T? data; - try - { - data = await client.GetFromJsonAsync($"{dataBaseUrl}/data/{fileBaseName}.json"); - data.ThrowIfNull(); - return data; - } - catch (HttpRequestException e) - { - if (e.StatusCode != HttpStatusCode.NotFound) - { - throw; - } - await using var compressed = await client.GetStreamAsync($"{dataBaseUrl}/data/{fileBaseName}.bin"); - await using var gZipInputStream = new GZipInputStream(compressed); - using var decompressed = new MemoryStream(); - - // Decompress - await gZipInputStream.CopyToAsync(decompressed); - - // Reset stream for reading - decompressed.Position = 0; - data = await JsonSerializer.DeserializeAsync(decompressed); - data.ThrowIfNull(); - return data; - } + var data = await client.GetFromJsonAsync($"{dataBaseUrl}/data/{fileBaseName}.json"); + data.ThrowIfNull(); + return data; } public string GetMusicNameBySongId(uint songId) @@ -129,7 +112,7 @@ public class GameDataService : IGameDataService public string GetKigurumiTitle(uint index) { - return index < kigurumiMTitles.Length ? kigurumiMTitles[index] : string.Empty; + return index < kigurumiTitles.Length ? kigurumiTitles[index] : string.Empty; } public string GetBodyTitle(uint index) @@ -151,11 +134,22 @@ public class GameDataService : IGameDataService { return titles; } + + public List GetCostumeFlagArraySizes() + { + return costumeFlagArraySizes; + } + + private void InitializeTitleFlagArraySize(Shougous? shougouData) + { + shougouData.ThrowIfNull("Shouldn't happen!"); + titleFlagArraySize = (int)shougouData.ShougouEntries.Max(entry => entry.uniqueId) + 1; + } private void InitializeTitles(ImmutableDictionary dict) { var set = ImmutableHashSet.CreateBuilder(); - for (var i = 1; i < Constants.PLAYER_TITLE_MAX; i++) + for (var i = 1; i < titleFlagArraySize; i++) { var key = $"syougou_{i}"; @@ -169,32 +163,67 @@ public class GameDataService : IGameDataService titles = set.ToImmutable(); } - - private void InitializePuchiTitles(ImmutableDictionary<string, WordListEntry> dict) + + private void InitializeCostumeFlagArraySizes(DonCosRewards? donCosRewardData) { - for (var i = 0; i < Constants.COSTUME_PUCHI_MAX; i++) + donCosRewardData.ThrowIfNull("Shouldn't happen!"); + var kigurumiUniqueIdList = donCosRewardData.DonCosRewardEntries + .Where(entry => entry.cosType == "kigurumi") + .Select(entry => entry.uniqueId); + var headUniqueIdList = donCosRewardData.DonCosRewardEntries + .Where(entry => entry.cosType == "head") + .Select(entry => entry.uniqueId); + var bodyUniqueIdList = donCosRewardData.DonCosRewardEntries + .Where(entry => entry.cosType == "body") + .Select(entry => entry.uniqueId); + var faceUniqueIdList = donCosRewardData.DonCosRewardEntries + .Where(entry => entry.cosType == "face") + .Select(entry => entry.uniqueId); + var puchiUniqueIdList = donCosRewardData.DonCosRewardEntries + .Where(entry => entry.cosType == "puchi") + .Select(entry => entry.uniqueId); + + costumeFlagArraySizes = new List<int> { - var key = $"costume_puchi_{i}"; - - var costumeWordlistItem = dict.GetValueOrDefault(key, new WordListEntry()); - puchiTitles[i] = costumeWordlistItem.JapaneseText; - } + (int)kigurumiUniqueIdList.Max() + 1, + (int)headUniqueIdList.Max() + 1, + (int)bodyUniqueIdList.Max() + 1, + (int)faceUniqueIdList.Max() + 1, + (int)puchiUniqueIdList.Max() + 1 + }; } - + private void InitializeKigurumiTitles(ImmutableDictionary<string, WordListEntry> dict) { - for (var i = 0; i < Constants.COSTUME_KIGURUMI_MAX; i++) + var costumeKigurumiMax = costumeFlagArraySizes[0]; + kigurumiTitles = new string[costumeKigurumiMax]; + for (var i = 0; i < costumeKigurumiMax; i++) { var key = $"costume_kigurumi_{i}"; var costumeWordlistItem = dict.GetValueOrDefault(key, new WordListEntry()); - kigurumiMTitles[i] = costumeWordlistItem.JapaneseText; + kigurumiTitles[i] = costumeWordlistItem.JapaneseText; } } + + private void InitializeHeadTitles(ImmutableDictionary<string, WordListEntry> dict) + { + var costumeHeadMax = costumeFlagArraySizes[1]; + headTitles = new string[costumeHeadMax]; + for (var i = 0; i < costumeHeadMax; i++) + { + var key = $"costume_head_{i}"; + var costumeWordlistItem = dict.GetValueOrDefault(key, new WordListEntry()); + headTitles[i] = costumeWordlistItem.JapaneseText; + } + } + private void InitializeBodyTitles(ImmutableDictionary<string, WordListEntry> dict) { - for (var i = 0; i < Constants.COSTUME_BODY_MAX; i++) + var costumeBodyMax = costumeFlagArraySizes[2]; + bodyTitles = new string[costumeBodyMax]; + for (var i = 0; i < costumeBodyMax; i++) { var key = $"costume_body_{i}"; @@ -202,10 +231,12 @@ public class GameDataService : IGameDataService bodyTitles[i] = costumeWordlistItem.JapaneseText; } } - + private void InitializeFaceTitles(ImmutableDictionary<string, WordListEntry> dict) { - for (var i = 0; i < Constants.COSTUME_FACE_MAX; i++) + var costumeFaceMax = costumeFlagArraySizes[3]; + faceTitles = new string[costumeFaceMax]; + for (var i = 0; i < costumeFaceMax; i++) { var key = $"costume_face_{i}"; @@ -214,14 +245,16 @@ public class GameDataService : IGameDataService } } - private void InitializeHeadTitles(ImmutableDictionary<string, WordListEntry> dict) + private void InitializePuchiTitles(ImmutableDictionary<string, WordListEntry> dict) { - for (var i = 0; i < Constants.COSTUME_HEAD_MAX; i++) + var costumePuchiMax = costumeFlagArraySizes[4]; + puchiTitles = new string[costumePuchiMax]; + for (var i = 0; i < costumePuchiMax; i++) { - var key = $"costume_head_{i}"; + var key = $"costume_puchi_{i}"; var costumeWordlistItem = dict.GetValueOrDefault(key, new WordListEntry()); - headTitles[i] = costumeWordlistItem.JapaneseText; + puchiTitles[i] = costumeWordlistItem.JapaneseText; } } diff --git a/TaikoWebUI/Services/IGameDataService.cs b/TaikoWebUI/Services/IGameDataService.cs index b5a7310..4d1946c 100644 --- a/TaikoWebUI/Services/IGameDataService.cs +++ b/TaikoWebUI/Services/IGameDataService.cs @@ -24,6 +24,8 @@ public interface IGameDataService public string GetBodyTitle(uint index); public string GetFaceTitle(uint index); public string GetPuchiTitle(uint index); + + public List<int> GetCostumeFlagArraySizes(); public ImmutableHashSet<Title> GetTitles(); } \ No newline at end of file diff --git a/TaikoWebUI/Services/LoginService.cs b/TaikoWebUI/Services/LoginService.cs new file mode 100644 index 0000000..bf2e318 --- /dev/null +++ b/TaikoWebUI/Services/LoginService.cs @@ -0,0 +1,147 @@ +using System.Security.Cryptography; +using System.Text; +using Microsoft.Extensions.Options; +using TaikoWebUI.Settings; + +namespace TaikoWebUI.Services; + +public class LoginService +{ + private readonly string adminPassword; + private readonly string adminUsername; + + public LoginService(IOptions<WebUiSettings> settings) + { + IsLoggedIn = false; + Baid = 0; + CardNum = 0; + IsAdmin = false; + var webUiSettings = settings.Value; + adminUsername = webUiSettings.AdminUsername; + adminPassword = webUiSettings.AdminPassword; + LoginRequired = webUiSettings.LoginRequired; + OnlyAdmin = webUiSettings.OnlyAdmin; + } + + public bool IsLoggedIn { get; private set; } + public uint Baid { get; private set; } + private int CardNum { get; set; } + public bool IsAdmin { get; private set; } + + public bool LoginRequired { get; } + public bool OnlyAdmin { get; } + + public int Login(string inputCardNum, string inputPassword, DashboardResponse response) + { + if (inputCardNum == adminUsername && inputPassword == adminPassword) + { + CardNum = 0; + Baid = 0; + IsLoggedIn = true; + IsAdmin = true; + return 1; + } + + if (OnlyAdmin) return 0; + + foreach (var user in response.Users.Where(user => user.AccessCode == inputCardNum)) + { + if (user.Password == "") return 4; + if (ComputeHash(inputPassword, user.Salt) != user.Password) return 2; + CardNum = int.Parse(user.AccessCode); + Baid = user.Baid; + IsLoggedIn = true; + IsAdmin = false; + return 1; + } + + return 3; + } + + public async Task<int> Register(string inputCardNum, string inputPassword, string inputConfirmPassword, + DashboardResponse response, HttpClient client) + { + if (OnlyAdmin) return 0; + foreach (var user in response.Users.Where(user => user.AccessCode == inputCardNum)) + { + if (user.Password != "") return 4; + if (inputPassword != inputConfirmPassword) return 2; + var salt = CreateSalt(); + var request = new SetPasswordRequest + { + AccessCode = user.AccessCode, + Password = ComputeHash(inputPassword, salt), + Salt = salt + }; + var responseMessage = await client.PostAsJsonAsync("api/Cards", request); + return responseMessage.IsSuccessStatusCode ? 1 : 3; + } + + return 3; + } + + private static string CreateSalt() + { + //Generate a cryptographic random number. + var randomNumber = new byte[32]; + var rng = RandomNumberGenerator.Create(); + rng.GetBytes(randomNumber); + var salt = Convert.ToBase64String(randomNumber); + + // Return a Base64 string representation of the random number. + return salt; + } + + private static string ComputeHash(string inputPassword, string salt) + { + var encDataByte = Encoding.UTF8.GetBytes(inputPassword + salt); + var encodedData = Convert.ToBase64String(encDataByte); + encDataByte = Encoding.UTF8.GetBytes(encodedData); + encodedData = Convert.ToBase64String(encDataByte); + encDataByte = Encoding.UTF8.GetBytes(encodedData); + encodedData = Convert.ToBase64String(encDataByte); + encDataByte = Encoding.UTF8.GetBytes(encodedData); + encodedData = Convert.ToBase64String(encDataByte); + return encodedData; + } + + public async Task<int> ChangePassword(string inputCardNum, string inputOldPassword, string inputNewPassword, + string inputConfirmNewPassword, DashboardResponse response, HttpClient client) + { + if (OnlyAdmin) return 0; + foreach (var user in response.Users.Where(user => user.AccessCode == inputCardNum)) + { + if (user.Password != ComputeHash(inputOldPassword, user.Salt)) return 4; + if (inputNewPassword != inputConfirmNewPassword) return 2; + var request = new SetPasswordRequest + { + AccessCode = user.AccessCode, + Password = ComputeHash(inputNewPassword, user.Salt), + Salt = user.Salt + }; + var responseMessage = await client.PostAsJsonAsync("api/Cards", request); + return responseMessage.IsSuccessStatusCode ? 1 : 3; + } + + return 3; + } + + public void Logout() + { + IsLoggedIn = false; + IsAdmin = false; + Baid = 0; + CardNum = 0; + } + + public int GetBaid() + { + return checked((int)Baid); + } + + public string GetCardNum() + { + if (IsAdmin) return "Admin"; + return CardNum == 0 ? "Not logged in" : CardNum.ToString(); + } +} \ No newline at end of file diff --git a/TaikoWebUI/Settings/WebUiSettings.cs b/TaikoWebUI/Settings/WebUiSettings.cs new file mode 100644 index 0000000..8778613 --- /dev/null +++ b/TaikoWebUI/Settings/WebUiSettings.cs @@ -0,0 +1,9 @@ +namespace TaikoWebUI.Settings; + +public class WebUiSettings +{ + public bool LoginRequired { get; set; } + public string AdminUsername { get; set; } = string.Empty; + public string AdminPassword { get; set; } = string.Empty; + public bool OnlyAdmin { get; set; } +} \ No newline at end of file diff --git a/TaikoWebUI/Shared/Constants.cs b/TaikoWebUI/Shared/Constants.cs index c795ffe..c77be7d 100644 --- a/TaikoWebUI/Shared/Constants.cs +++ b/TaikoWebUI/Shared/Constants.cs @@ -2,15 +2,11 @@ public static class Constants { - public const int COSTUME_HEAD_MAX = 140; - public const int COSTUME_FACE_MAX = 58; - public const int COSTUME_BODY_MAX = 156; - public const int COSTUME_KIGURUMI_MAX = 154; - public const int COSTUME_PUCHI_MAX = 129; public const int COSTUME_COLOR_MAX = 63; - public const int PLAYER_TITLE_MAX = 750; public const string MUSIC_INFO_BASE_NAME = "musicinfo"; - public const string WORD_LIST_BASE_NAME = "wordlist"; - public const string MUSIC_ORDER_BASE_NAME = "music_order"; + public const string WORDLIST_BASE_NAME = "wordlist"; + public const string MUSIC_ORDER_BASE_NAME = "music_order"; + public const string DON_COS_REWARD_BASE_NAME = "don_cos_reward"; + public const string SHOUGOU_BASE_NAME = "shougou"; } \ No newline at end of file diff --git a/TaikoWebUI/Shared/MainLayout.razor b/TaikoWebUI/Shared/MainLayout.razor index 1f74ac1..9694c14 100644 --- a/TaikoWebUI/Shared/MainLayout.razor +++ b/TaikoWebUI/Shared/MainLayout.razor @@ -19,7 +19,7 @@ @Body <MudScrollToTop> - <MudFab Color="Color.Secondary" Icon="@Icons.Filled.ArrowCircleUp" /> + <MudFab Color="Color.Secondary" Icon="@Icons.Material.Filled.ArrowCircleUp" /> </MudScrollToTop> </MudContainer> </MudMainContent> diff --git a/TaikoWebUI/Shared/Models/DonCosRewardEntry.cs b/TaikoWebUI/Shared/Models/DonCosRewardEntry.cs new file mode 100644 index 0000000..57db82e --- /dev/null +++ b/TaikoWebUI/Shared/Models/DonCosRewardEntry.cs @@ -0,0 +1,12 @@ +using System.Text.Json.Serialization; + +namespace TaikoWebUI.Shared.Models; + +public class DonCosRewardEntry +{ + [JsonPropertyName("cosType")] + public string cosType { get; set; } = null!; + + [JsonPropertyName("uniqueId")] + public uint uniqueId { get; set; } +} \ No newline at end of file diff --git a/TaikoWebUI/Shared/Models/DonCosRewards.cs b/TaikoWebUI/Shared/Models/DonCosRewards.cs new file mode 100644 index 0000000..95bbf7b --- /dev/null +++ b/TaikoWebUI/Shared/Models/DonCosRewards.cs @@ -0,0 +1,9 @@ +using System.Text.Json.Serialization; + +namespace TaikoWebUI.Shared.Models; + +public class DonCosRewards +{ + [JsonPropertyName("items")] + public List<DonCosRewardEntry> DonCosRewardEntries { get; set; } = new(); +} \ No newline at end of file diff --git a/TaikoWebUI/Shared/Models/NeiroEntry.cs b/TaikoWebUI/Shared/Models/NeiroEntry.cs new file mode 100644 index 0000000..852e972 --- /dev/null +++ b/TaikoWebUI/Shared/Models/NeiroEntry.cs @@ -0,0 +1,9 @@ +using System.Text.Json.Serialization; + +namespace TaikoWebUI.Shared.Models; + +public class NeiroEntry +{ + [JsonPropertyName("uniqueId")] + public uint uniqueId { get; set; } +} \ No newline at end of file diff --git a/TaikoWebUI/Shared/Models/Neiros.cs b/TaikoWebUI/Shared/Models/Neiros.cs new file mode 100644 index 0000000..728ba8b --- /dev/null +++ b/TaikoWebUI/Shared/Models/Neiros.cs @@ -0,0 +1,9 @@ +using System.Text.Json.Serialization; + +namespace TaikoWebUI.Shared.Models; + +public class Neiros +{ + [JsonPropertyName("items")] + public List<NeiroEntry> NeiroEntries { get; set; } = new(); +} \ No newline at end of file diff --git a/TaikoWebUI/Shared/Models/ShougouEntry.cs b/TaikoWebUI/Shared/Models/ShougouEntry.cs new file mode 100644 index 0000000..1f1270e --- /dev/null +++ b/TaikoWebUI/Shared/Models/ShougouEntry.cs @@ -0,0 +1,9 @@ +using System.Text.Json.Serialization; + +namespace TaikoWebUI.Shared.Models; + +public class ShougouEntry +{ + [JsonPropertyName("uniqueId")] + public uint uniqueId { get; set; } +} \ No newline at end of file diff --git a/TaikoWebUI/Shared/Models/Shougous.cs b/TaikoWebUI/Shared/Models/Shougous.cs new file mode 100644 index 0000000..4a27738 --- /dev/null +++ b/TaikoWebUI/Shared/Models/Shougous.cs @@ -0,0 +1,9 @@ +using System.Text.Json.Serialization; + +namespace TaikoWebUI.Shared.Models; + +public class Shougous +{ + [JsonPropertyName("items")] + public List<ShougouEntry> ShougouEntries { get; set; } = new(); +} \ No newline at end of file diff --git a/TaikoWebUI/TaikoWebUI.csproj b/TaikoWebUI/TaikoWebUI.csproj index b39c692..7206932 100644 --- a/TaikoWebUI/TaikoWebUI.csproj +++ b/TaikoWebUI/TaikoWebUI.csproj @@ -1,18 +1,21 @@ -<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly"> +<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly"> <PropertyGroup> - <TargetFramework>net6.0</TargetFramework> + <TargetFramework>net8.0</TargetFramework> <Nullable>enable</Nullable> <ImplicitUsings>enable</ImplicitUsings> + <LangVersion>11</LangVersion> </PropertyGroup> <ItemGroup> <PackageReference Include="Autocomplete.Clients" Version="1.1.0" /> - <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.9" /> - <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.9" PrivateAssets="all" /> - <PackageReference Include="MudBlazor" Version="6.0.15" /> - <PackageReference Include="SharpZipLib" Version="1.4.0" /> - <PackageReference Include="Swan.Core" Version="6.0.2-beta.90" /> + <PackageReference Include="CodeBeam.MudBlazor.Extensions" Version="6.5.10" /> + <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.0-rc.1.23421.29" /> + <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.0-rc.1.23421.29" PrivateAssets="all" /> + <PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0-rc.1.23419.4" /> + <PackageReference Include="MudBlazor" Version="6.10.0" /> + <PackageReference Include="SharpZipLib" Version="1.4.2" /> + <PackageReference Include="Swan.Core" Version="7.0.0-beta.2" /> </ItemGroup> <ItemGroup> @@ -29,9 +32,6 @@ <Content Update="wwwroot\data\wordlist.bin"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> - <Content Update="wwwroot\data\music_attribute.bin"> - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> - </Content> <Content Update="wwwroot\data\music_order.json"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </Content> diff --git a/TaikoWebUI/wwwroot/appsettings.json b/TaikoWebUI/wwwroot/appsettings.json new file mode 100644 index 0000000..4e9b78d --- /dev/null +++ b/TaikoWebUI/wwwroot/appsettings.json @@ -0,0 +1,8 @@ +{ + "WebUiSettings": { + "LoginRequired": "false", + "AdminUserName": "admin", + "AdminPassword": "admin", + "OnlyAdmin": "false" + } +} \ No newline at end of file diff --git a/TaikoWebUI/wwwroot/css/app.css b/TaikoWebUI/wwwroot/css/app.css new file mode 100644 index 0000000..8c8d833 --- /dev/null +++ b/TaikoWebUI/wwwroot/css/app.css @@ -0,0 +1,101 @@ +@import url('open-iconic/font/css/open-iconic-bootstrap.min.css'); + +html, body { + font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; +} + +h1:focus { + outline: none; +} + +a, .btn-link { + color: #0071c1; +} + +.btn-primary { + color: #fff; + background-color: #1b6ec2; + border-color: #1861ac; +} + +.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus { + box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb; +} + +.content { + padding-top: 1.1rem; +} + +.valid.modified:not([type=checkbox]) { + outline: 1px solid #26b050; +} + +.invalid { + outline: 1px solid red; +} + +.validation-message { + color: red; +} + +#blazor-error-ui { + background: lightyellow; + bottom: 0; + box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2); + display: none; + left: 0; + padding: 0.6rem 1.25rem 0.7rem 1.25rem; + position: fixed; + width: 100%; + z-index: 1000; +} + + #blazor-error-ui .dismiss { + cursor: pointer; + position: absolute; + right: 0.75rem; + top: 0.5rem; + } + +.blazor-error-boundary { + background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121; + padding: 1rem 1rem 1rem 3.7rem; + color: white; +} + + .blazor-error-boundary::after { + content: "An error has occurred." + } + +.loading-progress { + position: relative; + display: block; + width: 8rem; + height: 8rem; + margin: 20vh auto 1rem auto; +} + + .loading-progress circle { + fill: none; + stroke: #e0e0e0; + stroke-width: 0.6rem; + transform-origin: 50% 50%; + transform: rotate(-90deg); + } + + .loading-progress circle:last-child { + stroke: #1b6ec2; + stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%; + transition: stroke-dasharray 0.05s ease-in-out; + } + +.loading-progress-text { + position: absolute; + text-align: center; + font-weight: bold; + inset: calc(20vh + 3.25rem) 0 auto 0.2rem; +} + + .loading-progress-text:after { + content: var(--blazor-load-percentage-text, "Loading"); + } diff --git a/TaikoWebUI/wwwroot/css/bootstrap/bootstrap.min.css b/TaikoWebUI/wwwroot/css/bootstrap/bootstrap.min.css new file mode 100644 index 0000000..263a715 --- /dev/null +++ b/TaikoWebUI/wwwroot/css/bootstrap/bootstrap.min.css @@ -0,0 +1,7 @@ +@charset "UTF-8";/*! + * Bootstrap v5.1.0 (https://getbootstrap.com/) + * Copyright 2011-2021 The Bootstrap Authors + * Copyright 2011-2021 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-rgb:33,37,41;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-bg:#fff}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x) * -.5);margin-left:calc(var(--bs-gutter-x) * -.5)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-bg:transparent;--bs-table-accent-bg:transparent;--bs-table-striped-color:#212529;--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:#212529;--bs-table-active-bg:rgba(0, 0, 0, 0.1);--bs-table-hover-color:#212529;--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:last-child)>:last-child>*{border-bottom-color:currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-striped>tbody>tr:nth-of-type(odd){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg:#cfe2ff;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:#000;border-color:#bacbe6}.table-secondary{--bs-table-bg:#e2e3e5;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:#000;border-color:#cbccce}.table-success{--bs-table-bg:#d1e7dd;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:#000;border-color:#bcd0c7}.table-info{--bs-table-bg:#cff4fc;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:#000;border-color:#badce3}.table-warning{--bs-table-bg:#fff3cd;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:#000;border-color:#e6dbb9}.table-danger{--bs-table-bg:#f8d7da;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:#000;border-color:#dfc2c4}.table-light{--bs-table-bg:#f8f9fa;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:#000;border-color:#dfe0e1}.table-dark{--bs-table-bg:#212529;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:#fff;border-color:#373b3e}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(25,135,84,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#198754}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#198754}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#198754}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#dc3545}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#dc3545}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#dc3545}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-primary:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-success{color:#fff;background-color:#198754;border-color:#198754}.btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-info.disabled,.btn-info:disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-primary{color:#0d6efd;border-color:#0d6efd}.btn-outline-primary:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#0d6efd;background-color:transparent}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-success{color:#198754;border-color:#198754}.btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#fff;background-color:#198754;border-color:#198754}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#198754;background-color:transparent}.btn-outline-info{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#0dcaf0;background-color:transparent}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#212529;border-color:#212529}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#212529;background-color:transparent}.btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}.btn-link:hover{color:#0a58ca}.btn-link.disabled,.btn-link:disabled{color:#6c757d}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#0d6efd;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:#0a58ca}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:0 0;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:0 0;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-bottom,.navbar-expand-sm .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-md .offcanvas-bottom,.navbar-expand-md .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-bottom,.navbar-expand-lg .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-bottom,.navbar-expand-xl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-bottom,.navbar-expand-xxl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand .offcanvas-bottom,.navbar-expand .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}.card-header-pills{margin-right:-.5rem;margin-left:-.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#0c63e4;background-color:#e7f1ff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}.alert-primary .alert-link{color:#06357a}.alert-secondary{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-dark .alert-link{color:#101214}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:1rem}}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#0d6efd;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#212529;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#084298;background-color:#cfe2ff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#084298;background-color:#bacbe6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border-radius:.25rem}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.offcanvas{position:fixed;bottom:0;z-index:1045;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin-top:-.5rem;margin-right:-.5rem;margin-bottom:-.5rem}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-top{top:0;right:0;left:0;height:30vh;max-height:100%;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom{right:0;left:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentColor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{-webkit-animation:placeholder-glow 2s ease-in-out infinite;animation:placeholder-glow 2s ease-in-out infinite}@-webkit-keyframes placeholder-glow{50%{opacity:.2}}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-animation:placeholder-wave 2s linear infinite;animation:placeholder-wave 2s linear infinite}@-webkit-keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.link-primary{color:#0d6efd}.link-primary:focus,.link-primary:hover{color:#0a58ca}.link-secondary{color:#6c757d}.link-secondary:focus,.link-secondary:hover{color:#565e64}.link-success{color:#198754}.link-success:focus,.link-success:hover{color:#146c43}.link-info{color:#0dcaf0}.link-info:focus,.link-info:hover{color:#3dd5f3}.link-warning{color:#ffc107}.link-warning:focus,.link-warning:hover{color:#ffcd39}.link-danger{color:#dc3545}.link-danger:focus,.link-danger:hover{color:#b02a37}.link-light{color:#f8f9fa}.link-light:focus,.link-light:hover{color:#f9fafb}.link-dark{color:#212529}.link-dark:focus,.link-dark:hover{color:#1a1e21}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:calc(3 / 4 * 100%)}.ratio-16x9{--bs-aspect-ratio:calc(9 / 16 * 100%)}.ratio-21x9{--bs-aspect-ratio:calc(9 / 21 * 100%)}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #dee2e6!important}.border-0{border:0!important}.border-top{border-top:1px solid #dee2e6!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #dee2e6!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #dee2e6!important}.border-start-0{border-left:0!important}.border-primary{border-color:#0d6efd!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#198754!important}.border-info{border-color:#0dcaf0!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#212529!important}.border-white{border-color:#fff!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:#6c757d!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-end{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-start{border-bottom-left-radius:.25rem!important;border-top-left-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} +/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/TaikoWebUI/wwwroot/css/bootstrap/bootstrap.min.css.map b/TaikoWebUI/wwwroot/css/bootstrap/bootstrap.min.css.map new file mode 100644 index 0000000..8c41293 --- /dev/null +++ b/TaikoWebUI/wwwroot/css/bootstrap/bootstrap.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/bootstrap.scss","../../scss/_root.scss","../../scss/_reboot.scss","dist/css/bootstrap.css","../../scss/vendor/_rfs.scss","../../scss/mixins/_border-radius.scss","../../scss/_type.scss","../../scss/mixins/_lists.scss","../../scss/_images.scss","../../scss/mixins/_image.scss","../../scss/_containers.scss","../../scss/mixins/_container.scss","../../scss/mixins/_breakpoints.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/_tables.scss","../../scss/mixins/_table-variants.scss","../../scss/forms/_labels.scss","../../scss/forms/_form-text.scss","../../scss/forms/_form-control.scss","../../scss/mixins/_transition.scss","../../scss/mixins/_gradients.scss","../../scss/forms/_form-select.scss","../../scss/forms/_form-check.scss","../../scss/forms/_form-range.scss","../../scss/forms/_floating-labels.scss","../../scss/forms/_input-group.scss","../../scss/mixins/_forms.scss","../../scss/_buttons.scss","../../scss/mixins/_buttons.scss","../../scss/_transitions.scss","../../scss/_dropdown.scss","../../scss/mixins/_caret.scss","../../scss/_button-group.scss","../../scss/_nav.scss","../../scss/_navbar.scss","../../scss/_card.scss","../../scss/_accordion.scss","../../scss/_breadcrumb.scss","../../scss/_pagination.scss","../../scss/mixins/_pagination.scss","../../scss/_badge.scss","../../scss/_alert.scss","../../scss/mixins/_alert.scss","../../scss/_progress.scss","../../scss/_list-group.scss","../../scss/mixins/_list-group.scss","../../scss/_close.scss","../../scss/_toasts.scss","../../scss/_modal.scss","../../scss/mixins/_backdrop.scss","../../scss/_tooltip.scss","../../scss/mixins/_reset-text.scss","../../scss/_popover.scss","../../scss/_carousel.scss","../../scss/mixins/_clearfix.scss","../../scss/_spinners.scss","../../scss/_offcanvas.scss","../../scss/_placeholders.scss","../../scss/helpers/_colored-links.scss","../../scss/helpers/_ratio.scss","../../scss/helpers/_position.scss","../../scss/helpers/_stacks.scss","../../scss/helpers/_visually-hidden.scss","../../scss/mixins/_visually-hidden.scss","../../scss/helpers/_stretched-link.scss","../../scss/helpers/_text-truncation.scss","../../scss/mixins/_text-truncate.scss","../../scss/helpers/_vr.scss","../../scss/mixins/_utilities.scss","../../scss/utilities/_api.scss"],"names":[],"mappings":"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","sourcesContent":["/*!\n * Bootstrap v5.1.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n\n// scss-docs-start import-stack\n// Configuration\n@import \"functions\";\n@import \"variables\";\n@import \"mixins\";\n@import \"utilities\";\n\n// Layout & components\n@import \"root\";\n@import \"reboot\";\n@import \"type\";\n@import \"images\";\n@import \"containers\";\n@import \"grid\";\n@import \"tables\";\n@import \"forms\";\n@import \"buttons\";\n@import \"transitions\";\n@import \"dropdown\";\n@import \"button-group\";\n@import \"nav\";\n@import \"navbar\";\n@import \"card\";\n@import \"accordion\";\n@import \"breadcrumb\";\n@import \"pagination\";\n@import \"badge\";\n@import \"alert\";\n@import \"progress\";\n@import \"list-group\";\n@import \"close\";\n@import \"toasts\";\n@import \"modal\";\n@import \"tooltip\";\n@import \"popover\";\n@import \"carousel\";\n@import \"spinners\";\n@import \"offcanvas\";\n@import \"placeholders\";\n\n// Helpers\n@import \"helpers\";\n\n// Utilities\n@import \"utilities/api\";\n// scss-docs-end import-stack\n",":root {\n // Note: Custom variable values only support SassScript inside `#{}`.\n\n // Colors\n //\n // Generate palettes for full colors, grays, and theme colors.\n\n @each $color, $value in $colors {\n --#{$variable-prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $grays {\n --#{$variable-prefix}gray-#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$variable-prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors-rgb {\n --#{$variable-prefix}#{$color}-rgb: #{$value};\n }\n\n --#{$variable-prefix}white-rgb: #{to-rgb($white)};\n --#{$variable-prefix}black-rgb: #{to-rgb($black)};\n --#{$variable-prefix}body-rgb: #{to-rgb($body-color)};\n\n // Fonts\n\n // Note: Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --#{$variable-prefix}font-sans-serif: #{inspect($font-family-sans-serif)};\n --#{$variable-prefix}font-monospace: #{inspect($font-family-monospace)};\n --#{$variable-prefix}gradient: #{$gradient};\n\n // Root and body\n // stylelint-disable custom-property-empty-line-before\n // scss-docs-start root-body-variables\n @if $font-size-root != null {\n --#{$variable-prefix}root-font-size: #{$font-size-root};\n }\n --#{$variable-prefix}body-font-family: #{$font-family-base};\n --#{$variable-prefix}body-font-size: #{$font-size-base};\n --#{$variable-prefix}body-font-weight: #{$font-weight-base};\n --#{$variable-prefix}body-line-height: #{$line-height-base};\n --#{$variable-prefix}body-color: #{$body-color};\n @if $body-text-align != null {\n --#{$variable-prefix}body-text-align: #{$body-text-align};\n }\n --#{$variable-prefix}body-bg: #{$body-bg};\n // scss-docs-end root-body-variables\n // stylelint-enable custom-property-empty-line-before\n}\n","// stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n\n// Root\n//\n// Ability to the value of the root font sizes, affecting the value of `rem`.\n// null by default, thus nothing is generated.\n\n:root {\n @if $font-size-root != null {\n font-size: var(--#{$variable-prefix}-root-font-size);\n }\n\n @if $enable-smooth-scroll {\n @media (prefers-reduced-motion: no-preference) {\n scroll-behavior: smooth;\n }\n }\n}\n\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Prevent adjustments of font size after orientation changes in iOS.\n// 4. Change the default tap highlight to be completely transparent in iOS.\n\n// scss-docs-start reboot-body-rules\nbody {\n margin: 0; // 1\n font-family: var(--#{$variable-prefix}body-font-family);\n @include font-size(var(--#{$variable-prefix}body-font-size));\n font-weight: var(--#{$variable-prefix}body-font-weight);\n line-height: var(--#{$variable-prefix}body-line-height);\n color: var(--#{$variable-prefix}body-color);\n text-align: var(--#{$variable-prefix}body-text-align);\n background-color: var(--#{$variable-prefix}body-bg); // 2\n -webkit-text-size-adjust: 100%; // 3\n -webkit-tap-highlight-color: rgba($black, 0); // 4\n}\n// scss-docs-end reboot-body-rules\n\n\n// Content grouping\n//\n// 1. Reset Firefox's gray color\n// 2. Set correct height and prevent the `size` attribute to make the `hr` look like an input field\n\nhr {\n margin: $hr-margin-y 0;\n color: $hr-color; // 1\n background-color: currentColor;\n border: 0;\n opacity: $hr-opacity;\n}\n\nhr:not([size]) {\n height: $hr-height; // 2\n}\n\n\n// Typography\n//\n// 1. Remove top margins from headings\n// By default, `<h1>`-`<h6>` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n\n%heading {\n margin-top: 0; // 1\n margin-bottom: $headings-margin-bottom;\n font-family: $headings-font-family;\n font-style: $headings-font-style;\n font-weight: $headings-font-weight;\n line-height: $headings-line-height;\n color: $headings-color;\n}\n\nh1 {\n @extend %heading;\n @include font-size($h1-font-size);\n}\n\nh2 {\n @extend %heading;\n @include font-size($h2-font-size);\n}\n\nh3 {\n @extend %heading;\n @include font-size($h3-font-size);\n}\n\nh4 {\n @extend %heading;\n @include font-size($h4-font-size);\n}\n\nh5 {\n @extend %heading;\n @include font-size($h5-font-size);\n}\n\nh6 {\n @extend %heading;\n @include font-size($h6-font-size);\n}\n\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `<p>`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\n\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n\n// Abbreviations\n//\n// 1. Duplicate behavior to the data-bs-* attribute for our tooltip plugin\n// 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Prevent the text-decoration to be skipped.\n\nabbr[title],\nabbr[data-bs-original-title] { // 1\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n text-decoration-skip-ink: none; // 4\n}\n\n\n// Address\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\n\n// Lists\n\nol,\nul {\n padding-left: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\n// 1. Undo browser default\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // 1\n}\n\n\n// Blockquote\n\nblockquote {\n margin: 0 0 1rem;\n}\n\n\n// Strong\n//\n// Add the correct font weight in Chrome, Edge, and Safari\n\nb,\nstrong {\n font-weight: $font-weight-bolder;\n}\n\n\n// Small\n//\n// Add the correct font size in all browsers\n\nsmall {\n @include font-size($small-font-size);\n}\n\n\n// Mark\n\nmark {\n padding: $mark-padding;\n background-color: $mark-bg;\n}\n\n\n// Sub and Sup\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n\nsub,\nsup {\n position: relative;\n @include font-size($sub-sup-font-size);\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n// Links\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n\n &:hover {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([class]) {\n &,\n &:hover {\n color: inherit;\n text-decoration: none;\n }\n}\n\n\n// Code\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-code;\n @include font-size(1em); // Correct the odd `em` font sizing in all browsers.\n direction: ltr #{\"/* rtl:ignore */\"};\n unicode-bidi: bidi-override;\n}\n\n// 1. Remove browser default top margin\n// 2. Reset browser default of `1em` to use `rem`s\n// 3. Don't allow content to break outside\n\npre {\n display: block;\n margin-top: 0; // 1\n margin-bottom: 1rem; // 2\n overflow: auto; // 3\n @include font-size($code-font-size);\n color: $pre-color;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n @include font-size(inherit);\n color: inherit;\n word-break: normal;\n }\n}\n\ncode {\n @include font-size($code-font-size);\n color: $code-color;\n word-wrap: break-word;\n\n // Streamline the style when inside anchors to avoid broken underline and more\n a > & {\n color: inherit;\n }\n}\n\nkbd {\n padding: $kbd-padding-y $kbd-padding-x;\n @include font-size($kbd-font-size);\n color: $kbd-color;\n background-color: $kbd-bg;\n @include border-radius($border-radius-sm);\n\n kbd {\n padding: 0;\n @include font-size(1em);\n font-weight: $nested-kbd-font-weight;\n }\n}\n\n\n// Figures\n//\n// Apply a consistent margin strategy (matches our type styles).\n\nfigure {\n margin: 0 0 1rem;\n}\n\n\n// Images and content\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\n\n// Tables\n//\n// Prevent double borders\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: $table-cell-padding-y;\n padding-bottom: $table-cell-padding-y;\n color: $table-caption-color;\n text-align: left;\n}\n\n// 1. Removes font-weight bold by inheriting\n// 2. Matches default `<td>` alignment by inheriting `text-align`.\n// 3. Fix alignment for Safari\n\nth {\n font-weight: $table-th-font-weight; // 1\n text-align: inherit; // 2\n text-align: -webkit-match-parent; // 3\n}\n\nthead,\ntbody,\ntfoot,\ntr,\ntd,\nth {\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n}\n\n\n// Forms\n//\n// 1. Allow labels to use `margin` for spacing.\n\nlabel {\n display: inline-block; // 1\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n// See https://github.com/twbs/bootstrap/issues/24093\n\nbutton {\n // stylelint-disable-next-line property-disallowed-list\n border-radius: 0;\n}\n\n// Explicitly remove focus outline in Chromium when it shouldn't be\n// visible (e.g. as result of mouse click or touch tap). It already\n// should be doing this automatically, but seems to currently be\n// confused and applies its very visible two-tone outline anyway.\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\n// 1. Remove the margin in Firefox and Safari\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // 1\n font-family: inherit;\n @include font-size(inherit);\n line-height: inherit;\n}\n\n// Remove the inheritance of text transform in Firefox\nbutton,\nselect {\n text-transform: none;\n}\n// Set the cursor for non-`<button>` buttons\n//\n// Details at https://github.com/twbs/bootstrap/pull/30562\n[role=\"button\"] {\n cursor: pointer;\n}\n\nselect {\n // Remove the inheritance of word-wrap in Safari.\n // See https://github.com/twbs/bootstrap/issues/24990\n word-wrap: normal;\n\n // Undo the opacity change from Chrome\n &:disabled {\n opacity: 1;\n }\n}\n\n// Remove the dropdown arrow in Chrome from inputs built with datalists.\n// See https://stackoverflow.com/a/54997118\n\n[list]::-webkit-calendar-picker-indicator {\n display: none;\n}\n\n// 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`\n// controls in Android 4.\n// 2. Correct the inability to style clickable types in iOS and Safari.\n// 3. Opinionated: add \"hand\" cursor to non-disabled button elements.\n\nbutton,\n[type=\"button\"], // 1\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button; // 2\n\n @if $enable-button-pointers {\n &:not(:disabled) {\n cursor: pointer; // 3\n }\n }\n}\n\n// Remove inner border and padding from Firefox, but don't restore the outline like Normalize.\n\n::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\n// 1. Textareas should really only resize vertically so they don't break their (horizontal) containers.\n\ntextarea {\n resize: vertical; // 1\n}\n\n// 1. Browsers set a default `min-width: min-content;` on fieldsets,\n// unlike e.g. `<div>`s, which have `min-width: 0;` by default.\n// So we reset that to ensure fieldsets behave more like a standard block element.\n// See https://github.com/twbs/bootstrap/issues/12359\n// and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements\n// 2. Reset the default outline behavior of fieldsets so they don't affect page layout.\n\nfieldset {\n min-width: 0; // 1\n padding: 0; // 2\n margin: 0; // 2\n border: 0; // 2\n}\n\n// 1. By using `float: left`, the legend will behave like a block element.\n// This way the border of a fieldset wraps around the legend if present.\n// 2. Fix wrapping bug.\n// See https://github.com/twbs/bootstrap/issues/29712\n\nlegend {\n float: left; // 1\n width: 100%;\n padding: 0;\n margin-bottom: $legend-margin-bottom;\n @include font-size($legend-font-size);\n font-weight: $legend-font-weight;\n line-height: inherit;\n\n + * {\n clear: left; // 2\n }\n}\n\n// Fix height of inputs with a type of datetime-local, date, month, week, or time\n// See https://github.com/twbs/bootstrap/issues/18842\n\n::-webkit-datetime-edit-fields-wrapper,\n::-webkit-datetime-edit-text,\n::-webkit-datetime-edit-minute,\n::-webkit-datetime-edit-hour-field,\n::-webkit-datetime-edit-day-field,\n::-webkit-datetime-edit-month-field,\n::-webkit-datetime-edit-year-field {\n padding: 0;\n}\n\n::-webkit-inner-spin-button {\n height: auto;\n}\n\n// 1. Correct the outline style in Safari.\n// 2. This overrides the extra rounded corners on search inputs in iOS so that our\n// `.form-control` class can properly style them. Note that this cannot simply\n// be added to `.form-control` as it's not specific enough. For details, see\n// https://github.com/twbs/bootstrap/issues/11586.\n\n[type=\"search\"] {\n outline-offset: -2px; // 1\n -webkit-appearance: textfield; // 2\n}\n\n// 1. A few input types should stay LTR\n// See https://rtlstyling.com/posts/rtl-styling#form-inputs\n// 2. RTL only output\n// See https://rtlcss.com/learn/usage-guide/control-directives/#raw\n\n/* rtl:raw:\n[type=\"tel\"],\n[type=\"url\"],\n[type=\"email\"],\n[type=\"number\"] {\n direction: ltr;\n}\n*/\n\n// Remove the inner padding in Chrome and Safari on macOS.\n\n::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n// Remove padding around color pickers in webkit browsers\n\n::-webkit-color-swatch-wrapper {\n padding: 0;\n}\n\n\n// Inherit font family and line height for file input buttons\n\n::file-selector-button {\n font: inherit;\n}\n\n// 1. Change font properties to `inherit`\n// 2. Correct the inability to style clickable types in iOS and Safari.\n\n::-webkit-file-upload-button {\n font: inherit; // 1\n -webkit-appearance: button; // 2\n}\n\n// Correct element displays\n\noutput {\n display: inline-block;\n}\n\n// Remove border from iframe\n\niframe {\n border: 0;\n}\n\n// Summary\n//\n// 1. Add the correct display in all browsers\n\nsummary {\n display: list-item; // 1\n cursor: pointer;\n}\n\n\n// Progress\n//\n// Add the correct vertical alignment in Chrome, Firefox, and Opera.\n\nprogress {\n vertical-align: baseline;\n}\n\n\n// Hidden attribute\n//\n// Always hide an element with the `hidden` HTML attribute.\n\n[hidden] {\n display: none !important;\n}\n","@charset \"UTF-8\";\n/*!\n * Bootstrap v5.1.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n:root {\n --bs-blue: #0d6efd;\n --bs-indigo: #6610f2;\n --bs-purple: #6f42c1;\n --bs-pink: #d63384;\n --bs-red: #dc3545;\n --bs-orange: #fd7e14;\n --bs-yellow: #ffc107;\n --bs-green: #198754;\n --bs-teal: #20c997;\n --bs-cyan: #0dcaf0;\n --bs-white: #fff;\n --bs-gray: #6c757d;\n --bs-gray-dark: #343a40;\n --bs-gray-100: #f8f9fa;\n --bs-gray-200: #e9ecef;\n --bs-gray-300: #dee2e6;\n --bs-gray-400: #ced4da;\n --bs-gray-500: #adb5bd;\n --bs-gray-600: #6c757d;\n --bs-gray-700: #495057;\n --bs-gray-800: #343a40;\n --bs-gray-900: #212529;\n --bs-primary: #0d6efd;\n --bs-secondary: #6c757d;\n --bs-success: #198754;\n --bs-info: #0dcaf0;\n --bs-warning: #ffc107;\n --bs-danger: #dc3545;\n --bs-light: #f8f9fa;\n --bs-dark: #212529;\n --bs-primary-rgb: 13, 110, 253;\n --bs-secondary-rgb: 108, 117, 125;\n --bs-success-rgb: 25, 135, 84;\n --bs-info-rgb: 13, 202, 240;\n --bs-warning-rgb: 255, 193, 7;\n --bs-danger-rgb: 220, 53, 69;\n --bs-light-rgb: 248, 249, 250;\n --bs-dark-rgb: 33, 37, 41;\n --bs-white-rgb: 255, 255, 255;\n --bs-black-rgb: 0, 0, 0;\n --bs-body-rgb: 33, 37, 41;\n --bs-font-sans-serif: system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", \"Liberation Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));\n --bs-body-font-family: var(--bs-font-sans-serif);\n --bs-body-font-size: 1rem;\n --bs-body-font-weight: 400;\n --bs-body-line-height: 1.5;\n --bs-body-color: #212529;\n --bs-body-bg: #fff;\n}\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n@media (prefers-reduced-motion: no-preference) {\n :root {\n scroll-behavior: smooth;\n }\n}\n\nbody {\n margin: 0;\n font-family: var(--bs-body-font-family);\n font-size: var(--bs-body-font-size);\n font-weight: var(--bs-body-font-weight);\n line-height: var(--bs-body-line-height);\n color: var(--bs-body-color);\n text-align: var(--bs-body-text-align);\n background-color: var(--bs-body-bg);\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\n\nhr {\n margin: 1rem 0;\n color: inherit;\n background-color: currentColor;\n border: 0;\n opacity: 0.25;\n}\n\nhr:not([size]) {\n height: 1px;\n}\n\nh6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {\n margin-top: 0;\n margin-bottom: 0.5rem;\n font-weight: 500;\n line-height: 1.2;\n}\n\nh1, .h1 {\n font-size: calc(1.375rem + 1.5vw);\n}\n@media (min-width: 1200px) {\n h1, .h1 {\n font-size: 2.5rem;\n }\n}\n\nh2, .h2 {\n font-size: calc(1.325rem + 0.9vw);\n}\n@media (min-width: 1200px) {\n h2, .h2 {\n font-size: 2rem;\n }\n}\n\nh3, .h3 {\n font-size: calc(1.3rem + 0.6vw);\n}\n@media (min-width: 1200px) {\n h3, .h3 {\n font-size: 1.75rem;\n }\n}\n\nh4, .h4 {\n font-size: calc(1.275rem + 0.3vw);\n}\n@media (min-width: 1200px) {\n h4, .h4 {\n font-size: 1.5rem;\n }\n}\n\nh5, .h5 {\n font-size: 1.25rem;\n}\n\nh6, .h6 {\n font-size: 1rem;\n}\n\np {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nabbr[title],\nabbr[data-bs-original-title] {\n -webkit-text-decoration: underline dotted;\n text-decoration: underline dotted;\n cursor: help;\n -webkit-text-decoration-skip-ink: none;\n text-decoration-skip-ink: none;\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul {\n padding-left: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: 700;\n}\n\ndd {\n margin-bottom: 0.5rem;\n margin-left: 0;\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\nb,\nstrong {\n font-weight: bolder;\n}\n\nsmall, .small {\n font-size: 0.875em;\n}\n\nmark, .mark {\n padding: 0.2em;\n background-color: #fcf8e3;\n}\n\nsub,\nsup {\n position: relative;\n font-size: 0.75em;\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub {\n bottom: -0.25em;\n}\n\nsup {\n top: -0.5em;\n}\n\na {\n color: #0d6efd;\n text-decoration: underline;\n}\na:hover {\n color: #0a58ca;\n}\n\na:not([href]):not([class]), a:not([href]):not([class]):hover {\n color: inherit;\n text-decoration: none;\n}\n\npre,\ncode,\nkbd,\nsamp {\n font-family: var(--bs-font-monospace);\n font-size: 1em;\n direction: ltr /* rtl:ignore */;\n unicode-bidi: bidi-override;\n}\n\npre {\n display: block;\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n font-size: 0.875em;\n}\npre code {\n font-size: inherit;\n color: inherit;\n word-break: normal;\n}\n\ncode {\n font-size: 0.875em;\n color: #d63384;\n word-wrap: break-word;\n}\na > code {\n color: inherit;\n}\n\nkbd {\n padding: 0.2rem 0.4rem;\n font-size: 0.875em;\n color: #fff;\n background-color: #212529;\n border-radius: 0.2rem;\n}\nkbd kbd {\n padding: 0;\n font-size: 1em;\n font-weight: 700;\n}\n\nfigure {\n margin: 0 0 1rem;\n}\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n color: #6c757d;\n text-align: left;\n}\n\nth {\n text-align: inherit;\n text-align: -webkit-match-parent;\n}\n\nthead,\ntbody,\ntfoot,\ntr,\ntd,\nth {\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n}\n\nlabel {\n display: inline-block;\n}\n\nbutton {\n border-radius: 0;\n}\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\nbutton,\nselect {\n text-transform: none;\n}\n\n[role=button] {\n cursor: pointer;\n}\n\nselect {\n word-wrap: normal;\n}\nselect:disabled {\n opacity: 1;\n}\n\n[list]::-webkit-calendar-picker-indicator {\n display: none;\n}\n\nbutton,\n[type=button],\n[type=reset],\n[type=submit] {\n -webkit-appearance: button;\n}\nbutton:not(:disabled),\n[type=button]:not(:disabled),\n[type=reset]:not(:disabled),\n[type=submit]:not(:disabled) {\n cursor: pointer;\n}\n\n::-moz-focus-inner {\n padding: 0;\n border-style: none;\n}\n\ntextarea {\n resize: vertical;\n}\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0;\n}\n\nlegend {\n float: left;\n width: 100%;\n padding: 0;\n margin-bottom: 0.5rem;\n font-size: calc(1.275rem + 0.3vw);\n line-height: inherit;\n}\n@media (min-width: 1200px) {\n legend {\n font-size: 1.5rem;\n }\n}\nlegend + * {\n clear: left;\n}\n\n::-webkit-datetime-edit-fields-wrapper,\n::-webkit-datetime-edit-text,\n::-webkit-datetime-edit-minute,\n::-webkit-datetime-edit-hour-field,\n::-webkit-datetime-edit-day-field,\n::-webkit-datetime-edit-month-field,\n::-webkit-datetime-edit-year-field {\n padding: 0;\n}\n\n::-webkit-inner-spin-button {\n height: auto;\n}\n\n[type=search] {\n outline-offset: -2px;\n -webkit-appearance: textfield;\n}\n\n/* rtl:raw:\n[type=\"tel\"],\n[type=\"url\"],\n[type=\"email\"],\n[type=\"number\"] {\n direction: ltr;\n}\n*/\n::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n::-webkit-color-swatch-wrapper {\n padding: 0;\n}\n\n::file-selector-button {\n font: inherit;\n}\n\n::-webkit-file-upload-button {\n font: inherit;\n -webkit-appearance: button;\n}\n\noutput {\n display: inline-block;\n}\n\niframe {\n border: 0;\n}\n\nsummary {\n display: list-item;\n cursor: pointer;\n}\n\nprogress {\n vertical-align: baseline;\n}\n\n[hidden] {\n display: none !important;\n}\n\n.lead {\n font-size: 1.25rem;\n font-weight: 300;\n}\n\n.display-1 {\n font-size: calc(1.625rem + 4.5vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-1 {\n font-size: 5rem;\n }\n}\n\n.display-2 {\n font-size: calc(1.575rem + 3.9vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-2 {\n font-size: 4.5rem;\n }\n}\n\n.display-3 {\n font-size: calc(1.525rem + 3.3vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-3 {\n font-size: 4rem;\n }\n}\n\n.display-4 {\n font-size: calc(1.475rem + 2.7vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-4 {\n font-size: 3.5rem;\n }\n}\n\n.display-5 {\n font-size: calc(1.425rem + 2.1vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-5 {\n font-size: 3rem;\n }\n}\n\n.display-6 {\n font-size: calc(1.375rem + 1.5vw);\n font-weight: 300;\n line-height: 1.2;\n}\n@media (min-width: 1200px) {\n .display-6 {\n font-size: 2.5rem;\n }\n}\n\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline {\n padding-left: 0;\n list-style: none;\n}\n\n.list-inline-item {\n display: inline-block;\n}\n.list-inline-item:not(:last-child) {\n margin-right: 0.5rem;\n}\n\n.initialism {\n font-size: 0.875em;\n text-transform: uppercase;\n}\n\n.blockquote {\n margin-bottom: 1rem;\n font-size: 1.25rem;\n}\n.blockquote > :last-child {\n margin-bottom: 0;\n}\n\n.blockquote-footer {\n margin-top: -1rem;\n margin-bottom: 1rem;\n font-size: 0.875em;\n color: #6c757d;\n}\n.blockquote-footer::before {\n content: \"— \";\n}\n\n.img-fluid {\n max-width: 100%;\n height: auto;\n}\n\n.img-thumbnail {\n padding: 0.25rem;\n background-color: #fff;\n border: 1px solid #dee2e6;\n border-radius: 0.25rem;\n max-width: 100%;\n height: auto;\n}\n\n.figure {\n display: inline-block;\n}\n\n.figure-img {\n margin-bottom: 0.5rem;\n line-height: 1;\n}\n\n.figure-caption {\n font-size: 0.875em;\n color: #6c757d;\n}\n\n.container,\n.container-fluid,\n.container-xxl,\n.container-xl,\n.container-lg,\n.container-md,\n.container-sm {\n width: 100%;\n padding-right: var(--bs-gutter-x, 0.75rem);\n padding-left: var(--bs-gutter-x, 0.75rem);\n margin-right: auto;\n margin-left: auto;\n}\n\n@media (min-width: 576px) {\n .container-sm, .container {\n max-width: 540px;\n }\n}\n@media (min-width: 768px) {\n .container-md, .container-sm, .container {\n max-width: 720px;\n }\n}\n@media (min-width: 992px) {\n .container-lg, .container-md, .container-sm, .container {\n max-width: 960px;\n }\n}\n@media (min-width: 1200px) {\n .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1140px;\n }\n}\n@media (min-width: 1400px) {\n .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {\n max-width: 1320px;\n }\n}\n.row {\n --bs-gutter-x: 1.5rem;\n --bs-gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(var(--bs-gutter-y) * -1);\n margin-right: calc(var(--bs-gutter-x) * -.5);\n margin-left: calc(var(--bs-gutter-x) * -.5);\n}\n.row > * {\n flex-shrink: 0;\n width: 100%;\n max-width: 100%;\n padding-right: calc(var(--bs-gutter-x) * .5);\n padding-left: calc(var(--bs-gutter-x) * .5);\n margin-top: var(--bs-gutter-y);\n}\n\n.col {\n flex: 1 0 0%;\n}\n\n.row-cols-auto > * {\n flex: 0 0 auto;\n width: auto;\n}\n\n.row-cols-1 > * {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.row-cols-2 > * {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.row-cols-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n}\n\n.row-cols-4 > * {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.row-cols-5 > * {\n flex: 0 0 auto;\n width: 20%;\n}\n\n.row-cols-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n}\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n}\n\n.col-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n}\n\n.col-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n}\n\n.col-3 {\n flex: 0 0 auto;\n width: 25%;\n}\n\n.col-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n}\n\n.col-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n}\n\n.col-6 {\n flex: 0 0 auto;\n width: 50%;\n}\n\n.col-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n}\n\n.col-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n}\n\n.col-9 {\n flex: 0 0 auto;\n width: 75%;\n}\n\n.col-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n}\n\n.col-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n}\n\n.col-12 {\n flex: 0 0 auto;\n width: 100%;\n}\n\n.offset-1 {\n margin-left: 8.33333333%;\n}\n\n.offset-2 {\n margin-left: 16.66666667%;\n}\n\n.offset-3 {\n margin-left: 25%;\n}\n\n.offset-4 {\n margin-left: 33.33333333%;\n}\n\n.offset-5 {\n margin-left: 41.66666667%;\n}\n\n.offset-6 {\n margin-left: 50%;\n}\n\n.offset-7 {\n margin-left: 58.33333333%;\n}\n\n.offset-8 {\n margin-left: 66.66666667%;\n}\n\n.offset-9 {\n margin-left: 75%;\n}\n\n.offset-10 {\n margin-left: 83.33333333%;\n}\n\n.offset-11 {\n margin-left: 91.66666667%;\n}\n\n.g-0,\n.gx-0 {\n --bs-gutter-x: 0;\n}\n\n.g-0,\n.gy-0 {\n --bs-gutter-y: 0;\n}\n\n.g-1,\n.gx-1 {\n --bs-gutter-x: 0.25rem;\n}\n\n.g-1,\n.gy-1 {\n --bs-gutter-y: 0.25rem;\n}\n\n.g-2,\n.gx-2 {\n --bs-gutter-x: 0.5rem;\n}\n\n.g-2,\n.gy-2 {\n --bs-gutter-y: 0.5rem;\n}\n\n.g-3,\n.gx-3 {\n --bs-gutter-x: 1rem;\n}\n\n.g-3,\n.gy-3 {\n --bs-gutter-y: 1rem;\n}\n\n.g-4,\n.gx-4 {\n --bs-gutter-x: 1.5rem;\n}\n\n.g-4,\n.gy-4 {\n --bs-gutter-y: 1.5rem;\n}\n\n.g-5,\n.gx-5 {\n --bs-gutter-x: 3rem;\n}\n\n.g-5,\n.gy-5 {\n --bs-gutter-y: 3rem;\n}\n\n@media (min-width: 576px) {\n .col-sm {\n flex: 1 0 0%;\n }\n\n .row-cols-sm-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-sm-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-sm-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-sm-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-sm-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-sm-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-sm-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-sm-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-sm-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-sm-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-sm-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-sm-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-sm-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-sm-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-sm-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-sm-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-sm-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-sm-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-sm-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-sm-0 {\n margin-left: 0;\n }\n\n .offset-sm-1 {\n margin-left: 8.33333333%;\n }\n\n .offset-sm-2 {\n margin-left: 16.66666667%;\n }\n\n .offset-sm-3 {\n margin-left: 25%;\n }\n\n .offset-sm-4 {\n margin-left: 33.33333333%;\n }\n\n .offset-sm-5 {\n margin-left: 41.66666667%;\n }\n\n .offset-sm-6 {\n margin-left: 50%;\n }\n\n .offset-sm-7 {\n margin-left: 58.33333333%;\n }\n\n .offset-sm-8 {\n margin-left: 66.66666667%;\n }\n\n .offset-sm-9 {\n margin-left: 75%;\n }\n\n .offset-sm-10 {\n margin-left: 83.33333333%;\n }\n\n .offset-sm-11 {\n margin-left: 91.66666667%;\n }\n\n .g-sm-0,\n.gx-sm-0 {\n --bs-gutter-x: 0;\n }\n\n .g-sm-0,\n.gy-sm-0 {\n --bs-gutter-y: 0;\n }\n\n .g-sm-1,\n.gx-sm-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-sm-1,\n.gy-sm-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-sm-2,\n.gx-sm-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-sm-2,\n.gy-sm-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-sm-3,\n.gx-sm-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-sm-3,\n.gy-sm-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-sm-4,\n.gx-sm-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-sm-4,\n.gy-sm-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-sm-5,\n.gx-sm-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-sm-5,\n.gy-sm-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 768px) {\n .col-md {\n flex: 1 0 0%;\n }\n\n .row-cols-md-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-md-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-md-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-md-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-md-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-md-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-md-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-md-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-md-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-md-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-md-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-md-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-md-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-md-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-md-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-md-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-md-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-md-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-md-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-md-0 {\n margin-left: 0;\n }\n\n .offset-md-1 {\n margin-left: 8.33333333%;\n }\n\n .offset-md-2 {\n margin-left: 16.66666667%;\n }\n\n .offset-md-3 {\n margin-left: 25%;\n }\n\n .offset-md-4 {\n margin-left: 33.33333333%;\n }\n\n .offset-md-5 {\n margin-left: 41.66666667%;\n }\n\n .offset-md-6 {\n margin-left: 50%;\n }\n\n .offset-md-7 {\n margin-left: 58.33333333%;\n }\n\n .offset-md-8 {\n margin-left: 66.66666667%;\n }\n\n .offset-md-9 {\n margin-left: 75%;\n }\n\n .offset-md-10 {\n margin-left: 83.33333333%;\n }\n\n .offset-md-11 {\n margin-left: 91.66666667%;\n }\n\n .g-md-0,\n.gx-md-0 {\n --bs-gutter-x: 0;\n }\n\n .g-md-0,\n.gy-md-0 {\n --bs-gutter-y: 0;\n }\n\n .g-md-1,\n.gx-md-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-md-1,\n.gy-md-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-md-2,\n.gx-md-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-md-2,\n.gy-md-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-md-3,\n.gx-md-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-md-3,\n.gy-md-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-md-4,\n.gx-md-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-md-4,\n.gy-md-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-md-5,\n.gx-md-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-md-5,\n.gy-md-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 992px) {\n .col-lg {\n flex: 1 0 0%;\n }\n\n .row-cols-lg-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-lg-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-lg-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-lg-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-lg-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-lg-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-lg-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-lg-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-lg-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-lg-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-lg-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-lg-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-lg-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-lg-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-lg-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-lg-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-lg-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-lg-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-lg-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-lg-0 {\n margin-left: 0;\n }\n\n .offset-lg-1 {\n margin-left: 8.33333333%;\n }\n\n .offset-lg-2 {\n margin-left: 16.66666667%;\n }\n\n .offset-lg-3 {\n margin-left: 25%;\n }\n\n .offset-lg-4 {\n margin-left: 33.33333333%;\n }\n\n .offset-lg-5 {\n margin-left: 41.66666667%;\n }\n\n .offset-lg-6 {\n margin-left: 50%;\n }\n\n .offset-lg-7 {\n margin-left: 58.33333333%;\n }\n\n .offset-lg-8 {\n margin-left: 66.66666667%;\n }\n\n .offset-lg-9 {\n margin-left: 75%;\n }\n\n .offset-lg-10 {\n margin-left: 83.33333333%;\n }\n\n .offset-lg-11 {\n margin-left: 91.66666667%;\n }\n\n .g-lg-0,\n.gx-lg-0 {\n --bs-gutter-x: 0;\n }\n\n .g-lg-0,\n.gy-lg-0 {\n --bs-gutter-y: 0;\n }\n\n .g-lg-1,\n.gx-lg-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-lg-1,\n.gy-lg-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-lg-2,\n.gx-lg-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-lg-2,\n.gy-lg-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-lg-3,\n.gx-lg-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-lg-3,\n.gy-lg-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-lg-4,\n.gx-lg-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-lg-4,\n.gy-lg-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-lg-5,\n.gx-lg-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-lg-5,\n.gy-lg-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1200px) {\n .col-xl {\n flex: 1 0 0%;\n }\n\n .row-cols-xl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-xl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-xl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-xl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-xl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-xl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-xl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-xl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-xl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-xl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-xl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-xl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-xl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-xl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-xl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-xl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-xl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-xl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-xl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-xl-0 {\n margin-left: 0;\n }\n\n .offset-xl-1 {\n margin-left: 8.33333333%;\n }\n\n .offset-xl-2 {\n margin-left: 16.66666667%;\n }\n\n .offset-xl-3 {\n margin-left: 25%;\n }\n\n .offset-xl-4 {\n margin-left: 33.33333333%;\n }\n\n .offset-xl-5 {\n margin-left: 41.66666667%;\n }\n\n .offset-xl-6 {\n margin-left: 50%;\n }\n\n .offset-xl-7 {\n margin-left: 58.33333333%;\n }\n\n .offset-xl-8 {\n margin-left: 66.66666667%;\n }\n\n .offset-xl-9 {\n margin-left: 75%;\n }\n\n .offset-xl-10 {\n margin-left: 83.33333333%;\n }\n\n .offset-xl-11 {\n margin-left: 91.66666667%;\n }\n\n .g-xl-0,\n.gx-xl-0 {\n --bs-gutter-x: 0;\n }\n\n .g-xl-0,\n.gy-xl-0 {\n --bs-gutter-y: 0;\n }\n\n .g-xl-1,\n.gx-xl-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-xl-1,\n.gy-xl-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-xl-2,\n.gx-xl-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-xl-2,\n.gy-xl-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-xl-3,\n.gx-xl-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-xl-3,\n.gy-xl-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-xl-4,\n.gx-xl-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-xl-4,\n.gy-xl-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-xl-5,\n.gx-xl-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-xl-5,\n.gy-xl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n@media (min-width: 1400px) {\n .col-xxl {\n flex: 1 0 0%;\n }\n\n .row-cols-xxl-auto > * {\n flex: 0 0 auto;\n width: auto;\n }\n\n .row-cols-xxl-1 > * {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .row-cols-xxl-2 > * {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .row-cols-xxl-3 > * {\n flex: 0 0 auto;\n width: 33.3333333333%;\n }\n\n .row-cols-xxl-4 > * {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .row-cols-xxl-5 > * {\n flex: 0 0 auto;\n width: 20%;\n }\n\n .row-cols-xxl-6 > * {\n flex: 0 0 auto;\n width: 16.6666666667%;\n }\n\n .col-xxl-auto {\n flex: 0 0 auto;\n width: auto;\n }\n\n .col-xxl-1 {\n flex: 0 0 auto;\n width: 8.33333333%;\n }\n\n .col-xxl-2 {\n flex: 0 0 auto;\n width: 16.66666667%;\n }\n\n .col-xxl-3 {\n flex: 0 0 auto;\n width: 25%;\n }\n\n .col-xxl-4 {\n flex: 0 0 auto;\n width: 33.33333333%;\n }\n\n .col-xxl-5 {\n flex: 0 0 auto;\n width: 41.66666667%;\n }\n\n .col-xxl-6 {\n flex: 0 0 auto;\n width: 50%;\n }\n\n .col-xxl-7 {\n flex: 0 0 auto;\n width: 58.33333333%;\n }\n\n .col-xxl-8 {\n flex: 0 0 auto;\n width: 66.66666667%;\n }\n\n .col-xxl-9 {\n flex: 0 0 auto;\n width: 75%;\n }\n\n .col-xxl-10 {\n flex: 0 0 auto;\n width: 83.33333333%;\n }\n\n .col-xxl-11 {\n flex: 0 0 auto;\n width: 91.66666667%;\n }\n\n .col-xxl-12 {\n flex: 0 0 auto;\n width: 100%;\n }\n\n .offset-xxl-0 {\n margin-left: 0;\n }\n\n .offset-xxl-1 {\n margin-left: 8.33333333%;\n }\n\n .offset-xxl-2 {\n margin-left: 16.66666667%;\n }\n\n .offset-xxl-3 {\n margin-left: 25%;\n }\n\n .offset-xxl-4 {\n margin-left: 33.33333333%;\n }\n\n .offset-xxl-5 {\n margin-left: 41.66666667%;\n }\n\n .offset-xxl-6 {\n margin-left: 50%;\n }\n\n .offset-xxl-7 {\n margin-left: 58.33333333%;\n }\n\n .offset-xxl-8 {\n margin-left: 66.66666667%;\n }\n\n .offset-xxl-9 {\n margin-left: 75%;\n }\n\n .offset-xxl-10 {\n margin-left: 83.33333333%;\n }\n\n .offset-xxl-11 {\n margin-left: 91.66666667%;\n }\n\n .g-xxl-0,\n.gx-xxl-0 {\n --bs-gutter-x: 0;\n }\n\n .g-xxl-0,\n.gy-xxl-0 {\n --bs-gutter-y: 0;\n }\n\n .g-xxl-1,\n.gx-xxl-1 {\n --bs-gutter-x: 0.25rem;\n }\n\n .g-xxl-1,\n.gy-xxl-1 {\n --bs-gutter-y: 0.25rem;\n }\n\n .g-xxl-2,\n.gx-xxl-2 {\n --bs-gutter-x: 0.5rem;\n }\n\n .g-xxl-2,\n.gy-xxl-2 {\n --bs-gutter-y: 0.5rem;\n }\n\n .g-xxl-3,\n.gx-xxl-3 {\n --bs-gutter-x: 1rem;\n }\n\n .g-xxl-3,\n.gy-xxl-3 {\n --bs-gutter-y: 1rem;\n }\n\n .g-xxl-4,\n.gx-xxl-4 {\n --bs-gutter-x: 1.5rem;\n }\n\n .g-xxl-4,\n.gy-xxl-4 {\n --bs-gutter-y: 1.5rem;\n }\n\n .g-xxl-5,\n.gx-xxl-5 {\n --bs-gutter-x: 3rem;\n }\n\n .g-xxl-5,\n.gy-xxl-5 {\n --bs-gutter-y: 3rem;\n }\n}\n.table {\n --bs-table-bg: transparent;\n --bs-table-accent-bg: transparent;\n --bs-table-striped-color: #212529;\n --bs-table-striped-bg: rgba(0, 0, 0, 0.05);\n --bs-table-active-color: #212529;\n --bs-table-active-bg: rgba(0, 0, 0, 0.1);\n --bs-table-hover-color: #212529;\n --bs-table-hover-bg: rgba(0, 0, 0, 0.075);\n width: 100%;\n margin-bottom: 1rem;\n color: #212529;\n vertical-align: top;\n border-color: #dee2e6;\n}\n.table > :not(caption) > * > * {\n padding: 0.5rem 0.5rem;\n background-color: var(--bs-table-bg);\n border-bottom-width: 1px;\n box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);\n}\n.table > tbody {\n vertical-align: inherit;\n}\n.table > thead {\n vertical-align: bottom;\n}\n.table > :not(:last-child) > :last-child > * {\n border-bottom-color: currentColor;\n}\n\n.caption-top {\n caption-side: top;\n}\n\n.table-sm > :not(caption) > * > * {\n padding: 0.25rem 0.25rem;\n}\n\n.table-bordered > :not(caption) > * {\n border-width: 1px 0;\n}\n.table-bordered > :not(caption) > * > * {\n border-width: 0 1px;\n}\n\n.table-borderless > :not(caption) > * > * {\n border-bottom-width: 0;\n}\n\n.table-striped > tbody > tr:nth-of-type(odd) {\n --bs-table-accent-bg: var(--bs-table-striped-bg);\n color: var(--bs-table-striped-color);\n}\n\n.table-active {\n --bs-table-accent-bg: var(--bs-table-active-bg);\n color: var(--bs-table-active-color);\n}\n\n.table-hover > tbody > tr:hover {\n --bs-table-accent-bg: var(--bs-table-hover-bg);\n color: var(--bs-table-hover-color);\n}\n\n.table-primary {\n --bs-table-bg: #cfe2ff;\n --bs-table-striped-bg: #c5d7f2;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #bacbe6;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #bfd1ec;\n --bs-table-hover-color: #000;\n color: #000;\n border-color: #bacbe6;\n}\n\n.table-secondary {\n --bs-table-bg: #e2e3e5;\n --bs-table-striped-bg: #d7d8da;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #cbccce;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #d1d2d4;\n --bs-table-hover-color: #000;\n color: #000;\n border-color: #cbccce;\n}\n\n.table-success {\n --bs-table-bg: #d1e7dd;\n --bs-table-striped-bg: #c7dbd2;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #bcd0c7;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #c1d6cc;\n --bs-table-hover-color: #000;\n color: #000;\n border-color: #bcd0c7;\n}\n\n.table-info {\n --bs-table-bg: #cff4fc;\n --bs-table-striped-bg: #c5e8ef;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #badce3;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #bfe2e9;\n --bs-table-hover-color: #000;\n color: #000;\n border-color: #badce3;\n}\n\n.table-warning {\n --bs-table-bg: #fff3cd;\n --bs-table-striped-bg: #f2e7c3;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #e6dbb9;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #ece1be;\n --bs-table-hover-color: #000;\n color: #000;\n border-color: #e6dbb9;\n}\n\n.table-danger {\n --bs-table-bg: #f8d7da;\n --bs-table-striped-bg: #eccccf;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #dfc2c4;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #e5c7ca;\n --bs-table-hover-color: #000;\n color: #000;\n border-color: #dfc2c4;\n}\n\n.table-light {\n --bs-table-bg: #f8f9fa;\n --bs-table-striped-bg: #ecedee;\n --bs-table-striped-color: #000;\n --bs-table-active-bg: #dfe0e1;\n --bs-table-active-color: #000;\n --bs-table-hover-bg: #e5e6e7;\n --bs-table-hover-color: #000;\n color: #000;\n border-color: #dfe0e1;\n}\n\n.table-dark {\n --bs-table-bg: #212529;\n --bs-table-striped-bg: #2c3034;\n --bs-table-striped-color: #fff;\n --bs-table-active-bg: #373b3e;\n --bs-table-active-color: #fff;\n --bs-table-hover-bg: #323539;\n --bs-table-hover-color: #fff;\n color: #fff;\n border-color: #373b3e;\n}\n\n.table-responsive {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n}\n\n@media (max-width: 575.98px) {\n .table-responsive-sm {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n}\n@media (max-width: 767.98px) {\n .table-responsive-md {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n}\n@media (max-width: 991.98px) {\n .table-responsive-lg {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n}\n@media (max-width: 1199.98px) {\n .table-responsive-xl {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n}\n@media (max-width: 1399.98px) {\n .table-responsive-xxl {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n}\n.form-label {\n margin-bottom: 0.5rem;\n}\n\n.col-form-label {\n padding-top: calc(0.375rem + 1px);\n padding-bottom: calc(0.375rem + 1px);\n margin-bottom: 0;\n font-size: inherit;\n line-height: 1.5;\n}\n\n.col-form-label-lg {\n padding-top: calc(0.5rem + 1px);\n padding-bottom: calc(0.5rem + 1px);\n font-size: 1.25rem;\n}\n\n.col-form-label-sm {\n padding-top: calc(0.25rem + 1px);\n padding-bottom: calc(0.25rem + 1px);\n font-size: 0.875rem;\n}\n\n.form-text {\n margin-top: 0.25rem;\n font-size: 0.875em;\n color: #6c757d;\n}\n\n.form-control {\n display: block;\n width: 100%;\n padding: 0.375rem 0.75rem;\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #212529;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid #ced4da;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n border-radius: 0.25rem;\n transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .form-control {\n transition: none;\n }\n}\n.form-control[type=file] {\n overflow: hidden;\n}\n.form-control[type=file]:not(:disabled):not([readonly]) {\n cursor: pointer;\n}\n.form-control:focus {\n color: #212529;\n background-color: #fff;\n border-color: #86b7fe;\n outline: 0;\n box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);\n}\n.form-control::-webkit-date-and-time-value {\n height: 1.5em;\n}\n.form-control::-moz-placeholder {\n color: #6c757d;\n opacity: 1;\n}\n.form-control::placeholder {\n color: #6c757d;\n opacity: 1;\n}\n.form-control:disabled, .form-control[readonly] {\n background-color: #e9ecef;\n opacity: 1;\n}\n.form-control::file-selector-button {\n padding: 0.375rem 0.75rem;\n margin: -0.375rem -0.75rem;\n -webkit-margin-end: 0.75rem;\n margin-inline-end: 0.75rem;\n color: #212529;\n background-color: #e9ecef;\n pointer-events: none;\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n border-inline-end-width: 1px;\n border-radius: 0;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .form-control::file-selector-button {\n transition: none;\n }\n}\n.form-control:hover:not(:disabled):not([readonly])::file-selector-button {\n background-color: #dde0e3;\n}\n.form-control::-webkit-file-upload-button {\n padding: 0.375rem 0.75rem;\n margin: -0.375rem -0.75rem;\n -webkit-margin-end: 0.75rem;\n margin-inline-end: 0.75rem;\n color: #212529;\n background-color: #e9ecef;\n pointer-events: none;\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n border-inline-end-width: 1px;\n border-radius: 0;\n -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .form-control::-webkit-file-upload-button {\n -webkit-transition: none;\n transition: none;\n }\n}\n.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {\n background-color: #dde0e3;\n}\n\n.form-control-plaintext {\n display: block;\n width: 100%;\n padding: 0.375rem 0;\n margin-bottom: 0;\n line-height: 1.5;\n color: #212529;\n background-color: transparent;\n border: solid transparent;\n border-width: 1px 0;\n}\n.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {\n padding-right: 0;\n padding-left: 0;\n}\n\n.form-control-sm {\n min-height: calc(1.5em + 0.5rem + 2px);\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n border-radius: 0.2rem;\n}\n.form-control-sm::file-selector-button {\n padding: 0.25rem 0.5rem;\n margin: -0.25rem -0.5rem;\n -webkit-margin-end: 0.5rem;\n margin-inline-end: 0.5rem;\n}\n.form-control-sm::-webkit-file-upload-button {\n padding: 0.25rem 0.5rem;\n margin: -0.25rem -0.5rem;\n -webkit-margin-end: 0.5rem;\n margin-inline-end: 0.5rem;\n}\n\n.form-control-lg {\n min-height: calc(1.5em + 1rem + 2px);\n padding: 0.5rem 1rem;\n font-size: 1.25rem;\n border-radius: 0.3rem;\n}\n.form-control-lg::file-selector-button {\n padding: 0.5rem 1rem;\n margin: -0.5rem -1rem;\n -webkit-margin-end: 1rem;\n margin-inline-end: 1rem;\n}\n.form-control-lg::-webkit-file-upload-button {\n padding: 0.5rem 1rem;\n margin: -0.5rem -1rem;\n -webkit-margin-end: 1rem;\n margin-inline-end: 1rem;\n}\n\ntextarea.form-control {\n min-height: calc(1.5em + 0.75rem + 2px);\n}\ntextarea.form-control-sm {\n min-height: calc(1.5em + 0.5rem + 2px);\n}\ntextarea.form-control-lg {\n min-height: calc(1.5em + 1rem + 2px);\n}\n\n.form-control-color {\n width: 3rem;\n height: auto;\n padding: 0.375rem;\n}\n.form-control-color:not(:disabled):not([readonly]) {\n cursor: pointer;\n}\n.form-control-color::-moz-color-swatch {\n height: 1.5em;\n border-radius: 0.25rem;\n}\n.form-control-color::-webkit-color-swatch {\n height: 1.5em;\n border-radius: 0.25rem;\n}\n\n.form-select {\n display: block;\n width: 100%;\n padding: 0.375rem 2.25rem 0.375rem 0.75rem;\n -moz-padding-start: calc(0.75rem - 3px);\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #212529;\n background-color: #fff;\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\");\n background-repeat: no-repeat;\n background-position: right 0.75rem center;\n background-size: 16px 12px;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n}\n@media (prefers-reduced-motion: reduce) {\n .form-select {\n transition: none;\n }\n}\n.form-select:focus {\n border-color: #86b7fe;\n outline: 0;\n box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);\n}\n.form-select[multiple], .form-select[size]:not([size=\"1\"]) {\n padding-right: 0.75rem;\n background-image: none;\n}\n.form-select:disabled {\n background-color: #e9ecef;\n}\n.form-select:-moz-focusring {\n color: transparent;\n text-shadow: 0 0 0 #212529;\n}\n\n.form-select-sm {\n padding-top: 0.25rem;\n padding-bottom: 0.25rem;\n padding-left: 0.5rem;\n font-size: 0.875rem;\n}\n\n.form-select-lg {\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n padding-left: 1rem;\n font-size: 1.25rem;\n}\n\n.form-check {\n display: block;\n min-height: 1.5rem;\n padding-left: 1.5em;\n margin-bottom: 0.125rem;\n}\n.form-check .form-check-input {\n float: left;\n margin-left: -1.5em;\n}\n\n.form-check-input {\n width: 1em;\n height: 1em;\n margin-top: 0.25em;\n vertical-align: top;\n background-color: #fff;\n background-repeat: no-repeat;\n background-position: center;\n background-size: contain;\n border: 1px solid rgba(0, 0, 0, 0.25);\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n -webkit-print-color-adjust: exact;\n color-adjust: exact;\n}\n.form-check-input[type=checkbox] {\n border-radius: 0.25em;\n}\n.form-check-input[type=radio] {\n border-radius: 50%;\n}\n.form-check-input:active {\n filter: brightness(90%);\n}\n.form-check-input:focus {\n border-color: #86b7fe;\n outline: 0;\n box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);\n}\n.form-check-input:checked {\n background-color: #0d6efd;\n border-color: #0d6efd;\n}\n.form-check-input:checked[type=checkbox] {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e\");\n}\n.form-check-input:checked[type=radio] {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e\");\n}\n.form-check-input[type=checkbox]:indeterminate {\n background-color: #0d6efd;\n border-color: #0d6efd;\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e\");\n}\n.form-check-input:disabled {\n pointer-events: none;\n filter: none;\n opacity: 0.5;\n}\n.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {\n opacity: 0.5;\n}\n\n.form-switch {\n padding-left: 2.5em;\n}\n.form-switch .form-check-input {\n width: 2em;\n margin-left: -2.5em;\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e\");\n background-position: left center;\n border-radius: 2em;\n transition: background-position 0.15s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .form-switch .form-check-input {\n transition: none;\n }\n}\n.form-switch .form-check-input:focus {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e\");\n}\n.form-switch .form-check-input:checked {\n background-position: right center;\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e\");\n}\n\n.form-check-inline {\n display: inline-block;\n margin-right: 1rem;\n}\n\n.btn-check {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none;\n}\n.btn-check[disabled] + .btn, .btn-check:disabled + .btn {\n pointer-events: none;\n filter: none;\n opacity: 0.65;\n}\n\n.form-range {\n width: 100%;\n height: 1.5rem;\n padding: 0;\n background-color: transparent;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n}\n.form-range:focus {\n outline: 0;\n}\n.form-range:focus::-webkit-slider-thumb {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);\n}\n.form-range:focus::-moz-range-thumb {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);\n}\n.form-range::-moz-focus-outer {\n border: 0;\n}\n.form-range::-webkit-slider-thumb {\n width: 1rem;\n height: 1rem;\n margin-top: -0.25rem;\n background-color: #0d6efd;\n border: 0;\n border-radius: 1rem;\n -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n -webkit-appearance: none;\n appearance: none;\n}\n@media (prefers-reduced-motion: reduce) {\n .form-range::-webkit-slider-thumb {\n -webkit-transition: none;\n transition: none;\n }\n}\n.form-range::-webkit-slider-thumb:active {\n background-color: #b6d4fe;\n}\n.form-range::-webkit-slider-runnable-track {\n width: 100%;\n height: 0.5rem;\n color: transparent;\n cursor: pointer;\n background-color: #dee2e6;\n border-color: transparent;\n border-radius: 1rem;\n}\n.form-range::-moz-range-thumb {\n width: 1rem;\n height: 1rem;\n background-color: #0d6efd;\n border: 0;\n border-radius: 1rem;\n -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n -moz-appearance: none;\n appearance: none;\n}\n@media (prefers-reduced-motion: reduce) {\n .form-range::-moz-range-thumb {\n -moz-transition: none;\n transition: none;\n }\n}\n.form-range::-moz-range-thumb:active {\n background-color: #b6d4fe;\n}\n.form-range::-moz-range-track {\n width: 100%;\n height: 0.5rem;\n color: transparent;\n cursor: pointer;\n background-color: #dee2e6;\n border-color: transparent;\n border-radius: 1rem;\n}\n.form-range:disabled {\n pointer-events: none;\n}\n.form-range:disabled::-webkit-slider-thumb {\n background-color: #adb5bd;\n}\n.form-range:disabled::-moz-range-thumb {\n background-color: #adb5bd;\n}\n\n.form-floating {\n position: relative;\n}\n.form-floating > .form-control,\n.form-floating > .form-select {\n height: calc(3.5rem + 2px);\n line-height: 1.25;\n}\n.form-floating > label {\n position: absolute;\n top: 0;\n left: 0;\n height: 100%;\n padding: 1rem 0.75rem;\n pointer-events: none;\n border: 1px solid transparent;\n transform-origin: 0 0;\n transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .form-floating > label {\n transition: none;\n }\n}\n.form-floating > .form-control {\n padding: 1rem 0.75rem;\n}\n.form-floating > .form-control::-moz-placeholder {\n color: transparent;\n}\n.form-floating > .form-control::placeholder {\n color: transparent;\n}\n.form-floating > .form-control:not(:-moz-placeholder-shown) {\n padding-top: 1.625rem;\n padding-bottom: 0.625rem;\n}\n.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {\n padding-top: 1.625rem;\n padding-bottom: 0.625rem;\n}\n.form-floating > .form-control:-webkit-autofill {\n padding-top: 1.625rem;\n padding-bottom: 0.625rem;\n}\n.form-floating > .form-select {\n padding-top: 1.625rem;\n padding-bottom: 0.625rem;\n}\n.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {\n opacity: 0.65;\n transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);\n}\n.form-floating > .form-control:focus ~ label,\n.form-floating > .form-control:not(:placeholder-shown) ~ label,\n.form-floating > .form-select ~ label {\n opacity: 0.65;\n transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);\n}\n.form-floating > .form-control:-webkit-autofill ~ label {\n opacity: 0.65;\n transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);\n}\n\n.input-group {\n position: relative;\n display: flex;\n flex-wrap: wrap;\n align-items: stretch;\n width: 100%;\n}\n.input-group > .form-control,\n.input-group > .form-select {\n position: relative;\n flex: 1 1 auto;\n width: 1%;\n min-width: 0;\n}\n.input-group > .form-control:focus,\n.input-group > .form-select:focus {\n z-index: 3;\n}\n.input-group .btn {\n position: relative;\n z-index: 2;\n}\n.input-group .btn:focus {\n z-index: 3;\n}\n\n.input-group-text {\n display: flex;\n align-items: center;\n padding: 0.375rem 0.75rem;\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #212529;\n text-align: center;\n white-space: nowrap;\n background-color: #e9ecef;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n}\n\n.input-group-lg > .form-control,\n.input-group-lg > .form-select,\n.input-group-lg > .input-group-text,\n.input-group-lg > .btn {\n padding: 0.5rem 1rem;\n font-size: 1.25rem;\n border-radius: 0.3rem;\n}\n\n.input-group-sm > .form-control,\n.input-group-sm > .form-select,\n.input-group-sm > .input-group-text,\n.input-group-sm > .btn {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n border-radius: 0.2rem;\n}\n\n.input-group-lg > .form-select,\n.input-group-sm > .form-select {\n padding-right: 3rem;\n}\n\n.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),\n.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),\n.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {\n margin-left: -1px;\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.valid-feedback {\n display: none;\n width: 100%;\n margin-top: 0.25rem;\n font-size: 0.875em;\n color: #198754;\n}\n\n.valid-tooltip {\n position: absolute;\n top: 100%;\n z-index: 5;\n display: none;\n max-width: 100%;\n padding: 0.25rem 0.5rem;\n margin-top: 0.1rem;\n font-size: 0.875rem;\n color: #fff;\n background-color: rgba(25, 135, 84, 0.9);\n border-radius: 0.25rem;\n}\n\n.was-validated :valid ~ .valid-feedback,\n.was-validated :valid ~ .valid-tooltip,\n.is-valid ~ .valid-feedback,\n.is-valid ~ .valid-tooltip {\n display: block;\n}\n\n.was-validated .form-control:valid, .form-control.is-valid {\n border-color: #198754;\n padding-right: calc(1.5em + 0.75rem);\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\");\n background-repeat: no-repeat;\n background-position: right calc(0.375em + 0.1875rem) center;\n background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);\n}\n.was-validated .form-control:valid:focus, .form-control.is-valid:focus {\n border-color: #198754;\n box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);\n}\n\n.was-validated textarea.form-control:valid, textarea.form-control.is-valid {\n padding-right: calc(1.5em + 0.75rem);\n background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);\n}\n\n.was-validated .form-select:valid, .form-select.is-valid {\n border-color: #198754;\n}\n.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size=\"1\"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size=\"1\"] {\n padding-right: 4.125rem;\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\"), url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e\");\n background-position: right 0.75rem center, center right 2.25rem;\n background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);\n}\n.was-validated .form-select:valid:focus, .form-select.is-valid:focus {\n border-color: #198754;\n box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);\n}\n\n.was-validated .form-check-input:valid, .form-check-input.is-valid {\n border-color: #198754;\n}\n.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {\n background-color: #198754;\n}\n.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {\n box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);\n}\n.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {\n color: #198754;\n}\n\n.form-check-inline .form-check-input ~ .valid-feedback {\n margin-left: 0.5em;\n}\n\n.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,\n.was-validated .input-group .form-select:valid,\n.input-group .form-select.is-valid {\n z-index: 1;\n}\n.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,\n.was-validated .input-group .form-select:valid:focus,\n.input-group .form-select.is-valid:focus {\n z-index: 3;\n}\n\n.invalid-feedback {\n display: none;\n width: 100%;\n margin-top: 0.25rem;\n font-size: 0.875em;\n color: #dc3545;\n}\n\n.invalid-tooltip {\n position: absolute;\n top: 100%;\n z-index: 5;\n display: none;\n max-width: 100%;\n padding: 0.25rem 0.5rem;\n margin-top: 0.1rem;\n font-size: 0.875rem;\n color: #fff;\n background-color: rgba(220, 53, 69, 0.9);\n border-radius: 0.25rem;\n}\n\n.was-validated :invalid ~ .invalid-feedback,\n.was-validated :invalid ~ .invalid-tooltip,\n.is-invalid ~ .invalid-feedback,\n.is-invalid ~ .invalid-tooltip {\n display: block;\n}\n\n.was-validated .form-control:invalid, .form-control.is-invalid {\n border-color: #dc3545;\n padding-right: calc(1.5em + 0.75rem);\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\");\n background-repeat: no-repeat;\n background-position: right calc(0.375em + 0.1875rem) center;\n background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);\n}\n.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {\n border-color: #dc3545;\n box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);\n}\n\n.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {\n padding-right: calc(1.5em + 0.75rem);\n background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);\n}\n\n.was-validated .form-select:invalid, .form-select.is-invalid {\n border-color: #dc3545;\n}\n.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size=\"1\"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size=\"1\"] {\n padding-right: 4.125rem;\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\"), url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e\");\n background-position: right 0.75rem center, center right 2.25rem;\n background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);\n}\n.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {\n border-color: #dc3545;\n box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);\n}\n\n.was-validated .form-check-input:invalid, .form-check-input.is-invalid {\n border-color: #dc3545;\n}\n.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {\n background-color: #dc3545;\n}\n.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {\n box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);\n}\n.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {\n color: #dc3545;\n}\n\n.form-check-inline .form-check-input ~ .invalid-feedback {\n margin-left: 0.5em;\n}\n\n.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,\n.was-validated .input-group .form-select:invalid,\n.input-group .form-select.is-invalid {\n z-index: 2;\n}\n.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,\n.was-validated .input-group .form-select:invalid:focus,\n.input-group .form-select.is-invalid:focus {\n z-index: 3;\n}\n\n.btn {\n display: inline-block;\n font-weight: 400;\n line-height: 1.5;\n color: #212529;\n text-align: center;\n text-decoration: none;\n vertical-align: middle;\n cursor: pointer;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n background-color: transparent;\n border: 1px solid transparent;\n padding: 0.375rem 0.75rem;\n font-size: 1rem;\n border-radius: 0.25rem;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .btn {\n transition: none;\n }\n}\n.btn:hover {\n color: #212529;\n}\n.btn-check:focus + .btn, .btn:focus {\n outline: 0;\n box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);\n}\n.btn:disabled, .btn.disabled, fieldset:disabled .btn {\n pointer-events: none;\n opacity: 0.65;\n}\n\n.btn-primary {\n color: #fff;\n background-color: #0d6efd;\n border-color: #0d6efd;\n}\n.btn-primary:hover {\n color: #fff;\n background-color: #0b5ed7;\n border-color: #0a58ca;\n}\n.btn-check:focus + .btn-primary, .btn-primary:focus {\n color: #fff;\n background-color: #0b5ed7;\n border-color: #0a58ca;\n box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);\n}\n.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {\n color: #fff;\n background-color: #0a58ca;\n border-color: #0a53be;\n}\n.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);\n}\n.btn-primary:disabled, .btn-primary.disabled {\n color: #fff;\n background-color: #0d6efd;\n border-color: #0d6efd;\n}\n\n.btn-secondary {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n.btn-secondary:hover {\n color: #fff;\n background-color: #5c636a;\n border-color: #565e64;\n}\n.btn-check:focus + .btn-secondary, .btn-secondary:focus {\n color: #fff;\n background-color: #5c636a;\n border-color: #565e64;\n box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);\n}\n.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {\n color: #fff;\n background-color: #565e64;\n border-color: #51585e;\n}\n.btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);\n}\n.btn-secondary:disabled, .btn-secondary.disabled {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n\n.btn-success {\n color: #fff;\n background-color: #198754;\n border-color: #198754;\n}\n.btn-success:hover {\n color: #fff;\n background-color: #157347;\n border-color: #146c43;\n}\n.btn-check:focus + .btn-success, .btn-success:focus {\n color: #fff;\n background-color: #157347;\n border-color: #146c43;\n box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);\n}\n.btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle {\n color: #fff;\n background-color: #146c43;\n border-color: #13653f;\n}\n.btn-check:checked + .btn-success:focus, .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, .show > .btn-success.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);\n}\n.btn-success:disabled, .btn-success.disabled {\n color: #fff;\n background-color: #198754;\n border-color: #198754;\n}\n\n.btn-info {\n color: #000;\n background-color: #0dcaf0;\n border-color: #0dcaf0;\n}\n.btn-info:hover {\n color: #000;\n background-color: #31d2f2;\n border-color: #25cff2;\n}\n.btn-check:focus + .btn-info, .btn-info:focus {\n color: #000;\n background-color: #31d2f2;\n border-color: #25cff2;\n box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);\n}\n.btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle {\n color: #000;\n background-color: #3dd5f3;\n border-color: #25cff2;\n}\n.btn-check:checked + .btn-info:focus, .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, .show > .btn-info.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);\n}\n.btn-info:disabled, .btn-info.disabled {\n color: #000;\n background-color: #0dcaf0;\n border-color: #0dcaf0;\n}\n\n.btn-warning {\n color: #000;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n.btn-warning:hover {\n color: #000;\n background-color: #ffca2c;\n border-color: #ffc720;\n}\n.btn-check:focus + .btn-warning, .btn-warning:focus {\n color: #000;\n background-color: #ffca2c;\n border-color: #ffc720;\n box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);\n}\n.btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle {\n color: #000;\n background-color: #ffcd39;\n border-color: #ffc720;\n}\n.btn-check:checked + .btn-warning:focus, .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, .show > .btn-warning.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);\n}\n.btn-warning:disabled, .btn-warning.disabled {\n color: #000;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n\n.btn-danger {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n.btn-danger:hover {\n color: #fff;\n background-color: #bb2d3b;\n border-color: #b02a37;\n}\n.btn-check:focus + .btn-danger, .btn-danger:focus {\n color: #fff;\n background-color: #bb2d3b;\n border-color: #b02a37;\n box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);\n}\n.btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle {\n color: #fff;\n background-color: #b02a37;\n border-color: #a52834;\n}\n.btn-check:checked + .btn-danger:focus, .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, .show > .btn-danger.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);\n}\n.btn-danger:disabled, .btn-danger.disabled {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n\n.btn-light {\n color: #000;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n.btn-light:hover {\n color: #000;\n background-color: #f9fafb;\n border-color: #f9fafb;\n}\n.btn-check:focus + .btn-light, .btn-light:focus {\n color: #000;\n background-color: #f9fafb;\n border-color: #f9fafb;\n box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);\n}\n.btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle {\n color: #000;\n background-color: #f9fafb;\n border-color: #f9fafb;\n}\n.btn-check:checked + .btn-light:focus, .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, .show > .btn-light.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);\n}\n.btn-light:disabled, .btn-light.disabled {\n color: #000;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n\n.btn-dark {\n color: #fff;\n background-color: #212529;\n border-color: #212529;\n}\n.btn-dark:hover {\n color: #fff;\n background-color: #1c1f23;\n border-color: #1a1e21;\n}\n.btn-check:focus + .btn-dark, .btn-dark:focus {\n color: #fff;\n background-color: #1c1f23;\n border-color: #1a1e21;\n box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);\n}\n.btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle {\n color: #fff;\n background-color: #1a1e21;\n border-color: #191c1f;\n}\n.btn-check:checked + .btn-dark:focus, .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, .show > .btn-dark.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);\n}\n.btn-dark:disabled, .btn-dark.disabled {\n color: #fff;\n background-color: #212529;\n border-color: #212529;\n}\n\n.btn-outline-primary {\n color: #0d6efd;\n border-color: #0d6efd;\n}\n.btn-outline-primary:hover {\n color: #fff;\n background-color: #0d6efd;\n border-color: #0d6efd;\n}\n.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {\n box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);\n}\n.btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {\n color: #fff;\n background-color: #0d6efd;\n border-color: #0d6efd;\n}\n.btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {\n box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);\n}\n.btn-outline-primary:disabled, .btn-outline-primary.disabled {\n color: #0d6efd;\n background-color: transparent;\n}\n\n.btn-outline-secondary {\n color: #6c757d;\n border-color: #6c757d;\n}\n.btn-outline-secondary:hover {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {\n box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);\n}\n.btn-check:checked + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {\n color: #fff;\n background-color: #6c757d;\n border-color: #6c757d;\n}\n.btn-check:checked + .btn-outline-secondary:focus, .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {\n box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);\n}\n.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {\n color: #6c757d;\n background-color: transparent;\n}\n\n.btn-outline-success {\n color: #198754;\n border-color: #198754;\n}\n.btn-outline-success:hover {\n color: #fff;\n background-color: #198754;\n border-color: #198754;\n}\n.btn-check:focus + .btn-outline-success, .btn-outline-success:focus {\n box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);\n}\n.btn-check:checked + .btn-outline-success, .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {\n color: #fff;\n background-color: #198754;\n border-color: #198754;\n}\n.btn-check:checked + .btn-outline-success:focus, .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {\n box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);\n}\n.btn-outline-success:disabled, .btn-outline-success.disabled {\n color: #198754;\n background-color: transparent;\n}\n\n.btn-outline-info {\n color: #0dcaf0;\n border-color: #0dcaf0;\n}\n.btn-outline-info:hover {\n color: #000;\n background-color: #0dcaf0;\n border-color: #0dcaf0;\n}\n.btn-check:focus + .btn-outline-info, .btn-outline-info:focus {\n box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);\n}\n.btn-check:checked + .btn-outline-info, .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {\n color: #000;\n background-color: #0dcaf0;\n border-color: #0dcaf0;\n}\n.btn-check:checked + .btn-outline-info:focus, .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {\n box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);\n}\n.btn-outline-info:disabled, .btn-outline-info.disabled {\n color: #0dcaf0;\n background-color: transparent;\n}\n\n.btn-outline-warning {\n color: #ffc107;\n border-color: #ffc107;\n}\n.btn-outline-warning:hover {\n color: #000;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {\n box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);\n}\n.btn-check:checked + .btn-outline-warning, .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {\n color: #000;\n background-color: #ffc107;\n border-color: #ffc107;\n}\n.btn-check:checked + .btn-outline-warning:focus, .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {\n box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);\n}\n.btn-outline-warning:disabled, .btn-outline-warning.disabled {\n color: #ffc107;\n background-color: transparent;\n}\n\n.btn-outline-danger {\n color: #dc3545;\n border-color: #dc3545;\n}\n.btn-outline-danger:hover {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {\n box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);\n}\n.btn-check:checked + .btn-outline-danger, .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {\n color: #fff;\n background-color: #dc3545;\n border-color: #dc3545;\n}\n.btn-check:checked + .btn-outline-danger:focus, .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {\n box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);\n}\n.btn-outline-danger:disabled, .btn-outline-danger.disabled {\n color: #dc3545;\n background-color: transparent;\n}\n\n.btn-outline-light {\n color: #f8f9fa;\n border-color: #f8f9fa;\n}\n.btn-outline-light:hover {\n color: #000;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n.btn-check:focus + .btn-outline-light, .btn-outline-light:focus {\n box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);\n}\n.btn-check:checked + .btn-outline-light, .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {\n color: #000;\n background-color: #f8f9fa;\n border-color: #f8f9fa;\n}\n.btn-check:checked + .btn-outline-light:focus, .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {\n box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);\n}\n.btn-outline-light:disabled, .btn-outline-light.disabled {\n color: #f8f9fa;\n background-color: transparent;\n}\n\n.btn-outline-dark {\n color: #212529;\n border-color: #212529;\n}\n.btn-outline-dark:hover {\n color: #fff;\n background-color: #212529;\n border-color: #212529;\n}\n.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {\n box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);\n}\n.btn-check:checked + .btn-outline-dark, .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {\n color: #fff;\n background-color: #212529;\n border-color: #212529;\n}\n.btn-check:checked + .btn-outline-dark:focus, .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {\n box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);\n}\n.btn-outline-dark:disabled, .btn-outline-dark.disabled {\n color: #212529;\n background-color: transparent;\n}\n\n.btn-link {\n font-weight: 400;\n color: #0d6efd;\n text-decoration: underline;\n}\n.btn-link:hover {\n color: #0a58ca;\n}\n.btn-link:disabled, .btn-link.disabled {\n color: #6c757d;\n}\n\n.btn-lg, .btn-group-lg > .btn {\n padding: 0.5rem 1rem;\n font-size: 1.25rem;\n border-radius: 0.3rem;\n}\n\n.btn-sm, .btn-group-sm > .btn {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n border-radius: 0.2rem;\n}\n\n.fade {\n transition: opacity 0.15s linear;\n}\n@media (prefers-reduced-motion: reduce) {\n .fade {\n transition: none;\n }\n}\n.fade:not(.show) {\n opacity: 0;\n}\n\n.collapse:not(.show) {\n display: none;\n}\n\n.collapsing {\n height: 0;\n overflow: hidden;\n transition: height 0.35s ease;\n}\n@media (prefers-reduced-motion: reduce) {\n .collapsing {\n transition: none;\n }\n}\n.collapsing.collapse-horizontal {\n width: 0;\n height: auto;\n transition: width 0.35s ease;\n}\n@media (prefers-reduced-motion: reduce) {\n .collapsing.collapse-horizontal {\n transition: none;\n }\n}\n\n.dropup,\n.dropend,\n.dropdown,\n.dropstart {\n position: relative;\n}\n\n.dropdown-toggle {\n white-space: nowrap;\n}\n.dropdown-toggle::after {\n display: inline-block;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid;\n border-right: 0.3em solid transparent;\n border-bottom: 0;\n border-left: 0.3em solid transparent;\n}\n.dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropdown-menu {\n position: absolute;\n z-index: 1000;\n display: none;\n min-width: 10rem;\n padding: 0.5rem 0;\n margin: 0;\n font-size: 1rem;\n color: #212529;\n text-align: left;\n list-style: none;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.15);\n border-radius: 0.25rem;\n}\n.dropdown-menu[data-bs-popper] {\n top: 100%;\n left: 0;\n margin-top: 0.125rem;\n}\n\n.dropdown-menu-start {\n --bs-position: start;\n}\n.dropdown-menu-start[data-bs-popper] {\n right: auto;\n left: 0;\n}\n\n.dropdown-menu-end {\n --bs-position: end;\n}\n.dropdown-menu-end[data-bs-popper] {\n right: 0;\n left: auto;\n}\n\n@media (min-width: 576px) {\n .dropdown-menu-sm-start {\n --bs-position: start;\n }\n .dropdown-menu-sm-start[data-bs-popper] {\n right: auto;\n left: 0;\n }\n\n .dropdown-menu-sm-end {\n --bs-position: end;\n }\n .dropdown-menu-sm-end[data-bs-popper] {\n right: 0;\n left: auto;\n }\n}\n@media (min-width: 768px) {\n .dropdown-menu-md-start {\n --bs-position: start;\n }\n .dropdown-menu-md-start[data-bs-popper] {\n right: auto;\n left: 0;\n }\n\n .dropdown-menu-md-end {\n --bs-position: end;\n }\n .dropdown-menu-md-end[data-bs-popper] {\n right: 0;\n left: auto;\n }\n}\n@media (min-width: 992px) {\n .dropdown-menu-lg-start {\n --bs-position: start;\n }\n .dropdown-menu-lg-start[data-bs-popper] {\n right: auto;\n left: 0;\n }\n\n .dropdown-menu-lg-end {\n --bs-position: end;\n }\n .dropdown-menu-lg-end[data-bs-popper] {\n right: 0;\n left: auto;\n }\n}\n@media (min-width: 1200px) {\n .dropdown-menu-xl-start {\n --bs-position: start;\n }\n .dropdown-menu-xl-start[data-bs-popper] {\n right: auto;\n left: 0;\n }\n\n .dropdown-menu-xl-end {\n --bs-position: end;\n }\n .dropdown-menu-xl-end[data-bs-popper] {\n right: 0;\n left: auto;\n }\n}\n@media (min-width: 1400px) {\n .dropdown-menu-xxl-start {\n --bs-position: start;\n }\n .dropdown-menu-xxl-start[data-bs-popper] {\n right: auto;\n left: 0;\n }\n\n .dropdown-menu-xxl-end {\n --bs-position: end;\n }\n .dropdown-menu-xxl-end[data-bs-popper] {\n right: 0;\n left: auto;\n }\n}\n.dropup .dropdown-menu[data-bs-popper] {\n top: auto;\n bottom: 100%;\n margin-top: 0;\n margin-bottom: 0.125rem;\n}\n.dropup .dropdown-toggle::after {\n display: inline-block;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0;\n border-right: 0.3em solid transparent;\n border-bottom: 0.3em solid;\n border-left: 0.3em solid transparent;\n}\n.dropup .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n\n.dropend .dropdown-menu[data-bs-popper] {\n top: 0;\n right: auto;\n left: 100%;\n margin-top: 0;\n margin-left: 0.125rem;\n}\n.dropend .dropdown-toggle::after {\n display: inline-block;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid transparent;\n border-right: 0;\n border-bottom: 0.3em solid transparent;\n border-left: 0.3em solid;\n}\n.dropend .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n.dropend .dropdown-toggle::after {\n vertical-align: 0;\n}\n\n.dropstart .dropdown-menu[data-bs-popper] {\n top: 0;\n right: 100%;\n left: auto;\n margin-top: 0;\n margin-right: 0.125rem;\n}\n.dropstart .dropdown-toggle::after {\n display: inline-block;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n}\n.dropstart .dropdown-toggle::after {\n display: none;\n}\n.dropstart .dropdown-toggle::before {\n display: inline-block;\n margin-right: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid transparent;\n border-right: 0.3em solid;\n border-bottom: 0.3em solid transparent;\n}\n.dropstart .dropdown-toggle:empty::after {\n margin-left: 0;\n}\n.dropstart .dropdown-toggle::before {\n vertical-align: 0;\n}\n\n.dropdown-divider {\n height: 0;\n margin: 0.5rem 0;\n overflow: hidden;\n border-top: 1px solid rgba(0, 0, 0, 0.15);\n}\n\n.dropdown-item {\n display: block;\n width: 100%;\n padding: 0.25rem 1rem;\n clear: both;\n font-weight: 400;\n color: #212529;\n text-align: inherit;\n text-decoration: none;\n white-space: nowrap;\n background-color: transparent;\n border: 0;\n}\n.dropdown-item:hover, .dropdown-item:focus {\n color: #1e2125;\n background-color: #e9ecef;\n}\n.dropdown-item.active, .dropdown-item:active {\n color: #fff;\n text-decoration: none;\n background-color: #0d6efd;\n}\n.dropdown-item.disabled, .dropdown-item:disabled {\n color: #adb5bd;\n pointer-events: none;\n background-color: transparent;\n}\n\n.dropdown-menu.show {\n display: block;\n}\n\n.dropdown-header {\n display: block;\n padding: 0.5rem 1rem;\n margin-bottom: 0;\n font-size: 0.875rem;\n color: #6c757d;\n white-space: nowrap;\n}\n\n.dropdown-item-text {\n display: block;\n padding: 0.25rem 1rem;\n color: #212529;\n}\n\n.dropdown-menu-dark {\n color: #dee2e6;\n background-color: #343a40;\n border-color: rgba(0, 0, 0, 0.15);\n}\n.dropdown-menu-dark .dropdown-item {\n color: #dee2e6;\n}\n.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {\n color: #fff;\n background-color: rgba(255, 255, 255, 0.15);\n}\n.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {\n color: #fff;\n background-color: #0d6efd;\n}\n.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {\n color: #adb5bd;\n}\n.dropdown-menu-dark .dropdown-divider {\n border-color: rgba(0, 0, 0, 0.15);\n}\n.dropdown-menu-dark .dropdown-item-text {\n color: #dee2e6;\n}\n.dropdown-menu-dark .dropdown-header {\n color: #adb5bd;\n}\n\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-flex;\n vertical-align: middle;\n}\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n position: relative;\n flex: 1 1 auto;\n}\n.btn-group > .btn-check:checked + .btn,\n.btn-group > .btn-check:focus + .btn,\n.btn-group > .btn:hover,\n.btn-group > .btn:focus,\n.btn-group > .btn:active,\n.btn-group > .btn.active,\n.btn-group-vertical > .btn-check:checked + .btn,\n.btn-group-vertical > .btn-check:focus + .btn,\n.btn-group-vertical > .btn:hover,\n.btn-group-vertical > .btn:focus,\n.btn-group-vertical > .btn:active,\n.btn-group-vertical > .btn.active {\n z-index: 1;\n}\n\n.btn-toolbar {\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-start;\n}\n.btn-toolbar .input-group {\n width: auto;\n}\n\n.btn-group > .btn:not(:first-child),\n.btn-group > .btn-group:not(:first-child) {\n margin-left: -1px;\n}\n.btn-group > .btn:not(:last-child):not(.dropdown-toggle),\n.btn-group > .btn-group:not(:last-child) > .btn {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n}\n.btn-group > .btn:nth-child(n+3),\n.btn-group > :not(.btn-check) + .btn,\n.btn-group > .btn-group:not(:first-child) > .btn {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n}\n\n.dropdown-toggle-split {\n padding-right: 0.5625rem;\n padding-left: 0.5625rem;\n}\n.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {\n margin-left: 0;\n}\n.dropstart .dropdown-toggle-split::before {\n margin-right: 0;\n}\n\n.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {\n padding-right: 0.375rem;\n padding-left: 0.375rem;\n}\n\n.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {\n padding-right: 0.75rem;\n padding-left: 0.75rem;\n}\n\n.btn-group-vertical {\n flex-direction: column;\n align-items: flex-start;\n justify-content: center;\n}\n.btn-group-vertical > .btn,\n.btn-group-vertical > .btn-group {\n width: 100%;\n}\n.btn-group-vertical > .btn:not(:first-child),\n.btn-group-vertical > .btn-group:not(:first-child) {\n margin-top: -1px;\n}\n.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),\n.btn-group-vertical > .btn-group:not(:last-child) > .btn {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn ~ .btn,\n.btn-group-vertical > .btn-group:not(:first-child) > .btn {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n.nav {\n display: flex;\n flex-wrap: wrap;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n}\n\n.nav-link {\n display: block;\n padding: 0.5rem 1rem;\n color: #0d6efd;\n text-decoration: none;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .nav-link {\n transition: none;\n }\n}\n.nav-link:hover, .nav-link:focus {\n color: #0a58ca;\n}\n.nav-link.disabled {\n color: #6c757d;\n pointer-events: none;\n cursor: default;\n}\n\n.nav-tabs {\n border-bottom: 1px solid #dee2e6;\n}\n.nav-tabs .nav-link {\n margin-bottom: -1px;\n background: none;\n border: 1px solid transparent;\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {\n border-color: #e9ecef #e9ecef #dee2e6;\n isolation: isolate;\n}\n.nav-tabs .nav-link.disabled {\n color: #6c757d;\n background-color: transparent;\n border-color: transparent;\n}\n.nav-tabs .nav-link.active,\n.nav-tabs .nav-item.show .nav-link {\n color: #495057;\n background-color: #fff;\n border-color: #dee2e6 #dee2e6 #fff;\n}\n.nav-tabs .dropdown-menu {\n margin-top: -1px;\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n}\n\n.nav-pills .nav-link {\n background: none;\n border: 0;\n border-radius: 0.25rem;\n}\n.nav-pills .nav-link.active,\n.nav-pills .show > .nav-link {\n color: #fff;\n background-color: #0d6efd;\n}\n\n.nav-fill > .nav-link,\n.nav-fill .nav-item {\n flex: 1 1 auto;\n text-align: center;\n}\n\n.nav-justified > .nav-link,\n.nav-justified .nav-item {\n flex-basis: 0;\n flex-grow: 1;\n text-align: center;\n}\n\n.nav-fill .nav-item .nav-link,\n.nav-justified .nav-item .nav-link {\n width: 100%;\n}\n\n.tab-content > .tab-pane {\n display: none;\n}\n.tab-content > .active {\n display: block;\n}\n\n.navbar {\n position: relative;\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n justify-content: space-between;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n}\n.navbar > .container,\n.navbar > .container-fluid,\n.navbar > .container-sm,\n.navbar > .container-md,\n.navbar > .container-lg,\n.navbar > .container-xl,\n.navbar > .container-xxl {\n display: flex;\n flex-wrap: inherit;\n align-items: center;\n justify-content: space-between;\n}\n.navbar-brand {\n padding-top: 0.3125rem;\n padding-bottom: 0.3125rem;\n margin-right: 1rem;\n font-size: 1.25rem;\n text-decoration: none;\n white-space: nowrap;\n}\n.navbar-nav {\n display: flex;\n flex-direction: column;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n}\n.navbar-nav .nav-link {\n padding-right: 0;\n padding-left: 0;\n}\n.navbar-nav .dropdown-menu {\n position: static;\n}\n\n.navbar-text {\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n}\n\n.navbar-collapse {\n flex-basis: 100%;\n flex-grow: 1;\n align-items: center;\n}\n\n.navbar-toggler {\n padding: 0.25rem 0.75rem;\n font-size: 1.25rem;\n line-height: 1;\n background-color: transparent;\n border: 1px solid transparent;\n border-radius: 0.25rem;\n transition: box-shadow 0.15s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .navbar-toggler {\n transition: none;\n }\n}\n.navbar-toggler:hover {\n text-decoration: none;\n}\n.navbar-toggler:focus {\n text-decoration: none;\n outline: 0;\n box-shadow: 0 0 0 0.25rem;\n}\n\n.navbar-toggler-icon {\n display: inline-block;\n width: 1.5em;\n height: 1.5em;\n vertical-align: middle;\n background-repeat: no-repeat;\n background-position: center;\n background-size: 100%;\n}\n\n.navbar-nav-scroll {\n max-height: var(--bs-scroll-height, 75vh);\n overflow-y: auto;\n}\n\n@media (min-width: 576px) {\n .navbar-expand-sm {\n flex-wrap: nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-sm .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-sm .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-sm .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-sm .navbar-nav-scroll {\n overflow: visible;\n }\n .navbar-expand-sm .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-sm .navbar-toggler {\n display: none;\n }\n .navbar-expand-sm .offcanvas-header {\n display: none;\n }\n .navbar-expand-sm .offcanvas {\n position: inherit;\n bottom: 0;\n z-index: 1000;\n flex-grow: 1;\n visibility: visible !important;\n background-color: transparent;\n border-right: 0;\n border-left: 0;\n transition: none;\n transform: none;\n }\n .navbar-expand-sm .offcanvas-top,\n.navbar-expand-sm .offcanvas-bottom {\n height: auto;\n border-top: 0;\n border-bottom: 0;\n }\n .navbar-expand-sm .offcanvas-body {\n display: flex;\n flex-grow: 0;\n padding: 0;\n overflow-y: visible;\n }\n}\n@media (min-width: 768px) {\n .navbar-expand-md {\n flex-wrap: nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-md .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-md .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-md .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-md .navbar-nav-scroll {\n overflow: visible;\n }\n .navbar-expand-md .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-md .navbar-toggler {\n display: none;\n }\n .navbar-expand-md .offcanvas-header {\n display: none;\n }\n .navbar-expand-md .offcanvas {\n position: inherit;\n bottom: 0;\n z-index: 1000;\n flex-grow: 1;\n visibility: visible !important;\n background-color: transparent;\n border-right: 0;\n border-left: 0;\n transition: none;\n transform: none;\n }\n .navbar-expand-md .offcanvas-top,\n.navbar-expand-md .offcanvas-bottom {\n height: auto;\n border-top: 0;\n border-bottom: 0;\n }\n .navbar-expand-md .offcanvas-body {\n display: flex;\n flex-grow: 0;\n padding: 0;\n overflow-y: visible;\n }\n}\n@media (min-width: 992px) {\n .navbar-expand-lg {\n flex-wrap: nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-lg .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-lg .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-lg .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-lg .navbar-nav-scroll {\n overflow: visible;\n }\n .navbar-expand-lg .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-lg .navbar-toggler {\n display: none;\n }\n .navbar-expand-lg .offcanvas-header {\n display: none;\n }\n .navbar-expand-lg .offcanvas {\n position: inherit;\n bottom: 0;\n z-index: 1000;\n flex-grow: 1;\n visibility: visible !important;\n background-color: transparent;\n border-right: 0;\n border-left: 0;\n transition: none;\n transform: none;\n }\n .navbar-expand-lg .offcanvas-top,\n.navbar-expand-lg .offcanvas-bottom {\n height: auto;\n border-top: 0;\n border-bottom: 0;\n }\n .navbar-expand-lg .offcanvas-body {\n display: flex;\n flex-grow: 0;\n padding: 0;\n overflow-y: visible;\n }\n}\n@media (min-width: 1200px) {\n .navbar-expand-xl {\n flex-wrap: nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-xl .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-xl .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-xl .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-xl .navbar-nav-scroll {\n overflow: visible;\n }\n .navbar-expand-xl .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-xl .navbar-toggler {\n display: none;\n }\n .navbar-expand-xl .offcanvas-header {\n display: none;\n }\n .navbar-expand-xl .offcanvas {\n position: inherit;\n bottom: 0;\n z-index: 1000;\n flex-grow: 1;\n visibility: visible !important;\n background-color: transparent;\n border-right: 0;\n border-left: 0;\n transition: none;\n transform: none;\n }\n .navbar-expand-xl .offcanvas-top,\n.navbar-expand-xl .offcanvas-bottom {\n height: auto;\n border-top: 0;\n border-bottom: 0;\n }\n .navbar-expand-xl .offcanvas-body {\n display: flex;\n flex-grow: 0;\n padding: 0;\n overflow-y: visible;\n }\n}\n@media (min-width: 1400px) {\n .navbar-expand-xxl {\n flex-wrap: nowrap;\n justify-content: flex-start;\n }\n .navbar-expand-xxl .navbar-nav {\n flex-direction: row;\n }\n .navbar-expand-xxl .navbar-nav .dropdown-menu {\n position: absolute;\n }\n .navbar-expand-xxl .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n }\n .navbar-expand-xxl .navbar-nav-scroll {\n overflow: visible;\n }\n .navbar-expand-xxl .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n }\n .navbar-expand-xxl .navbar-toggler {\n display: none;\n }\n .navbar-expand-xxl .offcanvas-header {\n display: none;\n }\n .navbar-expand-xxl .offcanvas {\n position: inherit;\n bottom: 0;\n z-index: 1000;\n flex-grow: 1;\n visibility: visible !important;\n background-color: transparent;\n border-right: 0;\n border-left: 0;\n transition: none;\n transform: none;\n }\n .navbar-expand-xxl .offcanvas-top,\n.navbar-expand-xxl .offcanvas-bottom {\n height: auto;\n border-top: 0;\n border-bottom: 0;\n }\n .navbar-expand-xxl .offcanvas-body {\n display: flex;\n flex-grow: 0;\n padding: 0;\n overflow-y: visible;\n }\n}\n.navbar-expand {\n flex-wrap: nowrap;\n justify-content: flex-start;\n}\n.navbar-expand .navbar-nav {\n flex-direction: row;\n}\n.navbar-expand .navbar-nav .dropdown-menu {\n position: absolute;\n}\n.navbar-expand .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem;\n}\n.navbar-expand .navbar-nav-scroll {\n overflow: visible;\n}\n.navbar-expand .navbar-collapse {\n display: flex !important;\n flex-basis: auto;\n}\n.navbar-expand .navbar-toggler {\n display: none;\n}\n.navbar-expand .offcanvas-header {\n display: none;\n}\n.navbar-expand .offcanvas {\n position: inherit;\n bottom: 0;\n z-index: 1000;\n flex-grow: 1;\n visibility: visible !important;\n background-color: transparent;\n border-right: 0;\n border-left: 0;\n transition: none;\n transform: none;\n}\n.navbar-expand .offcanvas-top,\n.navbar-expand .offcanvas-bottom {\n height: auto;\n border-top: 0;\n border-bottom: 0;\n}\n.navbar-expand .offcanvas-body {\n display: flex;\n flex-grow: 0;\n padding: 0;\n overflow-y: visible;\n}\n\n.navbar-light .navbar-brand {\n color: rgba(0, 0, 0, 0.9);\n}\n.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {\n color: rgba(0, 0, 0, 0.9);\n}\n.navbar-light .navbar-nav .nav-link {\n color: rgba(0, 0, 0, 0.55);\n}\n.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {\n color: rgba(0, 0, 0, 0.7);\n}\n.navbar-light .navbar-nav .nav-link.disabled {\n color: rgba(0, 0, 0, 0.3);\n}\n.navbar-light .navbar-nav .show > .nav-link,\n.navbar-light .navbar-nav .nav-link.active {\n color: rgba(0, 0, 0, 0.9);\n}\n.navbar-light .navbar-toggler {\n color: rgba(0, 0, 0, 0.55);\n border-color: rgba(0, 0, 0, 0.1);\n}\n.navbar-light .navbar-toggler-icon {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\");\n}\n.navbar-light .navbar-text {\n color: rgba(0, 0, 0, 0.55);\n}\n.navbar-light .navbar-text a,\n.navbar-light .navbar-text a:hover,\n.navbar-light .navbar-text a:focus {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.navbar-dark .navbar-brand {\n color: #fff;\n}\n.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {\n color: #fff;\n}\n.navbar-dark .navbar-nav .nav-link {\n color: rgba(255, 255, 255, 0.55);\n}\n.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {\n color: rgba(255, 255, 255, 0.75);\n}\n.navbar-dark .navbar-nav .nav-link.disabled {\n color: rgba(255, 255, 255, 0.25);\n}\n.navbar-dark .navbar-nav .show > .nav-link,\n.navbar-dark .navbar-nav .nav-link.active {\n color: #fff;\n}\n.navbar-dark .navbar-toggler {\n color: rgba(255, 255, 255, 0.55);\n border-color: rgba(255, 255, 255, 0.1);\n}\n.navbar-dark .navbar-toggler-icon {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\");\n}\n.navbar-dark .navbar-text {\n color: rgba(255, 255, 255, 0.55);\n}\n.navbar-dark .navbar-text a,\n.navbar-dark .navbar-text a:hover,\n.navbar-dark .navbar-text a:focus {\n color: #fff;\n}\n\n.card {\n position: relative;\n display: flex;\n flex-direction: column;\n min-width: 0;\n word-wrap: break-word;\n background-color: #fff;\n background-clip: border-box;\n border: 1px solid rgba(0, 0, 0, 0.125);\n border-radius: 0.25rem;\n}\n.card > hr {\n margin-right: 0;\n margin-left: 0;\n}\n.card > .list-group {\n border-top: inherit;\n border-bottom: inherit;\n}\n.card > .list-group:first-child {\n border-top-width: 0;\n border-top-left-radius: calc(0.25rem - 1px);\n border-top-right-radius: calc(0.25rem - 1px);\n}\n.card > .list-group:last-child {\n border-bottom-width: 0;\n border-bottom-right-radius: calc(0.25rem - 1px);\n border-bottom-left-radius: calc(0.25rem - 1px);\n}\n.card > .card-header + .list-group,\n.card > .list-group + .card-footer {\n border-top: 0;\n}\n\n.card-body {\n flex: 1 1 auto;\n padding: 1rem 1rem;\n}\n\n.card-title {\n margin-bottom: 0.5rem;\n}\n\n.card-subtitle {\n margin-top: -0.25rem;\n margin-bottom: 0;\n}\n\n.card-text:last-child {\n margin-bottom: 0;\n}\n\n.card-link + .card-link {\n margin-left: 1rem;\n}\n\n.card-header {\n padding: 0.5rem 1rem;\n margin-bottom: 0;\n background-color: rgba(0, 0, 0, 0.03);\n border-bottom: 1px solid rgba(0, 0, 0, 0.125);\n}\n.card-header:first-child {\n border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;\n}\n\n.card-footer {\n padding: 0.5rem 1rem;\n background-color: rgba(0, 0, 0, 0.03);\n border-top: 1px solid rgba(0, 0, 0, 0.125);\n}\n.card-footer:last-child {\n border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);\n}\n\n.card-header-tabs {\n margin-right: -0.5rem;\n margin-bottom: -0.5rem;\n margin-left: -0.5rem;\n border-bottom: 0;\n}\n\n.card-header-pills {\n margin-right: -0.5rem;\n margin-left: -0.5rem;\n}\n\n.card-img-overlay {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n padding: 1rem;\n border-radius: calc(0.25rem - 1px);\n}\n\n.card-img,\n.card-img-top,\n.card-img-bottom {\n width: 100%;\n}\n\n.card-img,\n.card-img-top {\n border-top-left-radius: calc(0.25rem - 1px);\n border-top-right-radius: calc(0.25rem - 1px);\n}\n\n.card-img,\n.card-img-bottom {\n border-bottom-right-radius: calc(0.25rem - 1px);\n border-bottom-left-radius: calc(0.25rem - 1px);\n}\n\n.card-group > .card {\n margin-bottom: 0.75rem;\n}\n@media (min-width: 576px) {\n .card-group {\n display: flex;\n flex-flow: row wrap;\n }\n .card-group > .card {\n flex: 1 0 0%;\n margin-bottom: 0;\n }\n .card-group > .card + .card {\n margin-left: 0;\n border-left: 0;\n }\n .card-group > .card:not(:last-child) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n }\n .card-group > .card:not(:last-child) .card-img-top,\n.card-group > .card:not(:last-child) .card-header {\n border-top-right-radius: 0;\n }\n .card-group > .card:not(:last-child) .card-img-bottom,\n.card-group > .card:not(:last-child) .card-footer {\n border-bottom-right-radius: 0;\n }\n .card-group > .card:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0;\n }\n .card-group > .card:not(:first-child) .card-img-top,\n.card-group > .card:not(:first-child) .card-header {\n border-top-left-radius: 0;\n }\n .card-group > .card:not(:first-child) .card-img-bottom,\n.card-group > .card:not(:first-child) .card-footer {\n border-bottom-left-radius: 0;\n }\n}\n\n.accordion-button {\n position: relative;\n display: flex;\n align-items: center;\n width: 100%;\n padding: 1rem 1.25rem;\n font-size: 1rem;\n color: #212529;\n text-align: left;\n background-color: #fff;\n border: 0;\n border-radius: 0;\n overflow-anchor: none;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;\n}\n@media (prefers-reduced-motion: reduce) {\n .accordion-button {\n transition: none;\n }\n}\n.accordion-button:not(.collapsed) {\n color: #0c63e4;\n background-color: #e7f1ff;\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);\n}\n.accordion-button:not(.collapsed)::after {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\");\n transform: rotate(-180deg);\n}\n.accordion-button::after {\n flex-shrink: 0;\n width: 1.25rem;\n height: 1.25rem;\n margin-left: auto;\n content: \"\";\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\");\n background-repeat: no-repeat;\n background-size: 1.25rem;\n transition: transform 0.2s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .accordion-button::after {\n transition: none;\n }\n}\n.accordion-button:hover {\n z-index: 2;\n}\n.accordion-button:focus {\n z-index: 3;\n border-color: #86b7fe;\n outline: 0;\n box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);\n}\n\n.accordion-header {\n margin-bottom: 0;\n}\n\n.accordion-item {\n background-color: #fff;\n border: 1px solid rgba(0, 0, 0, 0.125);\n}\n.accordion-item:first-of-type {\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem;\n}\n.accordion-item:first-of-type .accordion-button {\n border-top-left-radius: calc(0.25rem - 1px);\n border-top-right-radius: calc(0.25rem - 1px);\n}\n.accordion-item:not(:first-of-type) {\n border-top: 0;\n}\n.accordion-item:last-of-type {\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n.accordion-item:last-of-type .accordion-button.collapsed {\n border-bottom-right-radius: calc(0.25rem - 1px);\n border-bottom-left-radius: calc(0.25rem - 1px);\n}\n.accordion-item:last-of-type .accordion-collapse {\n border-bottom-right-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n\n.accordion-body {\n padding: 1rem 1.25rem;\n}\n\n.accordion-flush .accordion-collapse {\n border-width: 0;\n}\n.accordion-flush .accordion-item {\n border-right: 0;\n border-left: 0;\n border-radius: 0;\n}\n.accordion-flush .accordion-item:first-child {\n border-top: 0;\n}\n.accordion-flush .accordion-item:last-child {\n border-bottom: 0;\n}\n.accordion-flush .accordion-item .accordion-button {\n border-radius: 0;\n}\n\n.breadcrumb {\n display: flex;\n flex-wrap: wrap;\n padding: 0 0;\n margin-bottom: 1rem;\n list-style: none;\n}\n\n.breadcrumb-item + .breadcrumb-item {\n padding-left: 0.5rem;\n}\n.breadcrumb-item + .breadcrumb-item::before {\n float: left;\n padding-right: 0.5rem;\n color: #6c757d;\n content: var(--bs-breadcrumb-divider, \"/\") /* rtl: var(--bs-breadcrumb-divider, \"/\") */;\n}\n.breadcrumb-item.active {\n color: #6c757d;\n}\n\n.pagination {\n display: flex;\n padding-left: 0;\n list-style: none;\n}\n\n.page-link {\n position: relative;\n display: block;\n color: #0d6efd;\n text-decoration: none;\n background-color: #fff;\n border: 1px solid #dee2e6;\n transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .page-link {\n transition: none;\n }\n}\n.page-link:hover {\n z-index: 2;\n color: #0a58ca;\n background-color: #e9ecef;\n border-color: #dee2e6;\n}\n.page-link:focus {\n z-index: 3;\n color: #0a58ca;\n background-color: #e9ecef;\n outline: 0;\n box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);\n}\n\n.page-item:not(:first-child) .page-link {\n margin-left: -1px;\n}\n.page-item.active .page-link {\n z-index: 3;\n color: #fff;\n background-color: #0d6efd;\n border-color: #0d6efd;\n}\n.page-item.disabled .page-link {\n color: #6c757d;\n pointer-events: none;\n background-color: #fff;\n border-color: #dee2e6;\n}\n\n.page-link {\n padding: 0.375rem 0.75rem;\n}\n\n.page-item:first-child .page-link {\n border-top-left-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem;\n}\n.page-item:last-child .page-link {\n border-top-right-radius: 0.25rem;\n border-bottom-right-radius: 0.25rem;\n}\n\n.pagination-lg .page-link {\n padding: 0.75rem 1.5rem;\n font-size: 1.25rem;\n}\n.pagination-lg .page-item:first-child .page-link {\n border-top-left-radius: 0.3rem;\n border-bottom-left-radius: 0.3rem;\n}\n.pagination-lg .page-item:last-child .page-link {\n border-top-right-radius: 0.3rem;\n border-bottom-right-radius: 0.3rem;\n}\n\n.pagination-sm .page-link {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n}\n.pagination-sm .page-item:first-child .page-link {\n border-top-left-radius: 0.2rem;\n border-bottom-left-radius: 0.2rem;\n}\n.pagination-sm .page-item:last-child .page-link {\n border-top-right-radius: 0.2rem;\n border-bottom-right-radius: 0.2rem;\n}\n\n.badge {\n display: inline-block;\n padding: 0.35em 0.65em;\n font-size: 0.75em;\n font-weight: 700;\n line-height: 1;\n color: #fff;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: 0.25rem;\n}\n.badge:empty {\n display: none;\n}\n\n.btn .badge {\n position: relative;\n top: -1px;\n}\n\n.alert {\n position: relative;\n padding: 1rem 1rem;\n margin-bottom: 1rem;\n border: 1px solid transparent;\n border-radius: 0.25rem;\n}\n\n.alert-heading {\n color: inherit;\n}\n\n.alert-link {\n font-weight: 700;\n}\n\n.alert-dismissible {\n padding-right: 3rem;\n}\n.alert-dismissible .btn-close {\n position: absolute;\n top: 0;\n right: 0;\n z-index: 2;\n padding: 1.25rem 1rem;\n}\n\n.alert-primary {\n color: #084298;\n background-color: #cfe2ff;\n border-color: #b6d4fe;\n}\n.alert-primary .alert-link {\n color: #06357a;\n}\n\n.alert-secondary {\n color: #41464b;\n background-color: #e2e3e5;\n border-color: #d3d6d8;\n}\n.alert-secondary .alert-link {\n color: #34383c;\n}\n\n.alert-success {\n color: #0f5132;\n background-color: #d1e7dd;\n border-color: #badbcc;\n}\n.alert-success .alert-link {\n color: #0c4128;\n}\n\n.alert-info {\n color: #055160;\n background-color: #cff4fc;\n border-color: #b6effb;\n}\n.alert-info .alert-link {\n color: #04414d;\n}\n\n.alert-warning {\n color: #664d03;\n background-color: #fff3cd;\n border-color: #ffecb5;\n}\n.alert-warning .alert-link {\n color: #523e02;\n}\n\n.alert-danger {\n color: #842029;\n background-color: #f8d7da;\n border-color: #f5c2c7;\n}\n.alert-danger .alert-link {\n color: #6a1a21;\n}\n\n.alert-light {\n color: #636464;\n background-color: #fefefe;\n border-color: #fdfdfe;\n}\n.alert-light .alert-link {\n color: #4f5050;\n}\n\n.alert-dark {\n color: #141619;\n background-color: #d3d3d4;\n border-color: #bcbebf;\n}\n.alert-dark .alert-link {\n color: #101214;\n}\n\n@-webkit-keyframes progress-bar-stripes {\n 0% {\n background-position-x: 1rem;\n }\n}\n\n@keyframes progress-bar-stripes {\n 0% {\n background-position-x: 1rem;\n }\n}\n.progress {\n display: flex;\n height: 1rem;\n overflow: hidden;\n font-size: 0.75rem;\n background-color: #e9ecef;\n border-radius: 0.25rem;\n}\n\n.progress-bar {\n display: flex;\n flex-direction: column;\n justify-content: center;\n overflow: hidden;\n color: #fff;\n text-align: center;\n white-space: nowrap;\n background-color: #0d6efd;\n transition: width 0.6s ease;\n}\n@media (prefers-reduced-motion: reduce) {\n .progress-bar {\n transition: none;\n }\n}\n\n.progress-bar-striped {\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-size: 1rem 1rem;\n}\n\n.progress-bar-animated {\n -webkit-animation: 1s linear infinite progress-bar-stripes;\n animation: 1s linear infinite progress-bar-stripes;\n}\n@media (prefers-reduced-motion: reduce) {\n .progress-bar-animated {\n -webkit-animation: none;\n animation: none;\n }\n}\n\n.list-group {\n display: flex;\n flex-direction: column;\n padding-left: 0;\n margin-bottom: 0;\n border-radius: 0.25rem;\n}\n\n.list-group-numbered {\n list-style-type: none;\n counter-reset: section;\n}\n.list-group-numbered > li::before {\n content: counters(section, \".\") \". \";\n counter-increment: section;\n}\n\n.list-group-item-action {\n width: 100%;\n color: #495057;\n text-align: inherit;\n}\n.list-group-item-action:hover, .list-group-item-action:focus {\n z-index: 1;\n color: #495057;\n text-decoration: none;\n background-color: #f8f9fa;\n}\n.list-group-item-action:active {\n color: #212529;\n background-color: #e9ecef;\n}\n\n.list-group-item {\n position: relative;\n display: block;\n padding: 0.5rem 1rem;\n color: #212529;\n text-decoration: none;\n background-color: #fff;\n border: 1px solid rgba(0, 0, 0, 0.125);\n}\n.list-group-item:first-child {\n border-top-left-radius: inherit;\n border-top-right-radius: inherit;\n}\n.list-group-item:last-child {\n border-bottom-right-radius: inherit;\n border-bottom-left-radius: inherit;\n}\n.list-group-item.disabled, .list-group-item:disabled {\n color: #6c757d;\n pointer-events: none;\n background-color: #fff;\n}\n.list-group-item.active {\n z-index: 2;\n color: #fff;\n background-color: #0d6efd;\n border-color: #0d6efd;\n}\n.list-group-item + .list-group-item {\n border-top-width: 0;\n}\n.list-group-item + .list-group-item.active {\n margin-top: -1px;\n border-top-width: 1px;\n}\n\n.list-group-horizontal {\n flex-direction: row;\n}\n.list-group-horizontal > .list-group-item:first-child {\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n}\n.list-group-horizontal > .list-group-item:last-child {\n border-top-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n}\n.list-group-horizontal > .list-group-item.active {\n margin-top: 0;\n}\n.list-group-horizontal > .list-group-item + .list-group-item {\n border-top-width: 1px;\n border-left-width: 0;\n}\n.list-group-horizontal > .list-group-item + .list-group-item.active {\n margin-left: -1px;\n border-left-width: 1px;\n}\n\n@media (min-width: 576px) {\n .list-group-horizontal-sm {\n flex-direction: row;\n }\n .list-group-horizontal-sm > .list-group-item:first-child {\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n }\n .list-group-horizontal-sm > .list-group-item:last-child {\n border-top-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n }\n .list-group-horizontal-sm > .list-group-item.active {\n margin-top: 0;\n }\n .list-group-horizontal-sm > .list-group-item + .list-group-item {\n border-top-width: 1px;\n border-left-width: 0;\n }\n .list-group-horizontal-sm > .list-group-item + .list-group-item.active {\n margin-left: -1px;\n border-left-width: 1px;\n }\n}\n@media (min-width: 768px) {\n .list-group-horizontal-md {\n flex-direction: row;\n }\n .list-group-horizontal-md > .list-group-item:first-child {\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n }\n .list-group-horizontal-md > .list-group-item:last-child {\n border-top-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n }\n .list-group-horizontal-md > .list-group-item.active {\n margin-top: 0;\n }\n .list-group-horizontal-md > .list-group-item + .list-group-item {\n border-top-width: 1px;\n border-left-width: 0;\n }\n .list-group-horizontal-md > .list-group-item + .list-group-item.active {\n margin-left: -1px;\n border-left-width: 1px;\n }\n}\n@media (min-width: 992px) {\n .list-group-horizontal-lg {\n flex-direction: row;\n }\n .list-group-horizontal-lg > .list-group-item:first-child {\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n }\n .list-group-horizontal-lg > .list-group-item:last-child {\n border-top-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n }\n .list-group-horizontal-lg > .list-group-item.active {\n margin-top: 0;\n }\n .list-group-horizontal-lg > .list-group-item + .list-group-item {\n border-top-width: 1px;\n border-left-width: 0;\n }\n .list-group-horizontal-lg > .list-group-item + .list-group-item.active {\n margin-left: -1px;\n border-left-width: 1px;\n }\n}\n@media (min-width: 1200px) {\n .list-group-horizontal-xl {\n flex-direction: row;\n }\n .list-group-horizontal-xl > .list-group-item:first-child {\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n }\n .list-group-horizontal-xl > .list-group-item:last-child {\n border-top-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n }\n .list-group-horizontal-xl > .list-group-item.active {\n margin-top: 0;\n }\n .list-group-horizontal-xl > .list-group-item + .list-group-item {\n border-top-width: 1px;\n border-left-width: 0;\n }\n .list-group-horizontal-xl > .list-group-item + .list-group-item.active {\n margin-left: -1px;\n border-left-width: 1px;\n }\n}\n@media (min-width: 1400px) {\n .list-group-horizontal-xxl {\n flex-direction: row;\n }\n .list-group-horizontal-xxl > .list-group-item:first-child {\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0;\n }\n .list-group-horizontal-xxl > .list-group-item:last-child {\n border-top-right-radius: 0.25rem;\n border-bottom-left-radius: 0;\n }\n .list-group-horizontal-xxl > .list-group-item.active {\n margin-top: 0;\n }\n .list-group-horizontal-xxl > .list-group-item + .list-group-item {\n border-top-width: 1px;\n border-left-width: 0;\n }\n .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {\n margin-left: -1px;\n border-left-width: 1px;\n }\n}\n.list-group-flush {\n border-radius: 0;\n}\n.list-group-flush > .list-group-item {\n border-width: 0 0 1px;\n}\n.list-group-flush > .list-group-item:last-child {\n border-bottom-width: 0;\n}\n\n.list-group-item-primary {\n color: #084298;\n background-color: #cfe2ff;\n}\n.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {\n color: #084298;\n background-color: #bacbe6;\n}\n.list-group-item-primary.list-group-item-action.active {\n color: #fff;\n background-color: #084298;\n border-color: #084298;\n}\n\n.list-group-item-secondary {\n color: #41464b;\n background-color: #e2e3e5;\n}\n.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {\n color: #41464b;\n background-color: #cbccce;\n}\n.list-group-item-secondary.list-group-item-action.active {\n color: #fff;\n background-color: #41464b;\n border-color: #41464b;\n}\n\n.list-group-item-success {\n color: #0f5132;\n background-color: #d1e7dd;\n}\n.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {\n color: #0f5132;\n background-color: #bcd0c7;\n}\n.list-group-item-success.list-group-item-action.active {\n color: #fff;\n background-color: #0f5132;\n border-color: #0f5132;\n}\n\n.list-group-item-info {\n color: #055160;\n background-color: #cff4fc;\n}\n.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {\n color: #055160;\n background-color: #badce3;\n}\n.list-group-item-info.list-group-item-action.active {\n color: #fff;\n background-color: #055160;\n border-color: #055160;\n}\n\n.list-group-item-warning {\n color: #664d03;\n background-color: #fff3cd;\n}\n.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {\n color: #664d03;\n background-color: #e6dbb9;\n}\n.list-group-item-warning.list-group-item-action.active {\n color: #fff;\n background-color: #664d03;\n border-color: #664d03;\n}\n\n.list-group-item-danger {\n color: #842029;\n background-color: #f8d7da;\n}\n.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {\n color: #842029;\n background-color: #dfc2c4;\n}\n.list-group-item-danger.list-group-item-action.active {\n color: #fff;\n background-color: #842029;\n border-color: #842029;\n}\n\n.list-group-item-light {\n color: #636464;\n background-color: #fefefe;\n}\n.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {\n color: #636464;\n background-color: #e5e5e5;\n}\n.list-group-item-light.list-group-item-action.active {\n color: #fff;\n background-color: #636464;\n border-color: #636464;\n}\n\n.list-group-item-dark {\n color: #141619;\n background-color: #d3d3d4;\n}\n.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {\n color: #141619;\n background-color: #bebebf;\n}\n.list-group-item-dark.list-group-item-action.active {\n color: #fff;\n background-color: #141619;\n border-color: #141619;\n}\n\n.btn-close {\n box-sizing: content-box;\n width: 1em;\n height: 1em;\n padding: 0.25em 0.25em;\n color: #000;\n background: transparent url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e\") center/1em auto no-repeat;\n border: 0;\n border-radius: 0.25rem;\n opacity: 0.5;\n}\n.btn-close:hover {\n color: #000;\n text-decoration: none;\n opacity: 0.75;\n}\n.btn-close:focus {\n outline: 0;\n box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);\n opacity: 1;\n}\n.btn-close:disabled, .btn-close.disabled {\n pointer-events: none;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n opacity: 0.25;\n}\n\n.btn-close-white {\n filter: invert(1) grayscale(100%) brightness(200%);\n}\n\n.toast {\n width: 350px;\n max-width: 100%;\n font-size: 0.875rem;\n pointer-events: auto;\n background-color: rgba(255, 255, 255, 0.85);\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.1);\n box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);\n border-radius: 0.25rem;\n}\n.toast.showing {\n opacity: 0;\n}\n.toast:not(.show) {\n display: none;\n}\n\n.toast-container {\n width: -webkit-max-content;\n width: -moz-max-content;\n width: max-content;\n max-width: 100%;\n pointer-events: none;\n}\n.toast-container > :not(:last-child) {\n margin-bottom: 0.75rem;\n}\n\n.toast-header {\n display: flex;\n align-items: center;\n padding: 0.5rem 0.75rem;\n color: #6c757d;\n background-color: rgba(255, 255, 255, 0.85);\n background-clip: padding-box;\n border-bottom: 1px solid rgba(0, 0, 0, 0.05);\n border-top-left-radius: calc(0.25rem - 1px);\n border-top-right-radius: calc(0.25rem - 1px);\n}\n.toast-header .btn-close {\n margin-right: -0.375rem;\n margin-left: 0.75rem;\n}\n\n.toast-body {\n padding: 0.75rem;\n word-wrap: break-word;\n}\n\n.modal {\n position: fixed;\n top: 0;\n left: 0;\n z-index: 1055;\n display: none;\n width: 100%;\n height: 100%;\n overflow-x: hidden;\n overflow-y: auto;\n outline: 0;\n}\n\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 0.5rem;\n pointer-events: none;\n}\n.modal.fade .modal-dialog {\n transition: transform 0.3s ease-out;\n transform: translate(0, -50px);\n}\n@media (prefers-reduced-motion: reduce) {\n .modal.fade .modal-dialog {\n transition: none;\n }\n}\n.modal.show .modal-dialog {\n transform: none;\n}\n.modal.modal-static .modal-dialog {\n transform: scale(1.02);\n}\n\n.modal-dialog-scrollable {\n height: calc(100% - 1rem);\n}\n.modal-dialog-scrollable .modal-content {\n max-height: 100%;\n overflow: hidden;\n}\n.modal-dialog-scrollable .modal-body {\n overflow-y: auto;\n}\n\n.modal-dialog-centered {\n display: flex;\n align-items: center;\n min-height: calc(100% - 1rem);\n}\n\n.modal-content {\n position: relative;\n display: flex;\n flex-direction: column;\n width: 100%;\n pointer-events: auto;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 0.3rem;\n outline: 0;\n}\n\n.modal-backdrop {\n position: fixed;\n top: 0;\n left: 0;\n z-index: 1050;\n width: 100vw;\n height: 100vh;\n background-color: #000;\n}\n.modal-backdrop.fade {\n opacity: 0;\n}\n.modal-backdrop.show {\n opacity: 0.5;\n}\n\n.modal-header {\n display: flex;\n flex-shrink: 0;\n align-items: center;\n justify-content: space-between;\n padding: 1rem 1rem;\n border-bottom: 1px solid #dee2e6;\n border-top-left-radius: calc(0.3rem - 1px);\n border-top-right-radius: calc(0.3rem - 1px);\n}\n.modal-header .btn-close {\n padding: 0.5rem 0.5rem;\n margin: -0.5rem -0.5rem -0.5rem auto;\n}\n\n.modal-title {\n margin-bottom: 0;\n line-height: 1.5;\n}\n\n.modal-body {\n position: relative;\n flex: 1 1 auto;\n padding: 1rem;\n}\n\n.modal-footer {\n display: flex;\n flex-wrap: wrap;\n flex-shrink: 0;\n align-items: center;\n justify-content: flex-end;\n padding: 0.75rem;\n border-top: 1px solid #dee2e6;\n border-bottom-right-radius: calc(0.3rem - 1px);\n border-bottom-left-radius: calc(0.3rem - 1px);\n}\n.modal-footer > * {\n margin: 0.25rem;\n}\n\n@media (min-width: 576px) {\n .modal-dialog {\n max-width: 500px;\n margin: 1.75rem auto;\n }\n\n .modal-dialog-scrollable {\n height: calc(100% - 3.5rem);\n }\n\n .modal-dialog-centered {\n min-height: calc(100% - 3.5rem);\n }\n\n .modal-sm {\n max-width: 300px;\n }\n}\n@media (min-width: 992px) {\n .modal-lg,\n.modal-xl {\n max-width: 800px;\n }\n}\n@media (min-width: 1200px) {\n .modal-xl {\n max-width: 1140px;\n }\n}\n.modal-fullscreen {\n width: 100vw;\n max-width: none;\n height: 100%;\n margin: 0;\n}\n.modal-fullscreen .modal-content {\n height: 100%;\n border: 0;\n border-radius: 0;\n}\n.modal-fullscreen .modal-header {\n border-radius: 0;\n}\n.modal-fullscreen .modal-body {\n overflow-y: auto;\n}\n.modal-fullscreen .modal-footer {\n border-radius: 0;\n}\n\n@media (max-width: 575.98px) {\n .modal-fullscreen-sm-down {\n width: 100vw;\n max-width: none;\n height: 100%;\n margin: 0;\n }\n .modal-fullscreen-sm-down .modal-content {\n height: 100%;\n border: 0;\n border-radius: 0;\n }\n .modal-fullscreen-sm-down .modal-header {\n border-radius: 0;\n }\n .modal-fullscreen-sm-down .modal-body {\n overflow-y: auto;\n }\n .modal-fullscreen-sm-down .modal-footer {\n border-radius: 0;\n }\n}\n@media (max-width: 767.98px) {\n .modal-fullscreen-md-down {\n width: 100vw;\n max-width: none;\n height: 100%;\n margin: 0;\n }\n .modal-fullscreen-md-down .modal-content {\n height: 100%;\n border: 0;\n border-radius: 0;\n }\n .modal-fullscreen-md-down .modal-header {\n border-radius: 0;\n }\n .modal-fullscreen-md-down .modal-body {\n overflow-y: auto;\n }\n .modal-fullscreen-md-down .modal-footer {\n border-radius: 0;\n }\n}\n@media (max-width: 991.98px) {\n .modal-fullscreen-lg-down {\n width: 100vw;\n max-width: none;\n height: 100%;\n margin: 0;\n }\n .modal-fullscreen-lg-down .modal-content {\n height: 100%;\n border: 0;\n border-radius: 0;\n }\n .modal-fullscreen-lg-down .modal-header {\n border-radius: 0;\n }\n .modal-fullscreen-lg-down .modal-body {\n overflow-y: auto;\n }\n .modal-fullscreen-lg-down .modal-footer {\n border-radius: 0;\n }\n}\n@media (max-width: 1199.98px) {\n .modal-fullscreen-xl-down {\n width: 100vw;\n max-width: none;\n height: 100%;\n margin: 0;\n }\n .modal-fullscreen-xl-down .modal-content {\n height: 100%;\n border: 0;\n border-radius: 0;\n }\n .modal-fullscreen-xl-down .modal-header {\n border-radius: 0;\n }\n .modal-fullscreen-xl-down .modal-body {\n overflow-y: auto;\n }\n .modal-fullscreen-xl-down .modal-footer {\n border-radius: 0;\n }\n}\n@media (max-width: 1399.98px) {\n .modal-fullscreen-xxl-down {\n width: 100vw;\n max-width: none;\n height: 100%;\n margin: 0;\n }\n .modal-fullscreen-xxl-down .modal-content {\n height: 100%;\n border: 0;\n border-radius: 0;\n }\n .modal-fullscreen-xxl-down .modal-header {\n border-radius: 0;\n }\n .modal-fullscreen-xxl-down .modal-body {\n overflow-y: auto;\n }\n .modal-fullscreen-xxl-down .modal-footer {\n border-radius: 0;\n }\n}\n.tooltip {\n position: absolute;\n z-index: 1080;\n display: block;\n margin: 0;\n font-family: var(--bs-font-sans-serif);\n font-style: normal;\n font-weight: 400;\n line-height: 1.5;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: normal;\n line-break: auto;\n font-size: 0.875rem;\n word-wrap: break-word;\n opacity: 0;\n}\n.tooltip.show {\n opacity: 0.9;\n}\n.tooltip .tooltip-arrow {\n position: absolute;\n display: block;\n width: 0.8rem;\n height: 0.4rem;\n}\n.tooltip .tooltip-arrow::before {\n position: absolute;\n content: \"\";\n border-color: transparent;\n border-style: solid;\n}\n\n.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^=top] {\n padding: 0.4rem 0;\n}\n.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {\n bottom: 0;\n}\n.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {\n top: -1px;\n border-width: 0.4rem 0.4rem 0;\n border-top-color: #000;\n}\n\n.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^=right] {\n padding: 0 0.4rem;\n}\n.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {\n left: 0;\n width: 0.4rem;\n height: 0.8rem;\n}\n.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {\n right: -1px;\n border-width: 0.4rem 0.4rem 0.4rem 0;\n border-right-color: #000;\n}\n\n.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^=bottom] {\n padding: 0.4rem 0;\n}\n.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {\n top: 0;\n}\n.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {\n bottom: -1px;\n border-width: 0 0.4rem 0.4rem;\n border-bottom-color: #000;\n}\n\n.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^=left] {\n padding: 0 0.4rem;\n}\n.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {\n right: 0;\n width: 0.4rem;\n height: 0.8rem;\n}\n.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {\n left: -1px;\n border-width: 0.4rem 0 0.4rem 0.4rem;\n border-left-color: #000;\n}\n\n.tooltip-inner {\n max-width: 200px;\n padding: 0.25rem 0.5rem;\n color: #fff;\n text-align: center;\n background-color: #000;\n border-radius: 0.25rem;\n}\n\n.popover {\n position: absolute;\n top: 0;\n left: 0 /* rtl:ignore */;\n z-index: 1070;\n display: block;\n max-width: 276px;\n font-family: var(--bs-font-sans-serif);\n font-style: normal;\n font-weight: 400;\n line-height: 1.5;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: normal;\n line-break: auto;\n font-size: 0.875rem;\n word-wrap: break-word;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 0.3rem;\n}\n.popover .popover-arrow {\n position: absolute;\n display: block;\n width: 1rem;\n height: 0.5rem;\n}\n.popover .popover-arrow::before, .popover .popover-arrow::after {\n position: absolute;\n display: block;\n content: \"\";\n border-color: transparent;\n border-style: solid;\n}\n\n.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {\n bottom: calc(-0.5rem - 1px);\n}\n.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {\n bottom: 0;\n border-width: 0.5rem 0.5rem 0;\n border-top-color: rgba(0, 0, 0, 0.25);\n}\n.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {\n bottom: 1px;\n border-width: 0.5rem 0.5rem 0;\n border-top-color: #fff;\n}\n\n.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {\n left: calc(-0.5rem - 1px);\n width: 0.5rem;\n height: 1rem;\n}\n.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {\n left: 0;\n border-width: 0.5rem 0.5rem 0.5rem 0;\n border-right-color: rgba(0, 0, 0, 0.25);\n}\n.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {\n left: 1px;\n border-width: 0.5rem 0.5rem 0.5rem 0;\n border-right-color: #fff;\n}\n\n.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {\n top: calc(-0.5rem - 1px);\n}\n.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {\n top: 0;\n border-width: 0 0.5rem 0.5rem 0.5rem;\n border-bottom-color: rgba(0, 0, 0, 0.25);\n}\n.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {\n top: 1px;\n border-width: 0 0.5rem 0.5rem 0.5rem;\n border-bottom-color: #fff;\n}\n.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {\n position: absolute;\n top: 0;\n left: 50%;\n display: block;\n width: 1rem;\n margin-left: -0.5rem;\n content: \"\";\n border-bottom: 1px solid #f0f0f0;\n}\n\n.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {\n right: calc(-0.5rem - 1px);\n width: 0.5rem;\n height: 1rem;\n}\n.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {\n right: 0;\n border-width: 0.5rem 0 0.5rem 0.5rem;\n border-left-color: rgba(0, 0, 0, 0.25);\n}\n.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {\n right: 1px;\n border-width: 0.5rem 0 0.5rem 0.5rem;\n border-left-color: #fff;\n}\n\n.popover-header {\n padding: 0.5rem 1rem;\n margin-bottom: 0;\n font-size: 1rem;\n background-color: #f0f0f0;\n border-bottom: 1px solid rgba(0, 0, 0, 0.2);\n border-top-left-radius: calc(0.3rem - 1px);\n border-top-right-radius: calc(0.3rem - 1px);\n}\n.popover-header:empty {\n display: none;\n}\n\n.popover-body {\n padding: 1rem 1rem;\n color: #212529;\n}\n\n.carousel {\n position: relative;\n}\n\n.carousel.pointer-event {\n touch-action: pan-y;\n}\n\n.carousel-inner {\n position: relative;\n width: 100%;\n overflow: hidden;\n}\n.carousel-inner::after {\n display: block;\n clear: both;\n content: \"\";\n}\n\n.carousel-item {\n position: relative;\n display: none;\n float: left;\n width: 100%;\n margin-right: -100%;\n -webkit-backface-visibility: hidden;\n backface-visibility: hidden;\n transition: transform 0.6s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .carousel-item {\n transition: none;\n }\n}\n\n.carousel-item.active,\n.carousel-item-next,\n.carousel-item-prev {\n display: block;\n}\n\n/* rtl:begin:ignore */\n.carousel-item-next:not(.carousel-item-start),\n.active.carousel-item-end {\n transform: translateX(100%);\n}\n\n.carousel-item-prev:not(.carousel-item-end),\n.active.carousel-item-start {\n transform: translateX(-100%);\n}\n\n/* rtl:end:ignore */\n.carousel-fade .carousel-item {\n opacity: 0;\n transition-property: opacity;\n transform: none;\n}\n.carousel-fade .carousel-item.active,\n.carousel-fade .carousel-item-next.carousel-item-start,\n.carousel-fade .carousel-item-prev.carousel-item-end {\n z-index: 1;\n opacity: 1;\n}\n.carousel-fade .active.carousel-item-start,\n.carousel-fade .active.carousel-item-end {\n z-index: 0;\n opacity: 0;\n transition: opacity 0s 0.6s;\n}\n@media (prefers-reduced-motion: reduce) {\n .carousel-fade .active.carousel-item-start,\n.carousel-fade .active.carousel-item-end {\n transition: none;\n }\n}\n\n.carousel-control-prev,\n.carousel-control-next {\n position: absolute;\n top: 0;\n bottom: 0;\n z-index: 1;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 15%;\n padding: 0;\n color: #fff;\n text-align: center;\n background: none;\n border: 0;\n opacity: 0.5;\n transition: opacity 0.15s ease;\n}\n@media (prefers-reduced-motion: reduce) {\n .carousel-control-prev,\n.carousel-control-next {\n transition: none;\n }\n}\n.carousel-control-prev:hover, .carousel-control-prev:focus,\n.carousel-control-next:hover,\n.carousel-control-next:focus {\n color: #fff;\n text-decoration: none;\n outline: 0;\n opacity: 0.9;\n}\n\n.carousel-control-prev {\n left: 0;\n}\n\n.carousel-control-next {\n right: 0;\n}\n\n.carousel-control-prev-icon,\n.carousel-control-next-icon {\n display: inline-block;\n width: 2rem;\n height: 2rem;\n background-repeat: no-repeat;\n background-position: 50%;\n background-size: 100% 100%;\n}\n\n/* rtl:options: {\n \"autoRename\": true,\n \"stringMap\":[ {\n \"name\" : \"prev-next\",\n \"search\" : \"prev\",\n \"replace\" : \"next\"\n } ]\n} */\n.carousel-control-prev-icon {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e\");\n}\n\n.carousel-control-next-icon {\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e\");\n}\n\n.carousel-indicators {\n position: absolute;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 2;\n display: flex;\n justify-content: center;\n padding: 0;\n margin-right: 15%;\n margin-bottom: 1rem;\n margin-left: 15%;\n list-style: none;\n}\n.carousel-indicators [data-bs-target] {\n box-sizing: content-box;\n flex: 0 1 auto;\n width: 30px;\n height: 3px;\n padding: 0;\n margin-right: 3px;\n margin-left: 3px;\n text-indent: -999px;\n cursor: pointer;\n background-color: #fff;\n background-clip: padding-box;\n border: 0;\n border-top: 10px solid transparent;\n border-bottom: 10px solid transparent;\n opacity: 0.5;\n transition: opacity 0.6s ease;\n}\n@media (prefers-reduced-motion: reduce) {\n .carousel-indicators [data-bs-target] {\n transition: none;\n }\n}\n.carousel-indicators .active {\n opacity: 1;\n}\n\n.carousel-caption {\n position: absolute;\n right: 15%;\n bottom: 1.25rem;\n left: 15%;\n padding-top: 1.25rem;\n padding-bottom: 1.25rem;\n color: #fff;\n text-align: center;\n}\n\n.carousel-dark .carousel-control-prev-icon,\n.carousel-dark .carousel-control-next-icon {\n filter: invert(1) grayscale(100);\n}\n.carousel-dark .carousel-indicators [data-bs-target] {\n background-color: #000;\n}\n.carousel-dark .carousel-caption {\n color: #000;\n}\n\n@-webkit-keyframes spinner-border {\n to {\n transform: rotate(360deg) /* rtl:ignore */;\n }\n}\n\n@keyframes spinner-border {\n to {\n transform: rotate(360deg) /* rtl:ignore */;\n }\n}\n.spinner-border {\n display: inline-block;\n width: 2rem;\n height: 2rem;\n vertical-align: -0.125em;\n border: 0.25em solid currentColor;\n border-right-color: transparent;\n border-radius: 50%;\n -webkit-animation: 0.75s linear infinite spinner-border;\n animation: 0.75s linear infinite spinner-border;\n}\n\n.spinner-border-sm {\n width: 1rem;\n height: 1rem;\n border-width: 0.2em;\n}\n\n@-webkit-keyframes spinner-grow {\n 0% {\n transform: scale(0);\n }\n 50% {\n opacity: 1;\n transform: none;\n }\n}\n\n@keyframes spinner-grow {\n 0% {\n transform: scale(0);\n }\n 50% {\n opacity: 1;\n transform: none;\n }\n}\n.spinner-grow {\n display: inline-block;\n width: 2rem;\n height: 2rem;\n vertical-align: -0.125em;\n background-color: currentColor;\n border-radius: 50%;\n opacity: 0;\n -webkit-animation: 0.75s linear infinite spinner-grow;\n animation: 0.75s linear infinite spinner-grow;\n}\n\n.spinner-grow-sm {\n width: 1rem;\n height: 1rem;\n}\n\n@media (prefers-reduced-motion: reduce) {\n .spinner-border,\n.spinner-grow {\n -webkit-animation-duration: 1.5s;\n animation-duration: 1.5s;\n }\n}\n.offcanvas {\n position: fixed;\n bottom: 0;\n z-index: 1045;\n display: flex;\n flex-direction: column;\n max-width: 100%;\n visibility: hidden;\n background-color: #fff;\n background-clip: padding-box;\n outline: 0;\n transition: transform 0.3s ease-in-out;\n}\n@media (prefers-reduced-motion: reduce) {\n .offcanvas {\n transition: none;\n }\n}\n\n.offcanvas-backdrop {\n position: fixed;\n top: 0;\n left: 0;\n z-index: 1040;\n width: 100vw;\n height: 100vh;\n background-color: #000;\n}\n.offcanvas-backdrop.fade {\n opacity: 0;\n}\n.offcanvas-backdrop.show {\n opacity: 0.5;\n}\n\n.offcanvas-header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: 1rem 1rem;\n}\n.offcanvas-header .btn-close {\n padding: 0.5rem 0.5rem;\n margin-top: -0.5rem;\n margin-right: -0.5rem;\n margin-bottom: -0.5rem;\n}\n\n.offcanvas-title {\n margin-bottom: 0;\n line-height: 1.5;\n}\n\n.offcanvas-body {\n flex-grow: 1;\n padding: 1rem 1rem;\n overflow-y: auto;\n}\n\n.offcanvas-start {\n top: 0;\n left: 0;\n width: 400px;\n border-right: 1px solid rgba(0, 0, 0, 0.2);\n transform: translateX(-100%);\n}\n\n.offcanvas-end {\n top: 0;\n right: 0;\n width: 400px;\n border-left: 1px solid rgba(0, 0, 0, 0.2);\n transform: translateX(100%);\n}\n\n.offcanvas-top {\n top: 0;\n right: 0;\n left: 0;\n height: 30vh;\n max-height: 100%;\n border-bottom: 1px solid rgba(0, 0, 0, 0.2);\n transform: translateY(-100%);\n}\n\n.offcanvas-bottom {\n right: 0;\n left: 0;\n height: 30vh;\n max-height: 100%;\n border-top: 1px solid rgba(0, 0, 0, 0.2);\n transform: translateY(100%);\n}\n\n.offcanvas.show {\n transform: none;\n}\n\n.placeholder {\n display: inline-block;\n min-height: 1em;\n vertical-align: middle;\n cursor: wait;\n background-color: currentColor;\n opacity: 0.5;\n}\n.placeholder.btn::before {\n display: inline-block;\n content: \"\";\n}\n\n.placeholder-xs {\n min-height: 0.6em;\n}\n\n.placeholder-sm {\n min-height: 0.8em;\n}\n\n.placeholder-lg {\n min-height: 1.2em;\n}\n\n.placeholder-glow .placeholder {\n -webkit-animation: placeholder-glow 2s ease-in-out infinite;\n animation: placeholder-glow 2s ease-in-out infinite;\n}\n\n@-webkit-keyframes placeholder-glow {\n 50% {\n opacity: 0.2;\n }\n}\n\n@keyframes placeholder-glow {\n 50% {\n opacity: 0.2;\n }\n}\n.placeholder-wave {\n -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);\n mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);\n -webkit-mask-size: 200% 100%;\n mask-size: 200% 100%;\n -webkit-animation: placeholder-wave 2s linear infinite;\n animation: placeholder-wave 2s linear infinite;\n}\n\n@-webkit-keyframes placeholder-wave {\n 100% {\n -webkit-mask-position: -200% 0%;\n mask-position: -200% 0%;\n }\n}\n\n@keyframes placeholder-wave {\n 100% {\n -webkit-mask-position: -200% 0%;\n mask-position: -200% 0%;\n }\n}\n.clearfix::after {\n display: block;\n clear: both;\n content: \"\";\n}\n\n.link-primary {\n color: #0d6efd;\n}\n.link-primary:hover, .link-primary:focus {\n color: #0a58ca;\n}\n\n.link-secondary {\n color: #6c757d;\n}\n.link-secondary:hover, .link-secondary:focus {\n color: #565e64;\n}\n\n.link-success {\n color: #198754;\n}\n.link-success:hover, .link-success:focus {\n color: #146c43;\n}\n\n.link-info {\n color: #0dcaf0;\n}\n.link-info:hover, .link-info:focus {\n color: #3dd5f3;\n}\n\n.link-warning {\n color: #ffc107;\n}\n.link-warning:hover, .link-warning:focus {\n color: #ffcd39;\n}\n\n.link-danger {\n color: #dc3545;\n}\n.link-danger:hover, .link-danger:focus {\n color: #b02a37;\n}\n\n.link-light {\n color: #f8f9fa;\n}\n.link-light:hover, .link-light:focus {\n color: #f9fafb;\n}\n\n.link-dark {\n color: #212529;\n}\n.link-dark:hover, .link-dark:focus {\n color: #1a1e21;\n}\n\n.ratio {\n position: relative;\n width: 100%;\n}\n.ratio::before {\n display: block;\n padding-top: var(--bs-aspect-ratio);\n content: \"\";\n}\n.ratio > * {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n}\n\n.ratio-1x1 {\n --bs-aspect-ratio: 100%;\n}\n\n.ratio-4x3 {\n --bs-aspect-ratio: calc(3 / 4 * 100%);\n}\n\n.ratio-16x9 {\n --bs-aspect-ratio: calc(9 / 16 * 100%);\n}\n\n.ratio-21x9 {\n --bs-aspect-ratio: calc(9 / 21 * 100%);\n}\n\n.fixed-top {\n position: fixed;\n top: 0;\n right: 0;\n left: 0;\n z-index: 1030;\n}\n\n.fixed-bottom {\n position: fixed;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1030;\n}\n\n.sticky-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n}\n\n@media (min-width: 576px) {\n .sticky-sm-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n}\n@media (min-width: 768px) {\n .sticky-md-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n}\n@media (min-width: 992px) {\n .sticky-lg-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n}\n@media (min-width: 1200px) {\n .sticky-xl-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n}\n@media (min-width: 1400px) {\n .sticky-xxl-top {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 1020;\n }\n}\n.hstack {\n display: flex;\n flex-direction: row;\n align-items: center;\n align-self: stretch;\n}\n\n.vstack {\n display: flex;\n flex: 1 1 auto;\n flex-direction: column;\n align-self: stretch;\n}\n\n.visually-hidden,\n.visually-hidden-focusable:not(:focus):not(:focus-within) {\n position: absolute !important;\n width: 1px !important;\n height: 1px !important;\n padding: 0 !important;\n margin: -1px !important;\n overflow: hidden !important;\n clip: rect(0, 0, 0, 0) !important;\n white-space: nowrap !important;\n border: 0 !important;\n}\n\n.stretched-link::after {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1;\n content: \"\";\n}\n\n.text-truncate {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.vr {\n display: inline-block;\n align-self: stretch;\n width: 1px;\n min-height: 1em;\n background-color: currentColor;\n opacity: 0.25;\n}\n\n.align-baseline {\n vertical-align: baseline !important;\n}\n\n.align-top {\n vertical-align: top !important;\n}\n\n.align-middle {\n vertical-align: middle !important;\n}\n\n.align-bottom {\n vertical-align: bottom !important;\n}\n\n.align-text-bottom {\n vertical-align: text-bottom !important;\n}\n\n.align-text-top {\n vertical-align: text-top !important;\n}\n\n.float-start {\n float: left !important;\n}\n\n.float-end {\n float: right !important;\n}\n\n.float-none {\n float: none !important;\n}\n\n.opacity-0 {\n opacity: 0 !important;\n}\n\n.opacity-25 {\n opacity: 0.25 !important;\n}\n\n.opacity-50 {\n opacity: 0.5 !important;\n}\n\n.opacity-75 {\n opacity: 0.75 !important;\n}\n\n.opacity-100 {\n opacity: 1 !important;\n}\n\n.overflow-auto {\n overflow: auto !important;\n}\n\n.overflow-hidden {\n overflow: hidden !important;\n}\n\n.overflow-visible {\n overflow: visible !important;\n}\n\n.overflow-scroll {\n overflow: scroll !important;\n}\n\n.d-inline {\n display: inline !important;\n}\n\n.d-inline-block {\n display: inline-block !important;\n}\n\n.d-block {\n display: block !important;\n}\n\n.d-grid {\n display: grid !important;\n}\n\n.d-table {\n display: table !important;\n}\n\n.d-table-row {\n display: table-row !important;\n}\n\n.d-table-cell {\n display: table-cell !important;\n}\n\n.d-flex {\n display: flex !important;\n}\n\n.d-inline-flex {\n display: inline-flex !important;\n}\n\n.d-none {\n display: none !important;\n}\n\n.shadow {\n box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;\n}\n\n.shadow-sm {\n box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;\n}\n\n.shadow-lg {\n box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;\n}\n\n.shadow-none {\n box-shadow: none !important;\n}\n\n.position-static {\n position: static !important;\n}\n\n.position-relative {\n position: relative !important;\n}\n\n.position-absolute {\n position: absolute !important;\n}\n\n.position-fixed {\n position: fixed !important;\n}\n\n.position-sticky {\n position: -webkit-sticky !important;\n position: sticky !important;\n}\n\n.top-0 {\n top: 0 !important;\n}\n\n.top-50 {\n top: 50% !important;\n}\n\n.top-100 {\n top: 100% !important;\n}\n\n.bottom-0 {\n bottom: 0 !important;\n}\n\n.bottom-50 {\n bottom: 50% !important;\n}\n\n.bottom-100 {\n bottom: 100% !important;\n}\n\n.start-0 {\n left: 0 !important;\n}\n\n.start-50 {\n left: 50% !important;\n}\n\n.start-100 {\n left: 100% !important;\n}\n\n.end-0 {\n right: 0 !important;\n}\n\n.end-50 {\n right: 50% !important;\n}\n\n.end-100 {\n right: 100% !important;\n}\n\n.translate-middle {\n transform: translate(-50%, -50%) !important;\n}\n\n.translate-middle-x {\n transform: translateX(-50%) !important;\n}\n\n.translate-middle-y {\n transform: translateY(-50%) !important;\n}\n\n.border {\n border: 1px solid #dee2e6 !important;\n}\n\n.border-0 {\n border: 0 !important;\n}\n\n.border-top {\n border-top: 1px solid #dee2e6 !important;\n}\n\n.border-top-0 {\n border-top: 0 !important;\n}\n\n.border-end {\n border-right: 1px solid #dee2e6 !important;\n}\n\n.border-end-0 {\n border-right: 0 !important;\n}\n\n.border-bottom {\n border-bottom: 1px solid #dee2e6 !important;\n}\n\n.border-bottom-0 {\n border-bottom: 0 !important;\n}\n\n.border-start {\n border-left: 1px solid #dee2e6 !important;\n}\n\n.border-start-0 {\n border-left: 0 !important;\n}\n\n.border-primary {\n border-color: #0d6efd !important;\n}\n\n.border-secondary {\n border-color: #6c757d !important;\n}\n\n.border-success {\n border-color: #198754 !important;\n}\n\n.border-info {\n border-color: #0dcaf0 !important;\n}\n\n.border-warning {\n border-color: #ffc107 !important;\n}\n\n.border-danger {\n border-color: #dc3545 !important;\n}\n\n.border-light {\n border-color: #f8f9fa !important;\n}\n\n.border-dark {\n border-color: #212529 !important;\n}\n\n.border-white {\n border-color: #fff !important;\n}\n\n.border-1 {\n border-width: 1px !important;\n}\n\n.border-2 {\n border-width: 2px !important;\n}\n\n.border-3 {\n border-width: 3px !important;\n}\n\n.border-4 {\n border-width: 4px !important;\n}\n\n.border-5 {\n border-width: 5px !important;\n}\n\n.w-25 {\n width: 25% !important;\n}\n\n.w-50 {\n width: 50% !important;\n}\n\n.w-75 {\n width: 75% !important;\n}\n\n.w-100 {\n width: 100% !important;\n}\n\n.w-auto {\n width: auto !important;\n}\n\n.mw-100 {\n max-width: 100% !important;\n}\n\n.vw-100 {\n width: 100vw !important;\n}\n\n.min-vw-100 {\n min-width: 100vw !important;\n}\n\n.h-25 {\n height: 25% !important;\n}\n\n.h-50 {\n height: 50% !important;\n}\n\n.h-75 {\n height: 75% !important;\n}\n\n.h-100 {\n height: 100% !important;\n}\n\n.h-auto {\n height: auto !important;\n}\n\n.mh-100 {\n max-height: 100% !important;\n}\n\n.vh-100 {\n height: 100vh !important;\n}\n\n.min-vh-100 {\n min-height: 100vh !important;\n}\n\n.flex-fill {\n flex: 1 1 auto !important;\n}\n\n.flex-row {\n flex-direction: row !important;\n}\n\n.flex-column {\n flex-direction: column !important;\n}\n\n.flex-row-reverse {\n flex-direction: row-reverse !important;\n}\n\n.flex-column-reverse {\n flex-direction: column-reverse !important;\n}\n\n.flex-grow-0 {\n flex-grow: 0 !important;\n}\n\n.flex-grow-1 {\n flex-grow: 1 !important;\n}\n\n.flex-shrink-0 {\n flex-shrink: 0 !important;\n}\n\n.flex-shrink-1 {\n flex-shrink: 1 !important;\n}\n\n.flex-wrap {\n flex-wrap: wrap !important;\n}\n\n.flex-nowrap {\n flex-wrap: nowrap !important;\n}\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n}\n\n.gap-0 {\n gap: 0 !important;\n}\n\n.gap-1 {\n gap: 0.25rem !important;\n}\n\n.gap-2 {\n gap: 0.5rem !important;\n}\n\n.gap-3 {\n gap: 1rem !important;\n}\n\n.gap-4 {\n gap: 1.5rem !important;\n}\n\n.gap-5 {\n gap: 3rem !important;\n}\n\n.justify-content-start {\n justify-content: flex-start !important;\n}\n\n.justify-content-end {\n justify-content: flex-end !important;\n}\n\n.justify-content-center {\n justify-content: center !important;\n}\n\n.justify-content-between {\n justify-content: space-between !important;\n}\n\n.justify-content-around {\n justify-content: space-around !important;\n}\n\n.justify-content-evenly {\n justify-content: space-evenly !important;\n}\n\n.align-items-start {\n align-items: flex-start !important;\n}\n\n.align-items-end {\n align-items: flex-end !important;\n}\n\n.align-items-center {\n align-items: center !important;\n}\n\n.align-items-baseline {\n align-items: baseline !important;\n}\n\n.align-items-stretch {\n align-items: stretch !important;\n}\n\n.align-content-start {\n align-content: flex-start !important;\n}\n\n.align-content-end {\n align-content: flex-end !important;\n}\n\n.align-content-center {\n align-content: center !important;\n}\n\n.align-content-between {\n align-content: space-between !important;\n}\n\n.align-content-around {\n align-content: space-around !important;\n}\n\n.align-content-stretch {\n align-content: stretch !important;\n}\n\n.align-self-auto {\n align-self: auto !important;\n}\n\n.align-self-start {\n align-self: flex-start !important;\n}\n\n.align-self-end {\n align-self: flex-end !important;\n}\n\n.align-self-center {\n align-self: center !important;\n}\n\n.align-self-baseline {\n align-self: baseline !important;\n}\n\n.align-self-stretch {\n align-self: stretch !important;\n}\n\n.order-first {\n order: -1 !important;\n}\n\n.order-0 {\n order: 0 !important;\n}\n\n.order-1 {\n order: 1 !important;\n}\n\n.order-2 {\n order: 2 !important;\n}\n\n.order-3 {\n order: 3 !important;\n}\n\n.order-4 {\n order: 4 !important;\n}\n\n.order-5 {\n order: 5 !important;\n}\n\n.order-last {\n order: 6 !important;\n}\n\n.m-0 {\n margin: 0 !important;\n}\n\n.m-1 {\n margin: 0.25rem !important;\n}\n\n.m-2 {\n margin: 0.5rem !important;\n}\n\n.m-3 {\n margin: 1rem !important;\n}\n\n.m-4 {\n margin: 1.5rem !important;\n}\n\n.m-5 {\n margin: 3rem !important;\n}\n\n.m-auto {\n margin: auto !important;\n}\n\n.mx-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n}\n\n.mx-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n}\n\n.mx-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n}\n\n.mx-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n}\n\n.mx-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n}\n\n.mx-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n}\n\n.mx-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n}\n\n.my-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n}\n\n.my-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n}\n\n.my-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n}\n\n.my-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n}\n\n.my-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n}\n\n.my-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n}\n\n.my-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n}\n\n.mt-0 {\n margin-top: 0 !important;\n}\n\n.mt-1 {\n margin-top: 0.25rem !important;\n}\n\n.mt-2 {\n margin-top: 0.5rem !important;\n}\n\n.mt-3 {\n margin-top: 1rem !important;\n}\n\n.mt-4 {\n margin-top: 1.5rem !important;\n}\n\n.mt-5 {\n margin-top: 3rem !important;\n}\n\n.mt-auto {\n margin-top: auto !important;\n}\n\n.me-0 {\n margin-right: 0 !important;\n}\n\n.me-1 {\n margin-right: 0.25rem !important;\n}\n\n.me-2 {\n margin-right: 0.5rem !important;\n}\n\n.me-3 {\n margin-right: 1rem !important;\n}\n\n.me-4 {\n margin-right: 1.5rem !important;\n}\n\n.me-5 {\n margin-right: 3rem !important;\n}\n\n.me-auto {\n margin-right: auto !important;\n}\n\n.mb-0 {\n margin-bottom: 0 !important;\n}\n\n.mb-1 {\n margin-bottom: 0.25rem !important;\n}\n\n.mb-2 {\n margin-bottom: 0.5rem !important;\n}\n\n.mb-3 {\n margin-bottom: 1rem !important;\n}\n\n.mb-4 {\n margin-bottom: 1.5rem !important;\n}\n\n.mb-5 {\n margin-bottom: 3rem !important;\n}\n\n.mb-auto {\n margin-bottom: auto !important;\n}\n\n.ms-0 {\n margin-left: 0 !important;\n}\n\n.ms-1 {\n margin-left: 0.25rem !important;\n}\n\n.ms-2 {\n margin-left: 0.5rem !important;\n}\n\n.ms-3 {\n margin-left: 1rem !important;\n}\n\n.ms-4 {\n margin-left: 1.5rem !important;\n}\n\n.ms-5 {\n margin-left: 3rem !important;\n}\n\n.ms-auto {\n margin-left: auto !important;\n}\n\n.p-0 {\n padding: 0 !important;\n}\n\n.p-1 {\n padding: 0.25rem !important;\n}\n\n.p-2 {\n padding: 0.5rem !important;\n}\n\n.p-3 {\n padding: 1rem !important;\n}\n\n.p-4 {\n padding: 1.5rem !important;\n}\n\n.p-5 {\n padding: 3rem !important;\n}\n\n.px-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n}\n\n.px-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n}\n\n.px-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n}\n\n.px-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n}\n\n.px-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n}\n\n.px-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n}\n\n.py-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n\n.py-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n}\n\n.py-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n}\n\n.py-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n}\n\n.py-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n}\n\n.py-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n}\n\n.pt-0 {\n padding-top: 0 !important;\n}\n\n.pt-1 {\n padding-top: 0.25rem !important;\n}\n\n.pt-2 {\n padding-top: 0.5rem !important;\n}\n\n.pt-3 {\n padding-top: 1rem !important;\n}\n\n.pt-4 {\n padding-top: 1.5rem !important;\n}\n\n.pt-5 {\n padding-top: 3rem !important;\n}\n\n.pe-0 {\n padding-right: 0 !important;\n}\n\n.pe-1 {\n padding-right: 0.25rem !important;\n}\n\n.pe-2 {\n padding-right: 0.5rem !important;\n}\n\n.pe-3 {\n padding-right: 1rem !important;\n}\n\n.pe-4 {\n padding-right: 1.5rem !important;\n}\n\n.pe-5 {\n padding-right: 3rem !important;\n}\n\n.pb-0 {\n padding-bottom: 0 !important;\n}\n\n.pb-1 {\n padding-bottom: 0.25rem !important;\n}\n\n.pb-2 {\n padding-bottom: 0.5rem !important;\n}\n\n.pb-3 {\n padding-bottom: 1rem !important;\n}\n\n.pb-4 {\n padding-bottom: 1.5rem !important;\n}\n\n.pb-5 {\n padding-bottom: 3rem !important;\n}\n\n.ps-0 {\n padding-left: 0 !important;\n}\n\n.ps-1 {\n padding-left: 0.25rem !important;\n}\n\n.ps-2 {\n padding-left: 0.5rem !important;\n}\n\n.ps-3 {\n padding-left: 1rem !important;\n}\n\n.ps-4 {\n padding-left: 1.5rem !important;\n}\n\n.ps-5 {\n padding-left: 3rem !important;\n}\n\n.font-monospace {\n font-family: var(--bs-font-monospace) !important;\n}\n\n.fs-1 {\n font-size: calc(1.375rem + 1.5vw) !important;\n}\n\n.fs-2 {\n font-size: calc(1.325rem + 0.9vw) !important;\n}\n\n.fs-3 {\n font-size: calc(1.3rem + 0.6vw) !important;\n}\n\n.fs-4 {\n font-size: calc(1.275rem + 0.3vw) !important;\n}\n\n.fs-5 {\n font-size: 1.25rem !important;\n}\n\n.fs-6 {\n font-size: 1rem !important;\n}\n\n.fst-italic {\n font-style: italic !important;\n}\n\n.fst-normal {\n font-style: normal !important;\n}\n\n.fw-light {\n font-weight: 300 !important;\n}\n\n.fw-lighter {\n font-weight: lighter !important;\n}\n\n.fw-normal {\n font-weight: 400 !important;\n}\n\n.fw-bold {\n font-weight: 700 !important;\n}\n\n.fw-bolder {\n font-weight: bolder !important;\n}\n\n.lh-1 {\n line-height: 1 !important;\n}\n\n.lh-sm {\n line-height: 1.25 !important;\n}\n\n.lh-base {\n line-height: 1.5 !important;\n}\n\n.lh-lg {\n line-height: 2 !important;\n}\n\n.text-start {\n text-align: left !important;\n}\n\n.text-end {\n text-align: right !important;\n}\n\n.text-center {\n text-align: center !important;\n}\n\n.text-decoration-none {\n text-decoration: none !important;\n}\n\n.text-decoration-underline {\n text-decoration: underline !important;\n}\n\n.text-decoration-line-through {\n text-decoration: line-through !important;\n}\n\n.text-lowercase {\n text-transform: lowercase !important;\n}\n\n.text-uppercase {\n text-transform: uppercase !important;\n}\n\n.text-capitalize {\n text-transform: capitalize !important;\n}\n\n.text-wrap {\n white-space: normal !important;\n}\n\n.text-nowrap {\n white-space: nowrap !important;\n}\n\n/* rtl:begin:remove */\n.text-break {\n word-wrap: break-word !important;\n word-break: break-word !important;\n}\n\n/* rtl:end:remove */\n.text-primary {\n --bs-text-opacity: 1;\n color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;\n}\n\n.text-secondary {\n --bs-text-opacity: 1;\n color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;\n}\n\n.text-success {\n --bs-text-opacity: 1;\n color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;\n}\n\n.text-info {\n --bs-text-opacity: 1;\n color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;\n}\n\n.text-warning {\n --bs-text-opacity: 1;\n color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;\n}\n\n.text-danger {\n --bs-text-opacity: 1;\n color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;\n}\n\n.text-light {\n --bs-text-opacity: 1;\n color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;\n}\n\n.text-dark {\n --bs-text-opacity: 1;\n color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;\n}\n\n.text-black {\n --bs-text-opacity: 1;\n color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;\n}\n\n.text-white {\n --bs-text-opacity: 1;\n color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;\n}\n\n.text-body {\n --bs-text-opacity: 1;\n color: rgba(var(--bs-body-rgb), var(--bs-text-opacity)) !important;\n}\n\n.text-muted {\n --bs-text-opacity: 1;\n color: #6c757d !important;\n}\n\n.text-black-50 {\n --bs-text-opacity: 1;\n color: rgba(0, 0, 0, 0.5) !important;\n}\n\n.text-white-50 {\n --bs-text-opacity: 1;\n color: rgba(255, 255, 255, 0.5) !important;\n}\n\n.text-reset {\n --bs-text-opacity: 1;\n color: inherit !important;\n}\n\n.text-opacity-25 {\n --bs-text-opacity: 0.25;\n}\n\n.text-opacity-50 {\n --bs-text-opacity: 0.5;\n}\n\n.text-opacity-75 {\n --bs-text-opacity: 0.75;\n}\n\n.text-opacity-100 {\n --bs-text-opacity: 1;\n}\n\n.bg-primary {\n --bs-bg-opacity: 1;\n background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;\n}\n\n.bg-secondary {\n --bs-bg-opacity: 1;\n background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;\n}\n\n.bg-success {\n --bs-bg-opacity: 1;\n background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;\n}\n\n.bg-info {\n --bs-bg-opacity: 1;\n background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;\n}\n\n.bg-warning {\n --bs-bg-opacity: 1;\n background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;\n}\n\n.bg-danger {\n --bs-bg-opacity: 1;\n background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;\n}\n\n.bg-light {\n --bs-bg-opacity: 1;\n background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;\n}\n\n.bg-dark {\n --bs-bg-opacity: 1;\n background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;\n}\n\n.bg-black {\n --bs-bg-opacity: 1;\n background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;\n}\n\n.bg-white {\n --bs-bg-opacity: 1;\n background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;\n}\n\n.bg-body {\n --bs-bg-opacity: 1;\n background-color: rgba(var(--bs-body-rgb), var(--bs-bg-opacity)) !important;\n}\n\n.bg-transparent {\n --bs-bg-opacity: 1;\n background-color: transparent !important;\n}\n\n.bg-opacity-10 {\n --bs-bg-opacity: 0.1;\n}\n\n.bg-opacity-25 {\n --bs-bg-opacity: 0.25;\n}\n\n.bg-opacity-50 {\n --bs-bg-opacity: 0.5;\n}\n\n.bg-opacity-75 {\n --bs-bg-opacity: 0.75;\n}\n\n.bg-opacity-100 {\n --bs-bg-opacity: 1;\n}\n\n.bg-gradient {\n background-image: var(--bs-gradient) !important;\n}\n\n.user-select-all {\n -webkit-user-select: all !important;\n -moz-user-select: all !important;\n user-select: all !important;\n}\n\n.user-select-auto {\n -webkit-user-select: auto !important;\n -moz-user-select: auto !important;\n user-select: auto !important;\n}\n\n.user-select-none {\n -webkit-user-select: none !important;\n -moz-user-select: none !important;\n user-select: none !important;\n}\n\n.pe-none {\n pointer-events: none !important;\n}\n\n.pe-auto {\n pointer-events: auto !important;\n}\n\n.rounded {\n border-radius: 0.25rem !important;\n}\n\n.rounded-0 {\n border-radius: 0 !important;\n}\n\n.rounded-1 {\n border-radius: 0.2rem !important;\n}\n\n.rounded-2 {\n border-radius: 0.25rem !important;\n}\n\n.rounded-3 {\n border-radius: 0.3rem !important;\n}\n\n.rounded-circle {\n border-radius: 50% !important;\n}\n\n.rounded-pill {\n border-radius: 50rem !important;\n}\n\n.rounded-top {\n border-top-left-radius: 0.25rem !important;\n border-top-right-radius: 0.25rem !important;\n}\n\n.rounded-end {\n border-top-right-radius: 0.25rem !important;\n border-bottom-right-radius: 0.25rem !important;\n}\n\n.rounded-bottom {\n border-bottom-right-radius: 0.25rem !important;\n border-bottom-left-radius: 0.25rem !important;\n}\n\n.rounded-start {\n border-bottom-left-radius: 0.25rem !important;\n border-top-left-radius: 0.25rem !important;\n}\n\n.visible {\n visibility: visible !important;\n}\n\n.invisible {\n visibility: hidden !important;\n}\n\n@media (min-width: 576px) {\n .float-sm-start {\n float: left !important;\n }\n\n .float-sm-end {\n float: right !important;\n }\n\n .float-sm-none {\n float: none !important;\n }\n\n .d-sm-inline {\n display: inline !important;\n }\n\n .d-sm-inline-block {\n display: inline-block !important;\n }\n\n .d-sm-block {\n display: block !important;\n }\n\n .d-sm-grid {\n display: grid !important;\n }\n\n .d-sm-table {\n display: table !important;\n }\n\n .d-sm-table-row {\n display: table-row !important;\n }\n\n .d-sm-table-cell {\n display: table-cell !important;\n }\n\n .d-sm-flex {\n display: flex !important;\n }\n\n .d-sm-inline-flex {\n display: inline-flex !important;\n }\n\n .d-sm-none {\n display: none !important;\n }\n\n .flex-sm-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-sm-row {\n flex-direction: row !important;\n }\n\n .flex-sm-column {\n flex-direction: column !important;\n }\n\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-sm-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-sm-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-sm-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-sm-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-sm-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-sm-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .gap-sm-0 {\n gap: 0 !important;\n }\n\n .gap-sm-1 {\n gap: 0.25rem !important;\n }\n\n .gap-sm-2 {\n gap: 0.5rem !important;\n }\n\n .gap-sm-3 {\n gap: 1rem !important;\n }\n\n .gap-sm-4 {\n gap: 1.5rem !important;\n }\n\n .gap-sm-5 {\n gap: 3rem !important;\n }\n\n .justify-content-sm-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-sm-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-sm-center {\n justify-content: center !important;\n }\n\n .justify-content-sm-between {\n justify-content: space-between !important;\n }\n\n .justify-content-sm-around {\n justify-content: space-around !important;\n }\n\n .justify-content-sm-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-sm-start {\n align-items: flex-start !important;\n }\n\n .align-items-sm-end {\n align-items: flex-end !important;\n }\n\n .align-items-sm-center {\n align-items: center !important;\n }\n\n .align-items-sm-baseline {\n align-items: baseline !important;\n }\n\n .align-items-sm-stretch {\n align-items: stretch !important;\n }\n\n .align-content-sm-start {\n align-content: flex-start !important;\n }\n\n .align-content-sm-end {\n align-content: flex-end !important;\n }\n\n .align-content-sm-center {\n align-content: center !important;\n }\n\n .align-content-sm-between {\n align-content: space-between !important;\n }\n\n .align-content-sm-around {\n align-content: space-around !important;\n }\n\n .align-content-sm-stretch {\n align-content: stretch !important;\n }\n\n .align-self-sm-auto {\n align-self: auto !important;\n }\n\n .align-self-sm-start {\n align-self: flex-start !important;\n }\n\n .align-self-sm-end {\n align-self: flex-end !important;\n }\n\n .align-self-sm-center {\n align-self: center !important;\n }\n\n .align-self-sm-baseline {\n align-self: baseline !important;\n }\n\n .align-self-sm-stretch {\n align-self: stretch !important;\n }\n\n .order-sm-first {\n order: -1 !important;\n }\n\n .order-sm-0 {\n order: 0 !important;\n }\n\n .order-sm-1 {\n order: 1 !important;\n }\n\n .order-sm-2 {\n order: 2 !important;\n }\n\n .order-sm-3 {\n order: 3 !important;\n }\n\n .order-sm-4 {\n order: 4 !important;\n }\n\n .order-sm-5 {\n order: 5 !important;\n }\n\n .order-sm-last {\n order: 6 !important;\n }\n\n .m-sm-0 {\n margin: 0 !important;\n }\n\n .m-sm-1 {\n margin: 0.25rem !important;\n }\n\n .m-sm-2 {\n margin: 0.5rem !important;\n }\n\n .m-sm-3 {\n margin: 1rem !important;\n }\n\n .m-sm-4 {\n margin: 1.5rem !important;\n }\n\n .m-sm-5 {\n margin: 3rem !important;\n }\n\n .m-sm-auto {\n margin: auto !important;\n }\n\n .mx-sm-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n\n .mx-sm-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n\n .mx-sm-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n\n .mx-sm-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n\n .mx-sm-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n\n .mx-sm-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n\n .mx-sm-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n .my-sm-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-sm-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-sm-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-sm-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-sm-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-sm-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-sm-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-sm-0 {\n margin-top: 0 !important;\n }\n\n .mt-sm-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-sm-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-sm-3 {\n margin-top: 1rem !important;\n }\n\n .mt-sm-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-sm-5 {\n margin-top: 3rem !important;\n }\n\n .mt-sm-auto {\n margin-top: auto !important;\n }\n\n .me-sm-0 {\n margin-right: 0 !important;\n }\n\n .me-sm-1 {\n margin-right: 0.25rem !important;\n }\n\n .me-sm-2 {\n margin-right: 0.5rem !important;\n }\n\n .me-sm-3 {\n margin-right: 1rem !important;\n }\n\n .me-sm-4 {\n margin-right: 1.5rem !important;\n }\n\n .me-sm-5 {\n margin-right: 3rem !important;\n }\n\n .me-sm-auto {\n margin-right: auto !important;\n }\n\n .mb-sm-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-sm-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-sm-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-sm-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-sm-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-sm-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-sm-auto {\n margin-bottom: auto !important;\n }\n\n .ms-sm-0 {\n margin-left: 0 !important;\n }\n\n .ms-sm-1 {\n margin-left: 0.25rem !important;\n }\n\n .ms-sm-2 {\n margin-left: 0.5rem !important;\n }\n\n .ms-sm-3 {\n margin-left: 1rem !important;\n }\n\n .ms-sm-4 {\n margin-left: 1.5rem !important;\n }\n\n .ms-sm-5 {\n margin-left: 3rem !important;\n }\n\n .ms-sm-auto {\n margin-left: auto !important;\n }\n\n .p-sm-0 {\n padding: 0 !important;\n }\n\n .p-sm-1 {\n padding: 0.25rem !important;\n }\n\n .p-sm-2 {\n padding: 0.5rem !important;\n }\n\n .p-sm-3 {\n padding: 1rem !important;\n }\n\n .p-sm-4 {\n padding: 1.5rem !important;\n }\n\n .p-sm-5 {\n padding: 3rem !important;\n }\n\n .px-sm-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n\n .px-sm-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n\n .px-sm-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n\n .px-sm-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n\n .px-sm-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n\n .px-sm-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n\n .py-sm-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-sm-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-sm-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-sm-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-sm-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-sm-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-sm-0 {\n padding-top: 0 !important;\n }\n\n .pt-sm-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-sm-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-sm-3 {\n padding-top: 1rem !important;\n }\n\n .pt-sm-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-sm-5 {\n padding-top: 3rem !important;\n }\n\n .pe-sm-0 {\n padding-right: 0 !important;\n }\n\n .pe-sm-1 {\n padding-right: 0.25rem !important;\n }\n\n .pe-sm-2 {\n padding-right: 0.5rem !important;\n }\n\n .pe-sm-3 {\n padding-right: 1rem !important;\n }\n\n .pe-sm-4 {\n padding-right: 1.5rem !important;\n }\n\n .pe-sm-5 {\n padding-right: 3rem !important;\n }\n\n .pb-sm-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-sm-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-sm-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-sm-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-sm-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-sm-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-sm-0 {\n padding-left: 0 !important;\n }\n\n .ps-sm-1 {\n padding-left: 0.25rem !important;\n }\n\n .ps-sm-2 {\n padding-left: 0.5rem !important;\n }\n\n .ps-sm-3 {\n padding-left: 1rem !important;\n }\n\n .ps-sm-4 {\n padding-left: 1.5rem !important;\n }\n\n .ps-sm-5 {\n padding-left: 3rem !important;\n }\n\n .text-sm-start {\n text-align: left !important;\n }\n\n .text-sm-end {\n text-align: right !important;\n }\n\n .text-sm-center {\n text-align: center !important;\n }\n}\n@media (min-width: 768px) {\n .float-md-start {\n float: left !important;\n }\n\n .float-md-end {\n float: right !important;\n }\n\n .float-md-none {\n float: none !important;\n }\n\n .d-md-inline {\n display: inline !important;\n }\n\n .d-md-inline-block {\n display: inline-block !important;\n }\n\n .d-md-block {\n display: block !important;\n }\n\n .d-md-grid {\n display: grid !important;\n }\n\n .d-md-table {\n display: table !important;\n }\n\n .d-md-table-row {\n display: table-row !important;\n }\n\n .d-md-table-cell {\n display: table-cell !important;\n }\n\n .d-md-flex {\n display: flex !important;\n }\n\n .d-md-inline-flex {\n display: inline-flex !important;\n }\n\n .d-md-none {\n display: none !important;\n }\n\n .flex-md-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-md-row {\n flex-direction: row !important;\n }\n\n .flex-md-column {\n flex-direction: column !important;\n }\n\n .flex-md-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-md-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-md-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-md-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-md-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-md-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-md-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-md-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .gap-md-0 {\n gap: 0 !important;\n }\n\n .gap-md-1 {\n gap: 0.25rem !important;\n }\n\n .gap-md-2 {\n gap: 0.5rem !important;\n }\n\n .gap-md-3 {\n gap: 1rem !important;\n }\n\n .gap-md-4 {\n gap: 1.5rem !important;\n }\n\n .gap-md-5 {\n gap: 3rem !important;\n }\n\n .justify-content-md-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-md-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-md-center {\n justify-content: center !important;\n }\n\n .justify-content-md-between {\n justify-content: space-between !important;\n }\n\n .justify-content-md-around {\n justify-content: space-around !important;\n }\n\n .justify-content-md-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-md-start {\n align-items: flex-start !important;\n }\n\n .align-items-md-end {\n align-items: flex-end !important;\n }\n\n .align-items-md-center {\n align-items: center !important;\n }\n\n .align-items-md-baseline {\n align-items: baseline !important;\n }\n\n .align-items-md-stretch {\n align-items: stretch !important;\n }\n\n .align-content-md-start {\n align-content: flex-start !important;\n }\n\n .align-content-md-end {\n align-content: flex-end !important;\n }\n\n .align-content-md-center {\n align-content: center !important;\n }\n\n .align-content-md-between {\n align-content: space-between !important;\n }\n\n .align-content-md-around {\n align-content: space-around !important;\n }\n\n .align-content-md-stretch {\n align-content: stretch !important;\n }\n\n .align-self-md-auto {\n align-self: auto !important;\n }\n\n .align-self-md-start {\n align-self: flex-start !important;\n }\n\n .align-self-md-end {\n align-self: flex-end !important;\n }\n\n .align-self-md-center {\n align-self: center !important;\n }\n\n .align-self-md-baseline {\n align-self: baseline !important;\n }\n\n .align-self-md-stretch {\n align-self: stretch !important;\n }\n\n .order-md-first {\n order: -1 !important;\n }\n\n .order-md-0 {\n order: 0 !important;\n }\n\n .order-md-1 {\n order: 1 !important;\n }\n\n .order-md-2 {\n order: 2 !important;\n }\n\n .order-md-3 {\n order: 3 !important;\n }\n\n .order-md-4 {\n order: 4 !important;\n }\n\n .order-md-5 {\n order: 5 !important;\n }\n\n .order-md-last {\n order: 6 !important;\n }\n\n .m-md-0 {\n margin: 0 !important;\n }\n\n .m-md-1 {\n margin: 0.25rem !important;\n }\n\n .m-md-2 {\n margin: 0.5rem !important;\n }\n\n .m-md-3 {\n margin: 1rem !important;\n }\n\n .m-md-4 {\n margin: 1.5rem !important;\n }\n\n .m-md-5 {\n margin: 3rem !important;\n }\n\n .m-md-auto {\n margin: auto !important;\n }\n\n .mx-md-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n\n .mx-md-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n\n .mx-md-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n\n .mx-md-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n\n .mx-md-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n\n .mx-md-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n\n .mx-md-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n .my-md-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-md-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-md-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-md-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-md-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-md-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-md-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-md-0 {\n margin-top: 0 !important;\n }\n\n .mt-md-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-md-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-md-3 {\n margin-top: 1rem !important;\n }\n\n .mt-md-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-md-5 {\n margin-top: 3rem !important;\n }\n\n .mt-md-auto {\n margin-top: auto !important;\n }\n\n .me-md-0 {\n margin-right: 0 !important;\n }\n\n .me-md-1 {\n margin-right: 0.25rem !important;\n }\n\n .me-md-2 {\n margin-right: 0.5rem !important;\n }\n\n .me-md-3 {\n margin-right: 1rem !important;\n }\n\n .me-md-4 {\n margin-right: 1.5rem !important;\n }\n\n .me-md-5 {\n margin-right: 3rem !important;\n }\n\n .me-md-auto {\n margin-right: auto !important;\n }\n\n .mb-md-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-md-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-md-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-md-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-md-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-md-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-md-auto {\n margin-bottom: auto !important;\n }\n\n .ms-md-0 {\n margin-left: 0 !important;\n }\n\n .ms-md-1 {\n margin-left: 0.25rem !important;\n }\n\n .ms-md-2 {\n margin-left: 0.5rem !important;\n }\n\n .ms-md-3 {\n margin-left: 1rem !important;\n }\n\n .ms-md-4 {\n margin-left: 1.5rem !important;\n }\n\n .ms-md-5 {\n margin-left: 3rem !important;\n }\n\n .ms-md-auto {\n margin-left: auto !important;\n }\n\n .p-md-0 {\n padding: 0 !important;\n }\n\n .p-md-1 {\n padding: 0.25rem !important;\n }\n\n .p-md-2 {\n padding: 0.5rem !important;\n }\n\n .p-md-3 {\n padding: 1rem !important;\n }\n\n .p-md-4 {\n padding: 1.5rem !important;\n }\n\n .p-md-5 {\n padding: 3rem !important;\n }\n\n .px-md-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n\n .px-md-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n\n .px-md-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n\n .px-md-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n\n .px-md-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n\n .px-md-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n\n .py-md-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-md-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-md-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-md-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-md-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-md-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-md-0 {\n padding-top: 0 !important;\n }\n\n .pt-md-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-md-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-md-3 {\n padding-top: 1rem !important;\n }\n\n .pt-md-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-md-5 {\n padding-top: 3rem !important;\n }\n\n .pe-md-0 {\n padding-right: 0 !important;\n }\n\n .pe-md-1 {\n padding-right: 0.25rem !important;\n }\n\n .pe-md-2 {\n padding-right: 0.5rem !important;\n }\n\n .pe-md-3 {\n padding-right: 1rem !important;\n }\n\n .pe-md-4 {\n padding-right: 1.5rem !important;\n }\n\n .pe-md-5 {\n padding-right: 3rem !important;\n }\n\n .pb-md-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-md-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-md-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-md-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-md-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-md-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-md-0 {\n padding-left: 0 !important;\n }\n\n .ps-md-1 {\n padding-left: 0.25rem !important;\n }\n\n .ps-md-2 {\n padding-left: 0.5rem !important;\n }\n\n .ps-md-3 {\n padding-left: 1rem !important;\n }\n\n .ps-md-4 {\n padding-left: 1.5rem !important;\n }\n\n .ps-md-5 {\n padding-left: 3rem !important;\n }\n\n .text-md-start {\n text-align: left !important;\n }\n\n .text-md-end {\n text-align: right !important;\n }\n\n .text-md-center {\n text-align: center !important;\n }\n}\n@media (min-width: 992px) {\n .float-lg-start {\n float: left !important;\n }\n\n .float-lg-end {\n float: right !important;\n }\n\n .float-lg-none {\n float: none !important;\n }\n\n .d-lg-inline {\n display: inline !important;\n }\n\n .d-lg-inline-block {\n display: inline-block !important;\n }\n\n .d-lg-block {\n display: block !important;\n }\n\n .d-lg-grid {\n display: grid !important;\n }\n\n .d-lg-table {\n display: table !important;\n }\n\n .d-lg-table-row {\n display: table-row !important;\n }\n\n .d-lg-table-cell {\n display: table-cell !important;\n }\n\n .d-lg-flex {\n display: flex !important;\n }\n\n .d-lg-inline-flex {\n display: inline-flex !important;\n }\n\n .d-lg-none {\n display: none !important;\n }\n\n .flex-lg-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-lg-row {\n flex-direction: row !important;\n }\n\n .flex-lg-column {\n flex-direction: column !important;\n }\n\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-lg-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-lg-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-lg-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-lg-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-lg-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-lg-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .gap-lg-0 {\n gap: 0 !important;\n }\n\n .gap-lg-1 {\n gap: 0.25rem !important;\n }\n\n .gap-lg-2 {\n gap: 0.5rem !important;\n }\n\n .gap-lg-3 {\n gap: 1rem !important;\n }\n\n .gap-lg-4 {\n gap: 1.5rem !important;\n }\n\n .gap-lg-5 {\n gap: 3rem !important;\n }\n\n .justify-content-lg-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-lg-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-lg-center {\n justify-content: center !important;\n }\n\n .justify-content-lg-between {\n justify-content: space-between !important;\n }\n\n .justify-content-lg-around {\n justify-content: space-around !important;\n }\n\n .justify-content-lg-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-lg-start {\n align-items: flex-start !important;\n }\n\n .align-items-lg-end {\n align-items: flex-end !important;\n }\n\n .align-items-lg-center {\n align-items: center !important;\n }\n\n .align-items-lg-baseline {\n align-items: baseline !important;\n }\n\n .align-items-lg-stretch {\n align-items: stretch !important;\n }\n\n .align-content-lg-start {\n align-content: flex-start !important;\n }\n\n .align-content-lg-end {\n align-content: flex-end !important;\n }\n\n .align-content-lg-center {\n align-content: center !important;\n }\n\n .align-content-lg-between {\n align-content: space-between !important;\n }\n\n .align-content-lg-around {\n align-content: space-around !important;\n }\n\n .align-content-lg-stretch {\n align-content: stretch !important;\n }\n\n .align-self-lg-auto {\n align-self: auto !important;\n }\n\n .align-self-lg-start {\n align-self: flex-start !important;\n }\n\n .align-self-lg-end {\n align-self: flex-end !important;\n }\n\n .align-self-lg-center {\n align-self: center !important;\n }\n\n .align-self-lg-baseline {\n align-self: baseline !important;\n }\n\n .align-self-lg-stretch {\n align-self: stretch !important;\n }\n\n .order-lg-first {\n order: -1 !important;\n }\n\n .order-lg-0 {\n order: 0 !important;\n }\n\n .order-lg-1 {\n order: 1 !important;\n }\n\n .order-lg-2 {\n order: 2 !important;\n }\n\n .order-lg-3 {\n order: 3 !important;\n }\n\n .order-lg-4 {\n order: 4 !important;\n }\n\n .order-lg-5 {\n order: 5 !important;\n }\n\n .order-lg-last {\n order: 6 !important;\n }\n\n .m-lg-0 {\n margin: 0 !important;\n }\n\n .m-lg-1 {\n margin: 0.25rem !important;\n }\n\n .m-lg-2 {\n margin: 0.5rem !important;\n }\n\n .m-lg-3 {\n margin: 1rem !important;\n }\n\n .m-lg-4 {\n margin: 1.5rem !important;\n }\n\n .m-lg-5 {\n margin: 3rem !important;\n }\n\n .m-lg-auto {\n margin: auto !important;\n }\n\n .mx-lg-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n\n .mx-lg-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n\n .mx-lg-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n\n .mx-lg-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n\n .mx-lg-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n\n .mx-lg-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n\n .mx-lg-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n .my-lg-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-lg-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-lg-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-lg-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-lg-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-lg-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-lg-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-lg-0 {\n margin-top: 0 !important;\n }\n\n .mt-lg-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-lg-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-lg-3 {\n margin-top: 1rem !important;\n }\n\n .mt-lg-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-lg-5 {\n margin-top: 3rem !important;\n }\n\n .mt-lg-auto {\n margin-top: auto !important;\n }\n\n .me-lg-0 {\n margin-right: 0 !important;\n }\n\n .me-lg-1 {\n margin-right: 0.25rem !important;\n }\n\n .me-lg-2 {\n margin-right: 0.5rem !important;\n }\n\n .me-lg-3 {\n margin-right: 1rem !important;\n }\n\n .me-lg-4 {\n margin-right: 1.5rem !important;\n }\n\n .me-lg-5 {\n margin-right: 3rem !important;\n }\n\n .me-lg-auto {\n margin-right: auto !important;\n }\n\n .mb-lg-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-lg-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-lg-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-lg-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-lg-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-lg-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-lg-auto {\n margin-bottom: auto !important;\n }\n\n .ms-lg-0 {\n margin-left: 0 !important;\n }\n\n .ms-lg-1 {\n margin-left: 0.25rem !important;\n }\n\n .ms-lg-2 {\n margin-left: 0.5rem !important;\n }\n\n .ms-lg-3 {\n margin-left: 1rem !important;\n }\n\n .ms-lg-4 {\n margin-left: 1.5rem !important;\n }\n\n .ms-lg-5 {\n margin-left: 3rem !important;\n }\n\n .ms-lg-auto {\n margin-left: auto !important;\n }\n\n .p-lg-0 {\n padding: 0 !important;\n }\n\n .p-lg-1 {\n padding: 0.25rem !important;\n }\n\n .p-lg-2 {\n padding: 0.5rem !important;\n }\n\n .p-lg-3 {\n padding: 1rem !important;\n }\n\n .p-lg-4 {\n padding: 1.5rem !important;\n }\n\n .p-lg-5 {\n padding: 3rem !important;\n }\n\n .px-lg-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n\n .px-lg-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n\n .px-lg-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n\n .px-lg-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n\n .px-lg-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n\n .px-lg-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n\n .py-lg-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-lg-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-lg-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-lg-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-lg-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-lg-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-lg-0 {\n padding-top: 0 !important;\n }\n\n .pt-lg-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-lg-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-lg-3 {\n padding-top: 1rem !important;\n }\n\n .pt-lg-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-lg-5 {\n padding-top: 3rem !important;\n }\n\n .pe-lg-0 {\n padding-right: 0 !important;\n }\n\n .pe-lg-1 {\n padding-right: 0.25rem !important;\n }\n\n .pe-lg-2 {\n padding-right: 0.5rem !important;\n }\n\n .pe-lg-3 {\n padding-right: 1rem !important;\n }\n\n .pe-lg-4 {\n padding-right: 1.5rem !important;\n }\n\n .pe-lg-5 {\n padding-right: 3rem !important;\n }\n\n .pb-lg-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-lg-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-lg-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-lg-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-lg-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-lg-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-lg-0 {\n padding-left: 0 !important;\n }\n\n .ps-lg-1 {\n padding-left: 0.25rem !important;\n }\n\n .ps-lg-2 {\n padding-left: 0.5rem !important;\n }\n\n .ps-lg-3 {\n padding-left: 1rem !important;\n }\n\n .ps-lg-4 {\n padding-left: 1.5rem !important;\n }\n\n .ps-lg-5 {\n padding-left: 3rem !important;\n }\n\n .text-lg-start {\n text-align: left !important;\n }\n\n .text-lg-end {\n text-align: right !important;\n }\n\n .text-lg-center {\n text-align: center !important;\n }\n}\n@media (min-width: 1200px) {\n .float-xl-start {\n float: left !important;\n }\n\n .float-xl-end {\n float: right !important;\n }\n\n .float-xl-none {\n float: none !important;\n }\n\n .d-xl-inline {\n display: inline !important;\n }\n\n .d-xl-inline-block {\n display: inline-block !important;\n }\n\n .d-xl-block {\n display: block !important;\n }\n\n .d-xl-grid {\n display: grid !important;\n }\n\n .d-xl-table {\n display: table !important;\n }\n\n .d-xl-table-row {\n display: table-row !important;\n }\n\n .d-xl-table-cell {\n display: table-cell !important;\n }\n\n .d-xl-flex {\n display: flex !important;\n }\n\n .d-xl-inline-flex {\n display: inline-flex !important;\n }\n\n .d-xl-none {\n display: none !important;\n }\n\n .flex-xl-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-xl-row {\n flex-direction: row !important;\n }\n\n .flex-xl-column {\n flex-direction: column !important;\n }\n\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-xl-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-xl-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-xl-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-xl-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-xl-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-xl-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .gap-xl-0 {\n gap: 0 !important;\n }\n\n .gap-xl-1 {\n gap: 0.25rem !important;\n }\n\n .gap-xl-2 {\n gap: 0.5rem !important;\n }\n\n .gap-xl-3 {\n gap: 1rem !important;\n }\n\n .gap-xl-4 {\n gap: 1.5rem !important;\n }\n\n .gap-xl-5 {\n gap: 3rem !important;\n }\n\n .justify-content-xl-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-xl-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-xl-center {\n justify-content: center !important;\n }\n\n .justify-content-xl-between {\n justify-content: space-between !important;\n }\n\n .justify-content-xl-around {\n justify-content: space-around !important;\n }\n\n .justify-content-xl-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-xl-start {\n align-items: flex-start !important;\n }\n\n .align-items-xl-end {\n align-items: flex-end !important;\n }\n\n .align-items-xl-center {\n align-items: center !important;\n }\n\n .align-items-xl-baseline {\n align-items: baseline !important;\n }\n\n .align-items-xl-stretch {\n align-items: stretch !important;\n }\n\n .align-content-xl-start {\n align-content: flex-start !important;\n }\n\n .align-content-xl-end {\n align-content: flex-end !important;\n }\n\n .align-content-xl-center {\n align-content: center !important;\n }\n\n .align-content-xl-between {\n align-content: space-between !important;\n }\n\n .align-content-xl-around {\n align-content: space-around !important;\n }\n\n .align-content-xl-stretch {\n align-content: stretch !important;\n }\n\n .align-self-xl-auto {\n align-self: auto !important;\n }\n\n .align-self-xl-start {\n align-self: flex-start !important;\n }\n\n .align-self-xl-end {\n align-self: flex-end !important;\n }\n\n .align-self-xl-center {\n align-self: center !important;\n }\n\n .align-self-xl-baseline {\n align-self: baseline !important;\n }\n\n .align-self-xl-stretch {\n align-self: stretch !important;\n }\n\n .order-xl-first {\n order: -1 !important;\n }\n\n .order-xl-0 {\n order: 0 !important;\n }\n\n .order-xl-1 {\n order: 1 !important;\n }\n\n .order-xl-2 {\n order: 2 !important;\n }\n\n .order-xl-3 {\n order: 3 !important;\n }\n\n .order-xl-4 {\n order: 4 !important;\n }\n\n .order-xl-5 {\n order: 5 !important;\n }\n\n .order-xl-last {\n order: 6 !important;\n }\n\n .m-xl-0 {\n margin: 0 !important;\n }\n\n .m-xl-1 {\n margin: 0.25rem !important;\n }\n\n .m-xl-2 {\n margin: 0.5rem !important;\n }\n\n .m-xl-3 {\n margin: 1rem !important;\n }\n\n .m-xl-4 {\n margin: 1.5rem !important;\n }\n\n .m-xl-5 {\n margin: 3rem !important;\n }\n\n .m-xl-auto {\n margin: auto !important;\n }\n\n .mx-xl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n\n .mx-xl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n\n .mx-xl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n\n .mx-xl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n\n .mx-xl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n\n .mx-xl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n\n .mx-xl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n .my-xl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-xl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-xl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-xl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-xl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-xl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-xl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-xl-0 {\n margin-top: 0 !important;\n }\n\n .mt-xl-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-xl-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-xl-3 {\n margin-top: 1rem !important;\n }\n\n .mt-xl-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-xl-5 {\n margin-top: 3rem !important;\n }\n\n .mt-xl-auto {\n margin-top: auto !important;\n }\n\n .me-xl-0 {\n margin-right: 0 !important;\n }\n\n .me-xl-1 {\n margin-right: 0.25rem !important;\n }\n\n .me-xl-2 {\n margin-right: 0.5rem !important;\n }\n\n .me-xl-3 {\n margin-right: 1rem !important;\n }\n\n .me-xl-4 {\n margin-right: 1.5rem !important;\n }\n\n .me-xl-5 {\n margin-right: 3rem !important;\n }\n\n .me-xl-auto {\n margin-right: auto !important;\n }\n\n .mb-xl-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-xl-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-xl-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-xl-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-xl-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-xl-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-xl-auto {\n margin-bottom: auto !important;\n }\n\n .ms-xl-0 {\n margin-left: 0 !important;\n }\n\n .ms-xl-1 {\n margin-left: 0.25rem !important;\n }\n\n .ms-xl-2 {\n margin-left: 0.5rem !important;\n }\n\n .ms-xl-3 {\n margin-left: 1rem !important;\n }\n\n .ms-xl-4 {\n margin-left: 1.5rem !important;\n }\n\n .ms-xl-5 {\n margin-left: 3rem !important;\n }\n\n .ms-xl-auto {\n margin-left: auto !important;\n }\n\n .p-xl-0 {\n padding: 0 !important;\n }\n\n .p-xl-1 {\n padding: 0.25rem !important;\n }\n\n .p-xl-2 {\n padding: 0.5rem !important;\n }\n\n .p-xl-3 {\n padding: 1rem !important;\n }\n\n .p-xl-4 {\n padding: 1.5rem !important;\n }\n\n .p-xl-5 {\n padding: 3rem !important;\n }\n\n .px-xl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n\n .px-xl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n\n .px-xl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n\n .px-xl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n\n .px-xl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n\n .px-xl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n\n .py-xl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-xl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-xl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-xl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-xl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-xl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-xl-0 {\n padding-top: 0 !important;\n }\n\n .pt-xl-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-xl-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-xl-3 {\n padding-top: 1rem !important;\n }\n\n .pt-xl-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-xl-5 {\n padding-top: 3rem !important;\n }\n\n .pe-xl-0 {\n padding-right: 0 !important;\n }\n\n .pe-xl-1 {\n padding-right: 0.25rem !important;\n }\n\n .pe-xl-2 {\n padding-right: 0.5rem !important;\n }\n\n .pe-xl-3 {\n padding-right: 1rem !important;\n }\n\n .pe-xl-4 {\n padding-right: 1.5rem !important;\n }\n\n .pe-xl-5 {\n padding-right: 3rem !important;\n }\n\n .pb-xl-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-xl-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-xl-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-xl-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-xl-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-xl-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-xl-0 {\n padding-left: 0 !important;\n }\n\n .ps-xl-1 {\n padding-left: 0.25rem !important;\n }\n\n .ps-xl-2 {\n padding-left: 0.5rem !important;\n }\n\n .ps-xl-3 {\n padding-left: 1rem !important;\n }\n\n .ps-xl-4 {\n padding-left: 1.5rem !important;\n }\n\n .ps-xl-5 {\n padding-left: 3rem !important;\n }\n\n .text-xl-start {\n text-align: left !important;\n }\n\n .text-xl-end {\n text-align: right !important;\n }\n\n .text-xl-center {\n text-align: center !important;\n }\n}\n@media (min-width: 1400px) {\n .float-xxl-start {\n float: left !important;\n }\n\n .float-xxl-end {\n float: right !important;\n }\n\n .float-xxl-none {\n float: none !important;\n }\n\n .d-xxl-inline {\n display: inline !important;\n }\n\n .d-xxl-inline-block {\n display: inline-block !important;\n }\n\n .d-xxl-block {\n display: block !important;\n }\n\n .d-xxl-grid {\n display: grid !important;\n }\n\n .d-xxl-table {\n display: table !important;\n }\n\n .d-xxl-table-row {\n display: table-row !important;\n }\n\n .d-xxl-table-cell {\n display: table-cell !important;\n }\n\n .d-xxl-flex {\n display: flex !important;\n }\n\n .d-xxl-inline-flex {\n display: inline-flex !important;\n }\n\n .d-xxl-none {\n display: none !important;\n }\n\n .flex-xxl-fill {\n flex: 1 1 auto !important;\n }\n\n .flex-xxl-row {\n flex-direction: row !important;\n }\n\n .flex-xxl-column {\n flex-direction: column !important;\n }\n\n .flex-xxl-row-reverse {\n flex-direction: row-reverse !important;\n }\n\n .flex-xxl-column-reverse {\n flex-direction: column-reverse !important;\n }\n\n .flex-xxl-grow-0 {\n flex-grow: 0 !important;\n }\n\n .flex-xxl-grow-1 {\n flex-grow: 1 !important;\n }\n\n .flex-xxl-shrink-0 {\n flex-shrink: 0 !important;\n }\n\n .flex-xxl-shrink-1 {\n flex-shrink: 1 !important;\n }\n\n .flex-xxl-wrap {\n flex-wrap: wrap !important;\n }\n\n .flex-xxl-nowrap {\n flex-wrap: nowrap !important;\n }\n\n .flex-xxl-wrap-reverse {\n flex-wrap: wrap-reverse !important;\n }\n\n .gap-xxl-0 {\n gap: 0 !important;\n }\n\n .gap-xxl-1 {\n gap: 0.25rem !important;\n }\n\n .gap-xxl-2 {\n gap: 0.5rem !important;\n }\n\n .gap-xxl-3 {\n gap: 1rem !important;\n }\n\n .gap-xxl-4 {\n gap: 1.5rem !important;\n }\n\n .gap-xxl-5 {\n gap: 3rem !important;\n }\n\n .justify-content-xxl-start {\n justify-content: flex-start !important;\n }\n\n .justify-content-xxl-end {\n justify-content: flex-end !important;\n }\n\n .justify-content-xxl-center {\n justify-content: center !important;\n }\n\n .justify-content-xxl-between {\n justify-content: space-between !important;\n }\n\n .justify-content-xxl-around {\n justify-content: space-around !important;\n }\n\n .justify-content-xxl-evenly {\n justify-content: space-evenly !important;\n }\n\n .align-items-xxl-start {\n align-items: flex-start !important;\n }\n\n .align-items-xxl-end {\n align-items: flex-end !important;\n }\n\n .align-items-xxl-center {\n align-items: center !important;\n }\n\n .align-items-xxl-baseline {\n align-items: baseline !important;\n }\n\n .align-items-xxl-stretch {\n align-items: stretch !important;\n }\n\n .align-content-xxl-start {\n align-content: flex-start !important;\n }\n\n .align-content-xxl-end {\n align-content: flex-end !important;\n }\n\n .align-content-xxl-center {\n align-content: center !important;\n }\n\n .align-content-xxl-between {\n align-content: space-between !important;\n }\n\n .align-content-xxl-around {\n align-content: space-around !important;\n }\n\n .align-content-xxl-stretch {\n align-content: stretch !important;\n }\n\n .align-self-xxl-auto {\n align-self: auto !important;\n }\n\n .align-self-xxl-start {\n align-self: flex-start !important;\n }\n\n .align-self-xxl-end {\n align-self: flex-end !important;\n }\n\n .align-self-xxl-center {\n align-self: center !important;\n }\n\n .align-self-xxl-baseline {\n align-self: baseline !important;\n }\n\n .align-self-xxl-stretch {\n align-self: stretch !important;\n }\n\n .order-xxl-first {\n order: -1 !important;\n }\n\n .order-xxl-0 {\n order: 0 !important;\n }\n\n .order-xxl-1 {\n order: 1 !important;\n }\n\n .order-xxl-2 {\n order: 2 !important;\n }\n\n .order-xxl-3 {\n order: 3 !important;\n }\n\n .order-xxl-4 {\n order: 4 !important;\n }\n\n .order-xxl-5 {\n order: 5 !important;\n }\n\n .order-xxl-last {\n order: 6 !important;\n }\n\n .m-xxl-0 {\n margin: 0 !important;\n }\n\n .m-xxl-1 {\n margin: 0.25rem !important;\n }\n\n .m-xxl-2 {\n margin: 0.5rem !important;\n }\n\n .m-xxl-3 {\n margin: 1rem !important;\n }\n\n .m-xxl-4 {\n margin: 1.5rem !important;\n }\n\n .m-xxl-5 {\n margin: 3rem !important;\n }\n\n .m-xxl-auto {\n margin: auto !important;\n }\n\n .mx-xxl-0 {\n margin-right: 0 !important;\n margin-left: 0 !important;\n }\n\n .mx-xxl-1 {\n margin-right: 0.25rem !important;\n margin-left: 0.25rem !important;\n }\n\n .mx-xxl-2 {\n margin-right: 0.5rem !important;\n margin-left: 0.5rem !important;\n }\n\n .mx-xxl-3 {\n margin-right: 1rem !important;\n margin-left: 1rem !important;\n }\n\n .mx-xxl-4 {\n margin-right: 1.5rem !important;\n margin-left: 1.5rem !important;\n }\n\n .mx-xxl-5 {\n margin-right: 3rem !important;\n margin-left: 3rem !important;\n }\n\n .mx-xxl-auto {\n margin-right: auto !important;\n margin-left: auto !important;\n }\n\n .my-xxl-0 {\n margin-top: 0 !important;\n margin-bottom: 0 !important;\n }\n\n .my-xxl-1 {\n margin-top: 0.25rem !important;\n margin-bottom: 0.25rem !important;\n }\n\n .my-xxl-2 {\n margin-top: 0.5rem !important;\n margin-bottom: 0.5rem !important;\n }\n\n .my-xxl-3 {\n margin-top: 1rem !important;\n margin-bottom: 1rem !important;\n }\n\n .my-xxl-4 {\n margin-top: 1.5rem !important;\n margin-bottom: 1.5rem !important;\n }\n\n .my-xxl-5 {\n margin-top: 3rem !important;\n margin-bottom: 3rem !important;\n }\n\n .my-xxl-auto {\n margin-top: auto !important;\n margin-bottom: auto !important;\n }\n\n .mt-xxl-0 {\n margin-top: 0 !important;\n }\n\n .mt-xxl-1 {\n margin-top: 0.25rem !important;\n }\n\n .mt-xxl-2 {\n margin-top: 0.5rem !important;\n }\n\n .mt-xxl-3 {\n margin-top: 1rem !important;\n }\n\n .mt-xxl-4 {\n margin-top: 1.5rem !important;\n }\n\n .mt-xxl-5 {\n margin-top: 3rem !important;\n }\n\n .mt-xxl-auto {\n margin-top: auto !important;\n }\n\n .me-xxl-0 {\n margin-right: 0 !important;\n }\n\n .me-xxl-1 {\n margin-right: 0.25rem !important;\n }\n\n .me-xxl-2 {\n margin-right: 0.5rem !important;\n }\n\n .me-xxl-3 {\n margin-right: 1rem !important;\n }\n\n .me-xxl-4 {\n margin-right: 1.5rem !important;\n }\n\n .me-xxl-5 {\n margin-right: 3rem !important;\n }\n\n .me-xxl-auto {\n margin-right: auto !important;\n }\n\n .mb-xxl-0 {\n margin-bottom: 0 !important;\n }\n\n .mb-xxl-1 {\n margin-bottom: 0.25rem !important;\n }\n\n .mb-xxl-2 {\n margin-bottom: 0.5rem !important;\n }\n\n .mb-xxl-3 {\n margin-bottom: 1rem !important;\n }\n\n .mb-xxl-4 {\n margin-bottom: 1.5rem !important;\n }\n\n .mb-xxl-5 {\n margin-bottom: 3rem !important;\n }\n\n .mb-xxl-auto {\n margin-bottom: auto !important;\n }\n\n .ms-xxl-0 {\n margin-left: 0 !important;\n }\n\n .ms-xxl-1 {\n margin-left: 0.25rem !important;\n }\n\n .ms-xxl-2 {\n margin-left: 0.5rem !important;\n }\n\n .ms-xxl-3 {\n margin-left: 1rem !important;\n }\n\n .ms-xxl-4 {\n margin-left: 1.5rem !important;\n }\n\n .ms-xxl-5 {\n margin-left: 3rem !important;\n }\n\n .ms-xxl-auto {\n margin-left: auto !important;\n }\n\n .p-xxl-0 {\n padding: 0 !important;\n }\n\n .p-xxl-1 {\n padding: 0.25rem !important;\n }\n\n .p-xxl-2 {\n padding: 0.5rem !important;\n }\n\n .p-xxl-3 {\n padding: 1rem !important;\n }\n\n .p-xxl-4 {\n padding: 1.5rem !important;\n }\n\n .p-xxl-5 {\n padding: 3rem !important;\n }\n\n .px-xxl-0 {\n padding-right: 0 !important;\n padding-left: 0 !important;\n }\n\n .px-xxl-1 {\n padding-right: 0.25rem !important;\n padding-left: 0.25rem !important;\n }\n\n .px-xxl-2 {\n padding-right: 0.5rem !important;\n padding-left: 0.5rem !important;\n }\n\n .px-xxl-3 {\n padding-right: 1rem !important;\n padding-left: 1rem !important;\n }\n\n .px-xxl-4 {\n padding-right: 1.5rem !important;\n padding-left: 1.5rem !important;\n }\n\n .px-xxl-5 {\n padding-right: 3rem !important;\n padding-left: 3rem !important;\n }\n\n .py-xxl-0 {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n }\n\n .py-xxl-1 {\n padding-top: 0.25rem !important;\n padding-bottom: 0.25rem !important;\n }\n\n .py-xxl-2 {\n padding-top: 0.5rem !important;\n padding-bottom: 0.5rem !important;\n }\n\n .py-xxl-3 {\n padding-top: 1rem !important;\n padding-bottom: 1rem !important;\n }\n\n .py-xxl-4 {\n padding-top: 1.5rem !important;\n padding-bottom: 1.5rem !important;\n }\n\n .py-xxl-5 {\n padding-top: 3rem !important;\n padding-bottom: 3rem !important;\n }\n\n .pt-xxl-0 {\n padding-top: 0 !important;\n }\n\n .pt-xxl-1 {\n padding-top: 0.25rem !important;\n }\n\n .pt-xxl-2 {\n padding-top: 0.5rem !important;\n }\n\n .pt-xxl-3 {\n padding-top: 1rem !important;\n }\n\n .pt-xxl-4 {\n padding-top: 1.5rem !important;\n }\n\n .pt-xxl-5 {\n padding-top: 3rem !important;\n }\n\n .pe-xxl-0 {\n padding-right: 0 !important;\n }\n\n .pe-xxl-1 {\n padding-right: 0.25rem !important;\n }\n\n .pe-xxl-2 {\n padding-right: 0.5rem !important;\n }\n\n .pe-xxl-3 {\n padding-right: 1rem !important;\n }\n\n .pe-xxl-4 {\n padding-right: 1.5rem !important;\n }\n\n .pe-xxl-5 {\n padding-right: 3rem !important;\n }\n\n .pb-xxl-0 {\n padding-bottom: 0 !important;\n }\n\n .pb-xxl-1 {\n padding-bottom: 0.25rem !important;\n }\n\n .pb-xxl-2 {\n padding-bottom: 0.5rem !important;\n }\n\n .pb-xxl-3 {\n padding-bottom: 1rem !important;\n }\n\n .pb-xxl-4 {\n padding-bottom: 1.5rem !important;\n }\n\n .pb-xxl-5 {\n padding-bottom: 3rem !important;\n }\n\n .ps-xxl-0 {\n padding-left: 0 !important;\n }\n\n .ps-xxl-1 {\n padding-left: 0.25rem !important;\n }\n\n .ps-xxl-2 {\n padding-left: 0.5rem !important;\n }\n\n .ps-xxl-3 {\n padding-left: 1rem !important;\n }\n\n .ps-xxl-4 {\n padding-left: 1.5rem !important;\n }\n\n .ps-xxl-5 {\n padding-left: 3rem !important;\n }\n\n .text-xxl-start {\n text-align: left !important;\n }\n\n .text-xxl-end {\n text-align: right !important;\n }\n\n .text-xxl-center {\n text-align: center !important;\n }\n}\n@media (min-width: 1200px) {\n .fs-1 {\n font-size: 2.5rem !important;\n }\n\n .fs-2 {\n font-size: 2rem !important;\n }\n\n .fs-3 {\n font-size: 1.75rem !important;\n }\n\n .fs-4 {\n font-size: 1.5rem !important;\n }\n}\n@media print {\n .d-print-inline {\n display: inline !important;\n }\n\n .d-print-inline-block {\n display: inline-block !important;\n }\n\n .d-print-block {\n display: block !important;\n }\n\n .d-print-grid {\n display: grid !important;\n }\n\n .d-print-table {\n display: table !important;\n }\n\n .d-print-table-row {\n display: table-row !important;\n }\n\n .d-print-table-cell {\n display: table-cell !important;\n }\n\n .d-print-flex {\n display: flex !important;\n }\n\n .d-print-inline-flex {\n display: inline-flex !important;\n }\n\n .d-print-none {\n display: none !important;\n }\n}\n\n/*# sourceMappingURL=bootstrap.css.map */","// stylelint-disable property-blacklist, scss/dollar-variable-default\n\n// SCSS RFS mixin\n//\n// Automated responsive values for font sizes, paddings, margins and much more\n//\n// Licensed under MIT (https://github.com/twbs/rfs/blob/main/LICENSE)\n\n// Configuration\n\n// Base value\n$rfs-base-value: 1.25rem !default;\n$rfs-unit: rem !default;\n\n@if $rfs-unit != rem and $rfs-unit != px {\n @error \"`#{$rfs-unit}` is not a valid unit for $rfs-unit. Use `px` or `rem`.\";\n}\n\n// Breakpoint at where values start decreasing if screen width is smaller\n$rfs-breakpoint: 1200px !default;\n$rfs-breakpoint-unit: px !default;\n\n@if $rfs-breakpoint-unit != px and $rfs-breakpoint-unit != em and $rfs-breakpoint-unit != rem {\n @error \"`#{$rfs-breakpoint-unit}` is not a valid unit for $rfs-breakpoint-unit. Use `px`, `em` or `rem`.\";\n}\n\n// Resize values based on screen height and width\n$rfs-two-dimensional: false !default;\n\n// Factor of decrease\n$rfs-factor: 10 !default;\n\n@if type-of($rfs-factor) != number or $rfs-factor <= 1 {\n @error \"`#{$rfs-factor}` is not a valid $rfs-factor, it must be greater than 1.\";\n}\n\n// Mode. Possibilities: \"min-media-query\", \"max-media-query\"\n$rfs-mode: min-media-query !default;\n\n// Generate enable or disable classes. Possibilities: false, \"enable\" or \"disable\"\n$rfs-class: false !default;\n\n// 1 rem = $rfs-rem-value px\n$rfs-rem-value: 16 !default;\n\n// Safari iframe resize bug: https://github.com/twbs/rfs/issues/14\n$rfs-safari-iframe-resize-bug-fix: false !default;\n\n// Disable RFS by setting $enable-rfs to false\n$enable-rfs: true !default;\n\n// Cache $rfs-base-value unit\n$rfs-base-value-unit: unit($rfs-base-value);\n\n@function divide($dividend, $divisor, $precision: 10) {\n $sign: if($dividend > 0 and $divisor > 0 or $dividend < 0 and $divisor < 0, 1, -1);\n $dividend: abs($dividend);\n $divisor: abs($divisor);\n @if $dividend == 0 {\n @return 0;\n }\n @if $divisor == 0 {\n @error \"Cannot divide by 0\";\n }\n $remainder: $dividend;\n $result: 0;\n $factor: 10;\n @while ($remainder > 0 and $precision >= 0) {\n $quotient: 0;\n @while ($remainder >= $divisor) {\n $remainder: $remainder - $divisor;\n $quotient: $quotient + 1;\n }\n $result: $result * 10 + $quotient;\n $factor: $factor * .1;\n $remainder: $remainder * 10;\n $precision: $precision - 1;\n @if ($precision < 0 and $remainder >= $divisor * 5) {\n $result: $result + 1;\n }\n }\n $result: $result * $factor * $sign;\n $dividend-unit: unit($dividend);\n $divisor-unit: unit($divisor);\n $unit-map: (\n \"px\": 1px,\n \"rem\": 1rem,\n \"em\": 1em,\n \"%\": 1%\n );\n @if ($dividend-unit != $divisor-unit and map-has-key($unit-map, $dividend-unit)) {\n $result: $result * map-get($unit-map, $dividend-unit);\n }\n @return $result;\n}\n\n// Remove px-unit from $rfs-base-value for calculations\n@if $rfs-base-value-unit == px {\n $rfs-base-value: divide($rfs-base-value, $rfs-base-value * 0 + 1);\n}\n@else if $rfs-base-value-unit == rem {\n $rfs-base-value: divide($rfs-base-value, divide($rfs-base-value * 0 + 1, $rfs-rem-value));\n}\n\n// Cache $rfs-breakpoint unit to prevent multiple calls\n$rfs-breakpoint-unit-cache: unit($rfs-breakpoint);\n\n// Remove unit from $rfs-breakpoint for calculations\n@if $rfs-breakpoint-unit-cache == px {\n $rfs-breakpoint: divide($rfs-breakpoint, $rfs-breakpoint * 0 + 1);\n}\n@else if $rfs-breakpoint-unit-cache == rem or $rfs-breakpoint-unit-cache == \"em\" {\n $rfs-breakpoint: divide($rfs-breakpoint, divide($rfs-breakpoint * 0 + 1, $rfs-rem-value));\n}\n\n// Calculate the media query value\n$rfs-mq-value: if($rfs-breakpoint-unit == px, #{$rfs-breakpoint}px, #{divide($rfs-breakpoint, $rfs-rem-value)}#{$rfs-breakpoint-unit});\n$rfs-mq-property-width: if($rfs-mode == max-media-query, max-width, min-width);\n$rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height);\n\n// Internal mixin used to determine which media query needs to be used\n@mixin _rfs-media-query {\n @if $rfs-two-dimensional {\n @if $rfs-mode == max-media-query {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}), (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) and (#{$rfs-mq-property-height}: #{$rfs-mq-value}) {\n @content;\n }\n }\n }\n @else {\n @media (#{$rfs-mq-property-width}: #{$rfs-mq-value}) {\n @content;\n }\n }\n}\n\n// Internal mixin that adds disable classes to the selector if needed.\n@mixin _rfs-rule {\n @if $rfs-class == disable and $rfs-mode == max-media-query {\n // Adding an extra class increases specificity, which prevents the media query to override the property\n &,\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @else if $rfs-class == enable and $rfs-mode == min-media-query {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n }\n @else {\n @content;\n }\n}\n\n// Internal mixin that adds enable classes to the selector if needed.\n@mixin _rfs-media-query-rule {\n\n @if $rfs-class == enable {\n @if $rfs-mode == min-media-query {\n @content;\n }\n\n @include _rfs-media-query {\n .enable-rfs &,\n &.enable-rfs {\n @content;\n }\n }\n }\n @else {\n @if $rfs-class == disable and $rfs-mode == min-media-query {\n .disable-rfs &,\n &.disable-rfs {\n @content;\n }\n }\n @include _rfs-media-query {\n @content;\n }\n }\n}\n\n// Helper function to get the formatted non-responsive value\n@function rfs-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: '';\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + ' 0';\n }\n @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n @if $unit == px {\n // Convert to rem if needed\n $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $value * 0 + $rfs-rem-value)}rem, $value);\n }\n @else if $unit == rem {\n // Convert to px if needed\n $val: $val + ' ' + if($rfs-unit == px, #{divide($value, $value * 0 + 1) * $rfs-rem-value}px, $value);\n }\n @else {\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n $val: $val + ' ' + $value;\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// Helper function to get the responsive value calculated by RFS\n@function rfs-fluid-value($values) {\n // Convert to list\n $values: if(type-of($values) != list, ($values,), $values);\n\n $val: '';\n\n // Loop over each value and calculate value\n @each $value in $values {\n @if $value == 0 {\n $val: $val + ' 0';\n }\n\n @else {\n // Cache $value unit\n $unit: if(type-of($value) == \"number\", unit($value), false);\n\n // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n @if not $unit or $unit != px and $unit != rem {\n $val: $val + ' ' + $value;\n }\n\n @else {\n // Remove unit from $value for calculations\n $value: divide($value, $value * 0 + if($unit == px, 1, divide(1, $rfs-rem-value)));\n\n // Only add the media query if the value is greater than the minimum value\n @if abs($value) <= $rfs-base-value or not $enable-rfs {\n $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $rfs-rem-value)}rem, #{$value}px);\n }\n @else {\n // Calculate the minimum value\n $value-min: $rfs-base-value + divide(abs($value) - $rfs-base-value, $rfs-factor);\n\n // Calculate difference between $value and the minimum value\n $value-diff: abs($value) - $value-min;\n\n // Base value formatting\n $min-width: if($rfs-unit == rem, #{divide($value-min, $rfs-rem-value)}rem, #{$value-min}px);\n\n // Use negative value if needed\n $min-width: if($value < 0, -$min-width, $min-width);\n\n // Use `vmin` if two-dimensional is enabled\n $variable-unit: if($rfs-two-dimensional, vmin, vw);\n\n // Calculate the variable width between 0 and $rfs-breakpoint\n $variable-width: #{divide($value-diff * 100, $rfs-breakpoint)}#{$variable-unit};\n\n // Return the calculated value\n $val: $val + ' calc(' + $min-width + if($value < 0, ' - ', ' + ') + $variable-width + ')';\n }\n }\n }\n }\n\n // Remove first space\n @return unquote(str-slice($val, 2));\n}\n\n// RFS mixin\n@mixin rfs($values, $property: font-size) {\n @if $values != null {\n $val: rfs-value($values);\n $fluidVal: rfs-fluid-value($values);\n\n // Do not print the media query if responsive & non-responsive values are the same\n @if $val == $fluidVal {\n #{$property}: $val;\n }\n @else {\n @include _rfs-rule {\n #{$property}: if($rfs-mode == max-media-query, $val, $fluidVal);\n\n // Include safari iframe resize fix if needed\n min-width: if($rfs-safari-iframe-resize-bug-fix, (0 * 1vw), null);\n }\n\n @include _rfs-media-query-rule {\n #{$property}: if($rfs-mode == max-media-query, $fluidVal, $val);\n }\n }\n }\n}\n\n// Shorthand helper mixins\n@mixin font-size($value) {\n @include rfs($value);\n}\n\n@mixin padding($value) {\n @include rfs($value, padding);\n}\n\n@mixin padding-top($value) {\n @include rfs($value, padding-top);\n}\n\n@mixin padding-right($value) {\n @include rfs($value, padding-right);\n}\n\n@mixin padding-bottom($value) {\n @include rfs($value, padding-bottom);\n}\n\n@mixin padding-left($value) {\n @include rfs($value, padding-left);\n}\n\n@mixin margin($value) {\n @include rfs($value, margin);\n}\n\n@mixin margin-top($value) {\n @include rfs($value, margin-top);\n}\n\n@mixin margin-right($value) {\n @include rfs($value, margin-right);\n}\n\n@mixin margin-bottom($value) {\n @include rfs($value, margin-bottom);\n}\n\n@mixin margin-left($value) {\n @include rfs($value, margin-left);\n}\n","// stylelint-disable property-disallowed-list\n// Single side border-radius\n\n// Helper function to replace negative values with 0\n@function valid-radius($radius) {\n $return: ();\n @each $value in $radius {\n @if type-of($value) == number {\n $return: append($return, max($value, 0));\n } @else {\n $return: append($return, $value);\n }\n }\n @return $return;\n}\n\n// scss-docs-start border-radius-mixins\n@mixin border-radius($radius: $border-radius, $fallback-border-radius: false) {\n @if $enable-rounded {\n border-radius: valid-radius($radius);\n }\n @else if $fallback-border-radius != false {\n border-radius: $fallback-border-radius;\n }\n}\n\n@mixin border-top-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-top-left-radius: valid-radius($radius);\n border-top-right-radius: valid-radius($radius);\n }\n}\n\n@mixin border-end-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-top-right-radius: valid-radius($radius);\n border-bottom-right-radius: valid-radius($radius);\n }\n}\n\n@mixin border-bottom-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-bottom-right-radius: valid-radius($radius);\n border-bottom-left-radius: valid-radius($radius);\n }\n}\n\n@mixin border-start-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-top-left-radius: valid-radius($radius);\n border-bottom-left-radius: valid-radius($radius);\n }\n}\n\n@mixin border-top-start-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-top-left-radius: valid-radius($radius);\n }\n}\n\n@mixin border-top-end-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-top-right-radius: valid-radius($radius);\n }\n}\n\n@mixin border-bottom-end-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-bottom-right-radius: valid-radius($radius);\n }\n}\n\n@mixin border-bottom-start-radius($radius: $border-radius) {\n @if $enable-rounded {\n border-bottom-left-radius: valid-radius($radius);\n }\n}\n// scss-docs-end border-radius-mixins\n","//\n// Headings\n//\n.h1 {\n @extend h1;\n}\n\n.h2 {\n @extend h2;\n}\n\n.h3 {\n @extend h3;\n}\n\n.h4 {\n @extend h4;\n}\n\n.h5 {\n @extend h5;\n}\n\n.h6 {\n @extend h6;\n}\n\n\n.lead {\n @include font-size($lead-font-size);\n font-weight: $lead-font-weight;\n}\n\n// Type display classes\n@each $display, $font-size in $display-font-sizes {\n .display-#{$display} {\n @include font-size($font-size);\n font-weight: $display-font-weight;\n line-height: $display-line-height;\n }\n}\n\n//\n// Emphasis\n//\n.small {\n @extend small;\n}\n\n.mark {\n @extend mark;\n}\n\n//\n// Lists\n//\n\n.list-unstyled {\n @include list-unstyled();\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n @include list-unstyled();\n}\n.list-inline-item {\n display: inline-block;\n\n &:not(:last-child) {\n margin-right: $list-inline-padding;\n }\n}\n\n\n//\n// Misc\n//\n\n// Builds on `abbr`\n.initialism {\n @include font-size($initialism-font-size);\n text-transform: uppercase;\n}\n\n// Blockquotes\n.blockquote {\n margin-bottom: $blockquote-margin-y;\n @include font-size($blockquote-font-size);\n\n > :last-child {\n margin-bottom: 0;\n }\n}\n\n.blockquote-footer {\n margin-top: -$blockquote-margin-y;\n margin-bottom: $blockquote-margin-y;\n @include font-size($blockquote-footer-font-size);\n color: $blockquote-footer-color;\n\n &::before {\n content: \"\\2014\\00A0\"; // em dash, nbsp\n }\n}\n","// Lists\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n@mixin list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n","// Responsive images (ensure images don't scale beyond their parents)\n//\n// This is purposefully opt-in via an explicit class rather than being the default for all `<img>`s.\n// We previously tried the \"images are responsive by default\" approach in Bootstrap v2,\n// and abandoned it in Bootstrap v3 because it breaks lots of third-party widgets (including Google Maps)\n// which weren't expecting the images within themselves to be involuntarily resized.\n// See also https://github.com/twbs/bootstrap/issues/18178\n.img-fluid {\n @include img-fluid();\n}\n\n\n// Image thumbnails\n.img-thumbnail {\n padding: $thumbnail-padding;\n background-color: $thumbnail-bg;\n border: $thumbnail-border-width solid $thumbnail-border-color;\n @include border-radius($thumbnail-border-radius);\n @include box-shadow($thumbnail-box-shadow);\n\n // Keep them at most 100% wide\n @include img-fluid();\n}\n\n//\n// Figures\n//\n\n.figure {\n // Ensures the caption's text aligns with the image.\n display: inline-block;\n}\n\n.figure-img {\n margin-bottom: $spacer * .5;\n line-height: 1;\n}\n\n.figure-caption {\n @include font-size($figure-caption-font-size);\n color: $figure-caption-color;\n}\n","// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n\n@mixin img-fluid {\n // Part 1: Set a maximum relative to the parent\n max-width: 100%;\n // Part 2: Override the height to auto, otherwise images will be stretched\n // when setting a width and height attribute on the img element.\n height: auto;\n}\n","// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-grid-classes {\n // Single container class with breakpoint max-widths\n .container,\n // 100% wide container at all breakpoints\n .container-fluid {\n @include make-container();\n }\n\n // Responsive containers that are 100% wide until a breakpoint\n @each $breakpoint, $container-max-width in $container-max-widths {\n .container-#{$breakpoint} {\n @extend .container-fluid;\n }\n\n @include media-breakpoint-up($breakpoint, $grid-breakpoints) {\n %responsive-container-#{$breakpoint} {\n max-width: $container-max-width;\n }\n\n // Extend each breakpoint which is smaller or equal to the current breakpoint\n $extend-breakpoint: true;\n\n @each $name, $width in $grid-breakpoints {\n @if ($extend-breakpoint) {\n .container#{breakpoint-infix($name, $grid-breakpoints)} {\n @extend %responsive-container-#{$breakpoint};\n }\n\n // Once the current breakpoint is reached, stop extending\n @if ($breakpoint == $name) {\n $extend-breakpoint: false;\n }\n }\n }\n }\n }\n}\n","// Container mixins\n\n@mixin make-container($gutter: $container-padding-x) {\n width: 100%;\n padding-right: var(--#{$variable-prefix}gutter-x, #{$gutter});\n padding-left: var(--#{$variable-prefix}gutter-x, #{$gutter});\n margin-right: auto;\n margin-left: auto;\n}\n","// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @if not $n {\n @error \"breakpoint `#{$name}` not found in `#{$breakpoints}`\";\n }\n @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width.\n// The maximum value is reduced by 0.02px to work around the limitations of\n// `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.\n// See https://bugs.webkit.org/show_bug.cgi?id=178261\n//\n// >> breakpoint-max(md, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 767.98px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $max: map-get($breakpoints, $name);\n @return if($max and $max > 0, $max - .02, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper, $breakpoints) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n $next: breakpoint-next($name, $breakpoints);\n $max: breakpoint-max($next);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($name, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($next, $breakpoints) {\n @content;\n }\n }\n}\n","// Row\n//\n// Rows contain your columns.\n\n@if $enable-grid-classes {\n .row {\n @include make-row();\n\n > * {\n @include make-col-ready();\n }\n }\n}\n\n@if $enable-cssgrid {\n .grid {\n display: grid;\n grid-template-rows: repeat(var(--#{$variable-prefix}rows, 1), 1fr);\n grid-template-columns: repeat(var(--#{$variable-prefix}columns, #{$grid-columns}), 1fr);\n gap: var(--#{$variable-prefix}gap, #{$grid-gutter-width});\n\n @include make-cssgrid();\n }\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n @include make-grid-columns();\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-row($gutter: $grid-gutter-width) {\n --#{$variable-prefix}gutter-x: #{$gutter};\n --#{$variable-prefix}gutter-y: 0;\n display: flex;\n flex-wrap: wrap;\n margin-top: calc(var(--#{$variable-prefix}gutter-y) * -1); // stylelint-disable-line function-disallowed-list\n margin-right: calc(var(--#{$variable-prefix}gutter-x) * -.5); // stylelint-disable-line function-disallowed-list\n margin-left: calc(var(--#{$variable-prefix}gutter-x) * -.5); // stylelint-disable-line function-disallowed-list\n}\n\n@mixin make-col-ready($gutter: $grid-gutter-width) {\n // Add box sizing if only the grid is loaded\n box-sizing: if(variable-exists(include-column-box-sizing) and $include-column-box-sizing, border-box, null);\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we set the width\n // later on to override this initial width.\n flex-shrink: 0;\n width: 100%;\n max-width: 100%; // Prevent `.col-auto`, `.col` (& responsive variants) from breaking out the grid\n padding-right: calc(var(--#{$variable-prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n padding-left: calc(var(--#{$variable-prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list\n margin-top: var(--#{$variable-prefix}gutter-y);\n}\n\n@mixin make-col($size: false, $columns: $grid-columns) {\n @if $size {\n flex: 0 0 auto;\n width: percentage(divide($size, $columns));\n\n } @else {\n flex: 1 1 0;\n max-width: 100%;\n }\n}\n\n@mixin make-col-auto() {\n flex: 0 0 auto;\n width: auto;\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: divide($size, $columns);\n margin-left: if($num == 0, 0, percentage($num));\n}\n\n// Row columns\n//\n// Specify on a parent element(e.g., .row) to force immediate children into NN\n// numberof columns. Supports wrapping to new lines, but does not do a Masonry\n// style grid.\n@mixin row-cols($count) {\n > * {\n flex: 0 0 auto;\n width: divide(100%, $count);\n }\n}\n\n// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex: 1 0 0%; // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4\n }\n\n .row-cols#{$infix}-auto > * {\n @include make-col-auto();\n }\n\n @if $grid-row-columns > 0 {\n @for $i from 1 through $grid-row-columns {\n .row-cols#{$infix}-#{$i} {\n @include row-cols($i);\n }\n }\n }\n\n .col#{$infix}-auto {\n @include make-col-auto();\n }\n\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n\n // Gutters\n //\n // Make use of `.g-*`, `.gx-*` or `.gy-*` utilities to change spacing between the columns.\n @each $key, $value in $gutters {\n .g#{$infix}-#{$key},\n .gx#{$infix}-#{$key} {\n --#{$variable-prefix}gutter-x: #{$value};\n }\n\n .g#{$infix}-#{$key},\n .gy#{$infix}-#{$key} {\n --#{$variable-prefix}gutter-y: #{$value};\n }\n }\n }\n }\n}\n\n@mixin make-cssgrid($columns: $grid-columns, $breakpoints: $grid-breakpoints) {\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n @if $columns > 0 {\n @for $i from 1 through $columns {\n .g-col#{$infix}-#{$i} {\n grid-column: auto / span $i;\n }\n }\n\n // Start with `1` because `0` is and invalid value.\n // Ends with `$columns - 1` because offsetting by the width of an entire row isn't possible.\n @for $i from 1 through ($columns - 1) {\n .g-start#{$infix}-#{$i} {\n grid-column-start: $i;\n }\n }\n }\n }\n }\n}\n","//\n// Basic Bootstrap table\n//\n\n.table {\n --#{$variable-prefix}table-bg: #{$table-bg};\n --#{$variable-prefix}table-accent-bg: #{$table-accent-bg};\n --#{$variable-prefix}table-striped-color: #{$table-striped-color};\n --#{$variable-prefix}table-striped-bg: #{$table-striped-bg};\n --#{$variable-prefix}table-active-color: #{$table-active-color};\n --#{$variable-prefix}table-active-bg: #{$table-active-bg};\n --#{$variable-prefix}table-hover-color: #{$table-hover-color};\n --#{$variable-prefix}table-hover-bg: #{$table-hover-bg};\n\n width: 100%;\n margin-bottom: $spacer;\n color: $table-color;\n vertical-align: $table-cell-vertical-align;\n border-color: $table-border-color;\n\n // Target th & td\n // We need the child combinator to prevent styles leaking to nested tables which doesn't have a `.table` class.\n // We use the universal selectors here to simplify the selector (else we would need 6 different selectors).\n // Another advantage is that this generates less code and makes the selector less specific making it easier to override.\n // stylelint-disable-next-line selector-max-universal\n > :not(caption) > * > * {\n padding: $table-cell-padding-y $table-cell-padding-x;\n background-color: var(--#{$variable-prefix}table-bg);\n border-bottom-width: $table-border-width;\n box-shadow: inset 0 0 0 9999px var(--#{$variable-prefix}table-accent-bg);\n }\n\n > tbody {\n vertical-align: inherit;\n }\n\n > thead {\n vertical-align: bottom;\n }\n\n // Highlight border color between thead, tbody and tfoot.\n > :not(:last-child) > :last-child > * {\n border-bottom-color: $table-group-separator-color;\n }\n}\n\n\n//\n// Change placement of captions with a class\n//\n\n.caption-top {\n caption-side: top;\n}\n\n\n//\n// Condensed table w/ half padding\n//\n\n.table-sm {\n // stylelint-disable-next-line selector-max-universal\n > :not(caption) > * > * {\n padding: $table-cell-padding-y-sm $table-cell-padding-x-sm;\n }\n}\n\n\n// Border versions\n//\n// Add or remove borders all around the table and between all the columns.\n//\n// When borders are added on all sides of the cells, the corners can render odd when\n// these borders do not have the same color or if they are semi-transparent.\n// Therefor we add top and border bottoms to the `tr`s and left and right borders\n// to the `td`s or `th`s\n\n.table-bordered {\n > :not(caption) > * {\n border-width: $table-border-width 0;\n\n // stylelint-disable-next-line selector-max-universal\n > * {\n border-width: 0 $table-border-width;\n }\n }\n}\n\n.table-borderless {\n // stylelint-disable-next-line selector-max-universal\n > :not(caption) > * > * {\n border-bottom-width: 0;\n }\n}\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n > tbody > tr:nth-of-type(#{$table-striped-order}) {\n --#{$variable-prefix}table-accent-bg: var(--#{$variable-prefix}table-striped-bg);\n color: var(--#{$variable-prefix}table-striped-color);\n }\n}\n\n// Active table\n//\n// The `.table-active` class can be added to highlight rows or cells\n\n.table-active {\n --#{$variable-prefix}table-accent-bg: var(--#{$variable-prefix}table-active-bg);\n color: var(--#{$variable-prefix}table-active-color);\n}\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n > tbody > tr:hover {\n --#{$variable-prefix}table-accent-bg: var(--#{$variable-prefix}table-hover-bg);\n color: var(--#{$variable-prefix}table-hover-color);\n }\n}\n\n\n// Table variants\n//\n// Table variants set the table cell backgrounds, border colors\n// and the colors of the striped, hovered & active tables\n\n@each $color, $value in $table-variants {\n @include table-variant($color, $value);\n}\n\n// Responsive tables\n//\n// Generate series of `.table-responsive-*` classes for configuring the screen\n// size of where your table will overflow.\n\n@each $breakpoint in map-keys($grid-breakpoints) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n @include media-breakpoint-down($breakpoint) {\n .table-responsive#{$infix} {\n overflow-x: auto;\n -webkit-overflow-scrolling: touch;\n }\n }\n}\n","// scss-docs-start table-variant\n@mixin table-variant($state, $background) {\n .table-#{$state} {\n $color: color-contrast(opaque($body-bg, $background));\n $hover-bg: mix($color, $background, percentage($table-hover-bg-factor));\n $striped-bg: mix($color, $background, percentage($table-striped-bg-factor));\n $active-bg: mix($color, $background, percentage($table-active-bg-factor));\n\n --#{$variable-prefix}table-bg: #{$background};\n --#{$variable-prefix}table-striped-bg: #{$striped-bg};\n --#{$variable-prefix}table-striped-color: #{color-contrast($striped-bg)};\n --#{$variable-prefix}table-active-bg: #{$active-bg};\n --#{$variable-prefix}table-active-color: #{color-contrast($active-bg)};\n --#{$variable-prefix}table-hover-bg: #{$hover-bg};\n --#{$variable-prefix}table-hover-color: #{color-contrast($hover-bg)};\n\n color: $color;\n border-color: mix($color, $background, percentage($table-border-factor));\n }\n}\n// scss-docs-end table-variant\n","//\n// Labels\n//\n\n.form-label {\n margin-bottom: $form-label-margin-bottom;\n @include font-size($form-label-font-size);\n font-style: $form-label-font-style;\n font-weight: $form-label-font-weight;\n color: $form-label-color;\n}\n\n// For use with horizontal and inline forms, when you need the label (or legend)\n// text to align with the form controls.\n.col-form-label {\n padding-top: add($input-padding-y, $input-border-width);\n padding-bottom: add($input-padding-y, $input-border-width);\n margin-bottom: 0; // Override the `<legend>` default\n @include font-size(inherit); // Override the `<legend>` default\n font-style: $form-label-font-style;\n font-weight: $form-label-font-weight;\n line-height: $input-line-height;\n color: $form-label-color;\n}\n\n.col-form-label-lg {\n padding-top: add($input-padding-y-lg, $input-border-width);\n padding-bottom: add($input-padding-y-lg, $input-border-width);\n @include font-size($input-font-size-lg);\n}\n\n.col-form-label-sm {\n padding-top: add($input-padding-y-sm, $input-border-width);\n padding-bottom: add($input-padding-y-sm, $input-border-width);\n @include font-size($input-font-size-sm);\n}\n","//\n// Form text\n//\n\n.form-text {\n margin-top: $form-text-margin-top;\n @include font-size($form-text-font-size);\n font-style: $form-text-font-style;\n font-weight: $form-text-font-weight;\n color: $form-text-color;\n}\n","//\n// General form controls (plus a few specific high-level interventions)\n//\n\n.form-control {\n display: block;\n width: 100%;\n padding: $input-padding-y $input-padding-x;\n font-family: $input-font-family;\n @include font-size($input-font-size);\n font-weight: $input-font-weight;\n line-height: $input-line-height;\n color: $input-color;\n background-color: $input-bg;\n background-clip: padding-box;\n border: $input-border-width solid $input-border-color;\n appearance: none; // Fix appearance for date inputs in Safari\n\n // Note: This has no effect on <select>s in some browsers, due to the limited stylability of `<select>`s in CSS.\n @include border-radius($input-border-radius, 0);\n\n @include box-shadow($input-box-shadow);\n @include transition($input-transition);\n\n &[type=\"file\"] {\n overflow: hidden; // prevent pseudo element button overlap\n\n &:not(:disabled):not([readonly]) {\n cursor: pointer;\n }\n }\n\n // Customize the `:focus` state to imitate native WebKit styles.\n &:focus {\n color: $input-focus-color;\n background-color: $input-focus-bg;\n border-color: $input-focus-border-color;\n outline: 0;\n @if $enable-shadows {\n @include box-shadow($input-box-shadow, $input-focus-box-shadow);\n } @else {\n // Avoid using mixin so we can pass custom focus shadow properly\n box-shadow: $input-focus-box-shadow;\n }\n }\n\n // Add some height to date inputs on iOS\n // https://github.com/twbs/bootstrap/issues/23307\n // TODO: we can remove this workaround once https://bugs.webkit.org/show_bug.cgi?id=198959 is resolved\n &::-webkit-date-and-time-value {\n // Multiply line-height by 1em if it has no unit\n height: if(unit($input-line-height) == \"\", $input-line-height * 1em, $input-line-height);\n }\n\n // Placeholder\n &::placeholder {\n color: $input-placeholder-color;\n // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526.\n opacity: 1;\n }\n\n // Disabled and read-only inputs\n //\n // HTML5 says that controls under a fieldset > legend:first-child won't be\n // disabled if the fieldset is disabled. Due to implementation difficulty, we\n // don't honor that edge case; we style them as disabled anyway.\n &:disabled,\n &[readonly] {\n background-color: $input-disabled-bg;\n border-color: $input-disabled-border-color;\n // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655.\n opacity: 1;\n }\n\n // File input buttons theming\n &::file-selector-button {\n padding: $input-padding-y $input-padding-x;\n margin: (-$input-padding-y) (-$input-padding-x);\n margin-inline-end: $input-padding-x;\n color: $form-file-button-color;\n @include gradient-bg($form-file-button-bg);\n pointer-events: none;\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n border-inline-end-width: $input-border-width;\n border-radius: 0; // stylelint-disable-line property-disallowed-list\n @include transition($btn-transition);\n }\n\n &:hover:not(:disabled):not([readonly])::file-selector-button {\n background-color: $form-file-button-hover-bg;\n }\n\n &::-webkit-file-upload-button {\n padding: $input-padding-y $input-padding-x;\n margin: (-$input-padding-y) (-$input-padding-x);\n margin-inline-end: $input-padding-x;\n color: $form-file-button-color;\n @include gradient-bg($form-file-button-bg);\n pointer-events: none;\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n border-inline-end-width: $input-border-width;\n border-radius: 0; // stylelint-disable-line property-disallowed-list\n @include transition($btn-transition);\n }\n\n &:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {\n background-color: $form-file-button-hover-bg;\n }\n}\n\n// Readonly controls as plain text\n//\n// Apply class to a readonly input to make it appear like regular plain\n// text (without any border, background color, focus indicator)\n\n.form-control-plaintext {\n display: block;\n width: 100%;\n padding: $input-padding-y 0;\n margin-bottom: 0; // match inputs if this class comes on inputs with default margins\n line-height: $input-line-height;\n color: $input-plaintext-color;\n background-color: transparent;\n border: solid transparent;\n border-width: $input-border-width 0;\n\n &.form-control-sm,\n &.form-control-lg {\n padding-right: 0;\n padding-left: 0;\n }\n}\n\n// Form control sizing\n//\n// Build on `.form-control` with modifier classes to decrease or increase the\n// height and font-size of form controls.\n//\n// Repeated in `_input_group.scss` to avoid Sass extend issues.\n\n.form-control-sm {\n min-height: $input-height-sm;\n padding: $input-padding-y-sm $input-padding-x-sm;\n @include font-size($input-font-size-sm);\n @include border-radius($input-border-radius-sm);\n\n &::file-selector-button {\n padding: $input-padding-y-sm $input-padding-x-sm;\n margin: (-$input-padding-y-sm) (-$input-padding-x-sm);\n margin-inline-end: $input-padding-x-sm;\n }\n\n &::-webkit-file-upload-button {\n padding: $input-padding-y-sm $input-padding-x-sm;\n margin: (-$input-padding-y-sm) (-$input-padding-x-sm);\n margin-inline-end: $input-padding-x-sm;\n }\n}\n\n.form-control-lg {\n min-height: $input-height-lg;\n padding: $input-padding-y-lg $input-padding-x-lg;\n @include font-size($input-font-size-lg);\n @include border-radius($input-border-radius-lg);\n\n &::file-selector-button {\n padding: $input-padding-y-lg $input-padding-x-lg;\n margin: (-$input-padding-y-lg) (-$input-padding-x-lg);\n margin-inline-end: $input-padding-x-lg;\n }\n\n &::-webkit-file-upload-button {\n padding: $input-padding-y-lg $input-padding-x-lg;\n margin: (-$input-padding-y-lg) (-$input-padding-x-lg);\n margin-inline-end: $input-padding-x-lg;\n }\n}\n\n// Make sure textareas don't shrink too much when resized\n// https://github.com/twbs/bootstrap/pull/29124\n// stylelint-disable selector-no-qualifying-type\ntextarea {\n &.form-control {\n min-height: $input-height;\n }\n\n &.form-control-sm {\n min-height: $input-height-sm;\n }\n\n &.form-control-lg {\n min-height: $input-height-lg;\n }\n}\n// stylelint-enable selector-no-qualifying-type\n\n.form-control-color {\n width: $form-color-width;\n height: auto; // Override fixed browser height\n padding: $input-padding-y;\n\n &:not(:disabled):not([readonly]) {\n cursor: pointer;\n }\n\n &::-moz-color-swatch {\n height: if(unit($input-line-height) == \"\", $input-line-height * 1em, $input-line-height);\n @include border-radius($input-border-radius);\n }\n\n &::-webkit-color-swatch {\n height: if(unit($input-line-height) == \"\", $input-line-height * 1em, $input-line-height);\n @include border-radius($input-border-radius);\n }\n}\n","// stylelint-disable property-disallowed-list\n@mixin transition($transition...) {\n @if length($transition) == 0 {\n $transition: $transition-base;\n }\n\n @if length($transition) > 1 {\n @each $value in $transition {\n @if $value == null or $value == none {\n @warn \"The keyword 'none' or 'null' must be used as a single argument.\";\n }\n }\n }\n\n @if $enable-transitions {\n @if nth($transition, 1) != null {\n transition: $transition;\n }\n\n @if $enable-reduced-motion and nth($transition, 1) != null and nth($transition, 1) != none {\n @media (prefers-reduced-motion: reduce) {\n transition: none;\n }\n }\n }\n}\n","// Gradients\n\n// scss-docs-start gradient-bg-mixin\n@mixin gradient-bg($color: null) {\n background-color: $color;\n\n @if $enable-gradients {\n background-image: var(--#{$variable-prefix}gradient);\n }\n}\n// scss-docs-end gradient-bg-mixin\n\n// scss-docs-start gradient-mixins\n// Horizontal gradient, from left to right\n//\n// Creates two color stops, start and end, by specifying a color and position for each color stop.\n@mixin gradient-x($start-color: $gray-700, $end-color: $gray-800, $start-percent: 0%, $end-percent: 100%) {\n background-image: linear-gradient(to right, $start-color $start-percent, $end-color $end-percent);\n}\n\n// Vertical gradient, from top to bottom\n//\n// Creates two color stops, start and end, by specifying a color and position for each color stop.\n@mixin gradient-y($start-color: $gray-700, $end-color: $gray-800, $start-percent: null, $end-percent: null) {\n background-image: linear-gradient(to bottom, $start-color $start-percent, $end-color $end-percent);\n}\n\n@mixin gradient-directional($start-color: $gray-700, $end-color: $gray-800, $deg: 45deg) {\n background-image: linear-gradient($deg, $start-color, $end-color);\n}\n\n@mixin gradient-x-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) {\n background-image: linear-gradient(to right, $start-color, $mid-color $color-stop, $end-color);\n}\n\n@mixin gradient-y-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) {\n background-image: linear-gradient($start-color, $mid-color $color-stop, $end-color);\n}\n\n@mixin gradient-radial($inner-color: $gray-700, $outer-color: $gray-800) {\n background-image: radial-gradient(circle, $inner-color, $outer-color);\n}\n\n@mixin gradient-striped($color: rgba($white, .15), $angle: 45deg) {\n background-image: linear-gradient($angle, $color 25%, transparent 25%, transparent 50%, $color 50%, $color 75%, transparent 75%, transparent);\n}\n// scss-docs-end gradient-mixins\n","// Select\n//\n// Replaces the browser default select with a custom one, mostly pulled from\n// https://primer.github.io/.\n\n.form-select {\n display: block;\n width: 100%;\n padding: $form-select-padding-y $form-select-indicator-padding $form-select-padding-y $form-select-padding-x;\n // stylelint-disable-next-line property-no-vendor-prefix\n -moz-padding-start: subtract($form-select-padding-x, 3px); // See https://github.com/twbs/bootstrap/issues/32636\n font-family: $form-select-font-family;\n @include font-size($form-select-font-size);\n font-weight: $form-select-font-weight;\n line-height: $form-select-line-height;\n color: $form-select-color;\n background-color: $form-select-bg;\n background-image: escape-svg($form-select-indicator);\n background-repeat: no-repeat;\n background-position: $form-select-bg-position;\n background-size: $form-select-bg-size;\n border: $form-select-border-width solid $form-select-border-color;\n @include border-radius($form-select-border-radius, 0);\n @include box-shadow($form-select-box-shadow);\n @include transition($form-select-transition);\n appearance: none;\n\n &:focus {\n border-color: $form-select-focus-border-color;\n outline: 0;\n @if $enable-shadows {\n @include box-shadow($form-select-box-shadow, $form-select-focus-box-shadow);\n } @else {\n // Avoid using mixin so we can pass custom focus shadow properly\n box-shadow: $form-select-focus-box-shadow;\n }\n }\n\n &[multiple],\n &[size]:not([size=\"1\"]) {\n padding-right: $form-select-padding-x;\n background-image: none;\n }\n\n &:disabled {\n color: $form-select-disabled-color;\n background-color: $form-select-disabled-bg;\n border-color: $form-select-disabled-border-color;\n }\n\n // Remove outline from select box in FF\n &:-moz-focusring {\n color: transparent;\n text-shadow: 0 0 0 $form-select-color;\n }\n}\n\n.form-select-sm {\n padding-top: $form-select-padding-y-sm;\n padding-bottom: $form-select-padding-y-sm;\n padding-left: $form-select-padding-x-sm;\n @include font-size($form-select-font-size-sm);\n}\n\n.form-select-lg {\n padding-top: $form-select-padding-y-lg;\n padding-bottom: $form-select-padding-y-lg;\n padding-left: $form-select-padding-x-lg;\n @include font-size($form-select-font-size-lg);\n}\n","//\n// Check/radio\n//\n\n.form-check {\n display: block;\n min-height: $form-check-min-height;\n padding-left: $form-check-padding-start;\n margin-bottom: $form-check-margin-bottom;\n\n .form-check-input {\n float: left;\n margin-left: $form-check-padding-start * -1;\n }\n}\n\n.form-check-input {\n width: $form-check-input-width;\n height: $form-check-input-width;\n margin-top: ($line-height-base - $form-check-input-width) * .5; // line-height minus check height\n vertical-align: top;\n background-color: $form-check-input-bg;\n background-repeat: no-repeat;\n background-position: center;\n background-size: contain;\n border: $form-check-input-border;\n appearance: none;\n color-adjust: exact; // Keep themed appearance for print\n @include transition($form-check-transition);\n\n &[type=\"checkbox\"] {\n @include border-radius($form-check-input-border-radius);\n }\n\n &[type=\"radio\"] {\n // stylelint-disable-next-line property-disallowed-list\n border-radius: $form-check-radio-border-radius;\n }\n\n &:active {\n filter: $form-check-input-active-filter;\n }\n\n &:focus {\n border-color: $form-check-input-focus-border;\n outline: 0;\n box-shadow: $form-check-input-focus-box-shadow;\n }\n\n &:checked {\n background-color: $form-check-input-checked-bg-color;\n border-color: $form-check-input-checked-border-color;\n\n &[type=\"checkbox\"] {\n @if $enable-gradients {\n background-image: escape-svg($form-check-input-checked-bg-image), var(--#{$variable-prefix}gradient);\n } @else {\n background-image: escape-svg($form-check-input-checked-bg-image);\n }\n }\n\n &[type=\"radio\"] {\n @if $enable-gradients {\n background-image: escape-svg($form-check-radio-checked-bg-image), var(--#{$variable-prefix}gradient);\n } @else {\n background-image: escape-svg($form-check-radio-checked-bg-image);\n }\n }\n }\n\n &[type=\"checkbox\"]:indeterminate {\n background-color: $form-check-input-indeterminate-bg-color;\n border-color: $form-check-input-indeterminate-border-color;\n\n @if $enable-gradients {\n background-image: escape-svg($form-check-input-indeterminate-bg-image), var(--#{$variable-prefix}gradient);\n } @else {\n background-image: escape-svg($form-check-input-indeterminate-bg-image);\n }\n }\n\n &:disabled {\n pointer-events: none;\n filter: none;\n opacity: $form-check-input-disabled-opacity;\n }\n\n // Use disabled attribute in addition of :disabled pseudo-class\n // See: https://github.com/twbs/bootstrap/issues/28247\n &[disabled],\n &:disabled {\n ~ .form-check-label {\n opacity: $form-check-label-disabled-opacity;\n }\n }\n}\n\n.form-check-label {\n color: $form-check-label-color;\n cursor: $form-check-label-cursor;\n}\n\n//\n// Switch\n//\n\n.form-switch {\n padding-left: $form-switch-padding-start;\n\n .form-check-input {\n width: $form-switch-width;\n margin-left: $form-switch-padding-start * -1;\n background-image: escape-svg($form-switch-bg-image);\n background-position: left center;\n @include border-radius($form-switch-border-radius);\n @include transition($form-switch-transition);\n\n &:focus {\n background-image: escape-svg($form-switch-focus-bg-image);\n }\n\n &:checked {\n background-position: $form-switch-checked-bg-position;\n\n @if $enable-gradients {\n background-image: escape-svg($form-switch-checked-bg-image), var(--#{$variable-prefix}gradient);\n } @else {\n background-image: escape-svg($form-switch-checked-bg-image);\n }\n }\n }\n}\n\n.form-check-inline {\n display: inline-block;\n margin-right: $form-check-inline-margin-end;\n}\n\n.btn-check {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none;\n\n &[disabled],\n &:disabled {\n + .btn {\n pointer-events: none;\n filter: none;\n opacity: $form-check-btn-check-disabled-opacity;\n }\n }\n}\n","// Range\n//\n// Style range inputs the same across browsers. Vendor-specific rules for pseudo\n// elements cannot be mixed. As such, there are no shared styles for focus or\n// active states on prefixed selectors.\n\n.form-range {\n width: 100%;\n height: add($form-range-thumb-height, $form-range-thumb-focus-box-shadow-width * 2);\n padding: 0; // Need to reset padding\n background-color: transparent;\n appearance: none;\n\n &:focus {\n outline: 0;\n\n // Pseudo-elements must be split across multiple rulesets to have an effect.\n // No box-shadow() mixin for focus accessibility.\n &::-webkit-slider-thumb { box-shadow: $form-range-thumb-focus-box-shadow; }\n &::-moz-range-thumb { box-shadow: $form-range-thumb-focus-box-shadow; }\n }\n\n &::-moz-focus-outer {\n border: 0;\n }\n\n &::-webkit-slider-thumb {\n width: $form-range-thumb-width;\n height: $form-range-thumb-height;\n margin-top: ($form-range-track-height - $form-range-thumb-height) * .5; // Webkit specific\n @include gradient-bg($form-range-thumb-bg);\n border: $form-range-thumb-border;\n @include border-radius($form-range-thumb-border-radius);\n @include box-shadow($form-range-thumb-box-shadow);\n @include transition($form-range-thumb-transition);\n appearance: none;\n\n &:active {\n @include gradient-bg($form-range-thumb-active-bg);\n }\n }\n\n &::-webkit-slider-runnable-track {\n width: $form-range-track-width;\n height: $form-range-track-height;\n color: transparent; // Why?\n cursor: $form-range-track-cursor;\n background-color: $form-range-track-bg;\n border-color: transparent;\n @include border-radius($form-range-track-border-radius);\n @include box-shadow($form-range-track-box-shadow);\n }\n\n &::-moz-range-thumb {\n width: $form-range-thumb-width;\n height: $form-range-thumb-height;\n @include gradient-bg($form-range-thumb-bg);\n border: $form-range-thumb-border;\n @include border-radius($form-range-thumb-border-radius);\n @include box-shadow($form-range-thumb-box-shadow);\n @include transition($form-range-thumb-transition);\n appearance: none;\n\n &:active {\n @include gradient-bg($form-range-thumb-active-bg);\n }\n }\n\n &::-moz-range-track {\n width: $form-range-track-width;\n height: $form-range-track-height;\n color: transparent;\n cursor: $form-range-track-cursor;\n background-color: $form-range-track-bg;\n border-color: transparent; // Firefox specific?\n @include border-radius($form-range-track-border-radius);\n @include box-shadow($form-range-track-box-shadow);\n }\n\n &:disabled {\n pointer-events: none;\n\n &::-webkit-slider-thumb {\n background-color: $form-range-thumb-disabled-bg;\n }\n\n &::-moz-range-thumb {\n background-color: $form-range-thumb-disabled-bg;\n }\n }\n}\n",".form-floating {\n position: relative;\n\n > .form-control,\n > .form-select {\n height: $form-floating-height;\n line-height: $form-floating-line-height;\n }\n\n > label {\n position: absolute;\n top: 0;\n left: 0;\n height: 100%; // allow textareas\n padding: $form-floating-padding-y $form-floating-padding-x;\n pointer-events: none;\n border: $input-border-width solid transparent; // Required for aligning label's text with the input as it affects inner box model\n transform-origin: 0 0;\n @include transition($form-floating-transition);\n }\n\n // stylelint-disable no-duplicate-selectors\n > .form-control {\n padding: $form-floating-padding-y $form-floating-padding-x;\n\n &::placeholder {\n color: transparent;\n }\n\n &:focus,\n &:not(:placeholder-shown) {\n padding-top: $form-floating-input-padding-t;\n padding-bottom: $form-floating-input-padding-b;\n }\n // Duplicated because `:-webkit-autofill` invalidates other selectors when grouped\n &:-webkit-autofill {\n padding-top: $form-floating-input-padding-t;\n padding-bottom: $form-floating-input-padding-b;\n }\n }\n\n > .form-select {\n padding-top: $form-floating-input-padding-t;\n padding-bottom: $form-floating-input-padding-b;\n }\n\n > .form-control:focus,\n > .form-control:not(:placeholder-shown),\n > .form-select {\n ~ label {\n opacity: $form-floating-label-opacity;\n transform: $form-floating-label-transform;\n }\n }\n // Duplicated because `:-webkit-autofill` invalidates other selectors when grouped\n > .form-control:-webkit-autofill {\n ~ label {\n opacity: $form-floating-label-opacity;\n transform: $form-floating-label-transform;\n }\n }\n // stylelint-enable no-duplicate-selectors\n}\n","//\n// Base styles\n//\n\n.input-group {\n position: relative;\n display: flex;\n flex-wrap: wrap; // For form validation feedback\n align-items: stretch;\n width: 100%;\n\n > .form-control,\n > .form-select {\n position: relative; // For focus state's z-index\n flex: 1 1 auto;\n width: 1%;\n min-width: 0; // https://stackoverflow.com/questions/36247140/why-dont-flex-items-shrink-past-content-size\n }\n\n // Bring the \"active\" form control to the top of surrounding elements\n > .form-control:focus,\n > .form-select:focus {\n z-index: 3;\n }\n\n // Ensure buttons are always above inputs for more visually pleasing borders.\n // This isn't needed for `.input-group-text` since it shares the same border-color\n // as our inputs.\n .btn {\n position: relative;\n z-index: 2;\n\n &:focus {\n z-index: 3;\n }\n }\n}\n\n\n// Textual addons\n//\n// Serves as a catch-all element for any text or radio/checkbox input you wish\n// to prepend or append to an input.\n\n.input-group-text {\n display: flex;\n align-items: center;\n padding: $input-group-addon-padding-y $input-group-addon-padding-x;\n @include font-size($input-font-size); // Match inputs\n font-weight: $input-group-addon-font-weight;\n line-height: $input-line-height;\n color: $input-group-addon-color;\n text-align: center;\n white-space: nowrap;\n background-color: $input-group-addon-bg;\n border: $input-border-width solid $input-group-addon-border-color;\n @include border-radius($input-border-radius);\n}\n\n\n// Sizing\n//\n// Remix the default form control sizing classes into new ones for easier\n// manipulation.\n\n.input-group-lg > .form-control,\n.input-group-lg > .form-select,\n.input-group-lg > .input-group-text,\n.input-group-lg > .btn {\n padding: $input-padding-y-lg $input-padding-x-lg;\n @include font-size($input-font-size-lg);\n @include border-radius($input-border-radius-lg);\n}\n\n.input-group-sm > .form-control,\n.input-group-sm > .form-select,\n.input-group-sm > .input-group-text,\n.input-group-sm > .btn {\n padding: $input-padding-y-sm $input-padding-x-sm;\n @include font-size($input-font-size-sm);\n @include border-radius($input-border-radius-sm);\n}\n\n.input-group-lg > .form-select,\n.input-group-sm > .form-select {\n padding-right: $form-select-padding-x + $form-select-indicator-padding;\n}\n\n\n// Rounded corners\n//\n// These rulesets must come after the sizing ones to properly override sm and lg\n// border-radius values when extending. They're more specific than we'd like\n// with the `.input-group >` part, but without it, we cannot override the sizing.\n\n// stylelint-disable-next-line no-duplicate-selectors\n.input-group {\n &:not(.has-validation) {\n > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),\n > .dropdown-toggle:nth-last-child(n + 3) {\n @include border-end-radius(0);\n }\n }\n\n &.has-validation {\n > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu),\n > .dropdown-toggle:nth-last-child(n + 4) {\n @include border-end-radius(0);\n }\n }\n\n $validation-messages: \"\";\n @each $state in map-keys($form-validation-states) {\n $validation-messages: $validation-messages + \":not(.\" + unquote($state) + \"-tooltip)\" + \":not(.\" + unquote($state) + \"-feedback)\";\n }\n\n > :not(:first-child):not(.dropdown-menu)#{$validation-messages} {\n margin-left: -$input-border-width;\n @include border-start-radius(0);\n }\n}\n","// This mixin uses an `if()` technique to be compatible with Dart Sass\n// See https://github.com/sass/sass/issues/1873#issuecomment-152293725 for more details\n\n// scss-docs-start form-validation-mixins\n@mixin form-validation-state-selector($state) {\n @if ($state == \"valid\" or $state == \"invalid\") {\n .was-validated #{if(&, \"&\", \"\")}:#{$state},\n #{if(&, \"&\", \"\")}.is-#{$state} {\n @content;\n }\n } @else {\n #{if(&, \"&\", \"\")}.is-#{$state} {\n @content;\n }\n }\n}\n\n@mixin form-validation-state(\n $state,\n $color,\n $icon,\n $tooltip-color: color-contrast($color),\n $tooltip-bg-color: rgba($color, $form-feedback-tooltip-opacity),\n $focus-box-shadow: 0 0 $input-btn-focus-blur $input-focus-width rgba($color, $input-btn-focus-color-opacity)\n) {\n .#{$state}-feedback {\n display: none;\n width: 100%;\n margin-top: $form-feedback-margin-top;\n @include font-size($form-feedback-font-size);\n font-style: $form-feedback-font-style;\n color: $color;\n }\n\n .#{$state}-tooltip {\n position: absolute;\n top: 100%;\n z-index: 5;\n display: none;\n max-width: 100%; // Contain to parent when possible\n padding: $form-feedback-tooltip-padding-y $form-feedback-tooltip-padding-x;\n margin-top: .1rem;\n @include font-size($form-feedback-tooltip-font-size);\n line-height: $form-feedback-tooltip-line-height;\n color: $tooltip-color;\n background-color: $tooltip-bg-color;\n @include border-radius($form-feedback-tooltip-border-radius);\n }\n\n @include form-validation-state-selector($state) {\n ~ .#{$state}-feedback,\n ~ .#{$state}-tooltip {\n display: block;\n }\n }\n\n .form-control {\n @include form-validation-state-selector($state) {\n border-color: $color;\n\n @if $enable-validation-icons {\n padding-right: $input-height-inner;\n background-image: escape-svg($icon);\n background-repeat: no-repeat;\n background-position: right $input-height-inner-quarter center;\n background-size: $input-height-inner-half $input-height-inner-half;\n }\n\n &:focus {\n border-color: $color;\n box-shadow: $focus-box-shadow;\n }\n }\n }\n\n // stylelint-disable-next-line selector-no-qualifying-type\n textarea.form-control {\n @include form-validation-state-selector($state) {\n @if $enable-validation-icons {\n padding-right: $input-height-inner;\n background-position: top $input-height-inner-quarter right $input-height-inner-quarter;\n }\n }\n }\n\n .form-select {\n @include form-validation-state-selector($state) {\n border-color: $color;\n\n @if $enable-validation-icons {\n &:not([multiple]):not([size]),\n &:not([multiple])[size=\"1\"] {\n padding-right: $form-select-feedback-icon-padding-end;\n background-image: escape-svg($form-select-indicator), escape-svg($icon);\n background-position: $form-select-bg-position, $form-select-feedback-icon-position;\n background-size: $form-select-bg-size, $form-select-feedback-icon-size;\n }\n }\n\n &:focus {\n border-color: $color;\n box-shadow: $focus-box-shadow;\n }\n }\n }\n\n .form-check-input {\n @include form-validation-state-selector($state) {\n border-color: $color;\n\n &:checked {\n background-color: $color;\n }\n\n &:focus {\n box-shadow: $focus-box-shadow;\n }\n\n ~ .form-check-label {\n color: $color;\n }\n }\n }\n .form-check-inline .form-check-input {\n ~ .#{$state}-feedback {\n margin-left: .5em;\n }\n }\n\n .input-group .form-control,\n .input-group .form-select {\n @include form-validation-state-selector($state) {\n @if $state == \"valid\" {\n z-index: 1;\n } @else if $state == \"invalid\" {\n z-index: 2;\n }\n &:focus {\n z-index: 3;\n }\n }\n }\n}\n// scss-docs-end form-validation-mixins\n","//\n// Base styles\n//\n\n.btn {\n display: inline-block;\n font-family: $btn-font-family;\n font-weight: $btn-font-weight;\n line-height: $btn-line-height;\n color: $body-color;\n text-align: center;\n text-decoration: if($link-decoration == none, null, none);\n white-space: $btn-white-space;\n vertical-align: middle;\n cursor: if($enable-button-pointers, pointer, null);\n user-select: none;\n background-color: transparent;\n border: $btn-border-width solid transparent;\n @include button-size($btn-padding-y, $btn-padding-x, $btn-font-size, $btn-border-radius);\n @include transition($btn-transition);\n\n &:hover {\n color: $body-color;\n text-decoration: if($link-hover-decoration == underline, none, null);\n }\n\n .btn-check:focus + &,\n &:focus {\n outline: 0;\n box-shadow: $btn-focus-box-shadow;\n }\n\n .btn-check:checked + &,\n .btn-check:active + &,\n &:active,\n &.active {\n @include box-shadow($btn-active-box-shadow);\n\n &:focus {\n @include box-shadow($btn-focus-box-shadow, $btn-active-box-shadow);\n }\n }\n\n &:disabled,\n &.disabled,\n fieldset:disabled & {\n pointer-events: none;\n opacity: $btn-disabled-opacity;\n @include box-shadow(none);\n }\n}\n\n\n//\n// Alternate buttons\n//\n\n// scss-docs-start btn-variant-loops\n@each $color, $value in $theme-colors {\n .btn-#{$color} {\n @include button-variant($value, $value);\n }\n}\n\n@each $color, $value in $theme-colors {\n .btn-outline-#{$color} {\n @include button-outline-variant($value);\n }\n}\n// scss-docs-end btn-variant-loops\n\n\n//\n// Link buttons\n//\n\n// Make a button look and behave like a link\n.btn-link {\n font-weight: $font-weight-normal;\n color: $btn-link-color;\n text-decoration: $link-decoration;\n\n &:hover {\n color: $btn-link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n\n &:focus {\n text-decoration: $link-hover-decoration;\n }\n\n &:disabled,\n &.disabled {\n color: $btn-link-disabled-color;\n }\n\n // No need for an active state here\n}\n\n\n//\n// Button Sizes\n//\n\n.btn-lg {\n @include button-size($btn-padding-y-lg, $btn-padding-x-lg, $btn-font-size-lg, $btn-border-radius-lg);\n}\n\n.btn-sm {\n @include button-size($btn-padding-y-sm, $btn-padding-x-sm, $btn-font-size-sm, $btn-border-radius-sm);\n}\n","// Button variants\n//\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n\n// scss-docs-start btn-variant-mixin\n@mixin button-variant(\n $background,\n $border,\n $color: color-contrast($background),\n $hover-background: if($color == $color-contrast-light, shade-color($background, $btn-hover-bg-shade-amount), tint-color($background, $btn-hover-bg-tint-amount)),\n $hover-border: if($color == $color-contrast-light, shade-color($border, $btn-hover-border-shade-amount), tint-color($border, $btn-hover-border-tint-amount)),\n $hover-color: color-contrast($hover-background),\n $active-background: if($color == $color-contrast-light, shade-color($background, $btn-active-bg-shade-amount), tint-color($background, $btn-active-bg-tint-amount)),\n $active-border: if($color == $color-contrast-light, shade-color($border, $btn-active-border-shade-amount), tint-color($border, $btn-active-border-tint-amount)),\n $active-color: color-contrast($active-background),\n $disabled-background: $background,\n $disabled-border: $border,\n $disabled-color: color-contrast($disabled-background)\n) {\n color: $color;\n @include gradient-bg($background);\n border-color: $border;\n @include box-shadow($btn-box-shadow);\n\n &:hover {\n color: $hover-color;\n @include gradient-bg($hover-background);\n border-color: $hover-border;\n }\n\n .btn-check:focus + &,\n &:focus {\n color: $hover-color;\n @include gradient-bg($hover-background);\n border-color: $hover-border;\n @if $enable-shadows {\n @include box-shadow($btn-box-shadow, 0 0 0 $btn-focus-width rgba(mix($color, $border, 15%), .5));\n } @else {\n // Avoid using mixin so we can pass custom focus shadow properly\n box-shadow: 0 0 0 $btn-focus-width rgba(mix($color, $border, 15%), .5);\n }\n }\n\n .btn-check:checked + &,\n .btn-check:active + &,\n &:active,\n &.active,\n .show > &.dropdown-toggle {\n color: $active-color;\n background-color: $active-background;\n // Remove CSS gradients if they're enabled\n background-image: if($enable-gradients, none, null);\n border-color: $active-border;\n\n &:focus {\n @if $enable-shadows {\n @include box-shadow($btn-active-box-shadow, 0 0 0 $btn-focus-width rgba(mix($color, $border, 15%), .5));\n } @else {\n // Avoid using mixin so we can pass custom focus shadow properly\n box-shadow: 0 0 0 $btn-focus-width rgba(mix($color, $border, 15%), .5);\n }\n }\n }\n\n &:disabled,\n &.disabled {\n color: $disabled-color;\n background-color: $disabled-background;\n // Remove CSS gradients if they're enabled\n background-image: if($enable-gradients, none, null);\n border-color: $disabled-border;\n }\n}\n// scss-docs-end btn-variant-mixin\n\n// scss-docs-start btn-outline-variant-mixin\n@mixin button-outline-variant(\n $color,\n $color-hover: color-contrast($color),\n $active-background: $color,\n $active-border: $color,\n $active-color: color-contrast($active-background)\n) {\n color: $color;\n border-color: $color;\n\n &:hover {\n color: $color-hover;\n background-color: $active-background;\n border-color: $active-border;\n }\n\n .btn-check:focus + &,\n &:focus {\n box-shadow: 0 0 0 $btn-focus-width rgba($color, .5);\n }\n\n .btn-check:checked + &,\n .btn-check:active + &,\n &:active,\n &.active,\n &.dropdown-toggle.show {\n color: $active-color;\n background-color: $active-background;\n border-color: $active-border;\n\n &:focus {\n @if $enable-shadows {\n @include box-shadow($btn-active-box-shadow, 0 0 0 $btn-focus-width rgba($color, .5));\n } @else {\n // Avoid using mixin so we can pass custom focus shadow properly\n box-shadow: 0 0 0 $btn-focus-width rgba($color, .5);\n }\n }\n }\n\n &:disabled,\n &.disabled {\n color: $color;\n background-color: transparent;\n }\n}\n// scss-docs-end btn-outline-variant-mixin\n\n// scss-docs-start btn-size-mixin\n@mixin button-size($padding-y, $padding-x, $font-size, $border-radius) {\n padding: $padding-y $padding-x;\n @include font-size($font-size);\n // Manually declare to provide an override to the browser default\n @include border-radius($border-radius, 0);\n}\n// scss-docs-end btn-size-mixin\n",".fade {\n @include transition($transition-fade);\n\n &:not(.show) {\n opacity: 0;\n }\n}\n\n// scss-docs-start collapse-classes\n.collapse {\n &:not(.show) {\n display: none;\n }\n}\n\n.collapsing {\n height: 0;\n overflow: hidden;\n @include transition($transition-collapse);\n\n &.collapse-horizontal {\n width: 0;\n height: auto;\n @include transition($transition-collapse-width);\n }\n}\n// scss-docs-end collapse-classes\n","// The dropdown wrapper (`<div>`)\n.dropup,\n.dropend,\n.dropdown,\n.dropstart {\n position: relative;\n}\n\n.dropdown-toggle {\n white-space: nowrap;\n\n // Generate the caret automatically\n @include caret();\n}\n\n// The dropdown menu\n.dropdown-menu {\n position: absolute;\n z-index: $zindex-dropdown;\n display: none; // none by default, but block on \"open\" of the menu\n min-width: $dropdown-min-width;\n padding: $dropdown-padding-y $dropdown-padding-x;\n margin: 0; // Override default margin of ul\n @include font-size($dropdown-font-size);\n color: $dropdown-color;\n text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)\n list-style: none;\n background-color: $dropdown-bg;\n background-clip: padding-box;\n border: $dropdown-border-width solid $dropdown-border-color;\n @include border-radius($dropdown-border-radius);\n @include box-shadow($dropdown-box-shadow);\n\n &[data-bs-popper] {\n top: 100%;\n left: 0;\n margin-top: $dropdown-spacer;\n }\n}\n\n// scss-docs-start responsive-breakpoints\n// We deliberately hardcode the `bs-` prefix because we check\n// this custom property in JS to determine Popper's positioning\n\n@each $breakpoint in map-keys($grid-breakpoints) {\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n .dropdown-menu#{$infix}-start {\n --bs-position: start;\n\n &[data-bs-popper] {\n right: auto;\n left: 0;\n }\n }\n\n .dropdown-menu#{$infix}-end {\n --bs-position: end;\n\n &[data-bs-popper] {\n right: 0;\n left: auto;\n }\n }\n }\n}\n// scss-docs-end responsive-breakpoints\n\n// Allow for dropdowns to go bottom up (aka, dropup-menu)\n// Just add .dropup after the standard .dropdown class and you're set.\n.dropup {\n .dropdown-menu[data-bs-popper] {\n top: auto;\n bottom: 100%;\n margin-top: 0;\n margin-bottom: $dropdown-spacer;\n }\n\n .dropdown-toggle {\n @include caret(up);\n }\n}\n\n.dropend {\n .dropdown-menu[data-bs-popper] {\n top: 0;\n right: auto;\n left: 100%;\n margin-top: 0;\n margin-left: $dropdown-spacer;\n }\n\n .dropdown-toggle {\n @include caret(end);\n &::after {\n vertical-align: 0;\n }\n }\n}\n\n.dropstart {\n .dropdown-menu[data-bs-popper] {\n top: 0;\n right: 100%;\n left: auto;\n margin-top: 0;\n margin-right: $dropdown-spacer;\n }\n\n .dropdown-toggle {\n @include caret(start);\n &::before {\n vertical-align: 0;\n }\n }\n}\n\n\n// Dividers (basically an `<hr>`) within the dropdown\n.dropdown-divider {\n height: 0;\n margin: $dropdown-divider-margin-y 0;\n overflow: hidden;\n border-top: 1px solid $dropdown-divider-bg;\n}\n\n// Links, buttons, and more within the dropdown menu\n//\n// `<button>`-specific styles are denoted with `// For <button>s`\n.dropdown-item {\n display: block;\n width: 100%; // For `<button>`s\n padding: $dropdown-item-padding-y $dropdown-item-padding-x;\n clear: both;\n font-weight: $font-weight-normal;\n color: $dropdown-link-color;\n text-align: inherit; // For `<button>`s\n text-decoration: if($link-decoration == none, null, none);\n white-space: nowrap; // prevent links from randomly breaking onto new lines\n background-color: transparent; // For `<button>`s\n border: 0; // For `<button>`s\n\n // Prevent dropdown overflow if there's no padding\n // See https://github.com/twbs/bootstrap/pull/27703\n @if $dropdown-padding-y == 0 {\n &:first-child {\n @include border-top-radius($dropdown-inner-border-radius);\n }\n\n &:last-child {\n @include border-bottom-radius($dropdown-inner-border-radius);\n }\n }\n\n &:hover,\n &:focus {\n color: $dropdown-link-hover-color;\n text-decoration: if($link-hover-decoration == underline, none, null);\n @include gradient-bg($dropdown-link-hover-bg);\n }\n\n &.active,\n &:active {\n color: $dropdown-link-active-color;\n text-decoration: none;\n @include gradient-bg($dropdown-link-active-bg);\n }\n\n &.disabled,\n &:disabled {\n color: $dropdown-link-disabled-color;\n pointer-events: none;\n background-color: transparent;\n // Remove CSS gradients if they're enabled\n background-image: if($enable-gradients, none, null);\n }\n}\n\n.dropdown-menu.show {\n display: block;\n}\n\n// Dropdown section headers\n.dropdown-header {\n display: block;\n padding: $dropdown-header-padding;\n margin-bottom: 0; // for use with heading elements\n @include font-size($font-size-sm);\n color: $dropdown-header-color;\n white-space: nowrap; // as with > li > a\n}\n\n// Dropdown text\n.dropdown-item-text {\n display: block;\n padding: $dropdown-item-padding-y $dropdown-item-padding-x;\n color: $dropdown-link-color;\n}\n\n// Dark dropdowns\n.dropdown-menu-dark {\n color: $dropdown-dark-color;\n background-color: $dropdown-dark-bg;\n border-color: $dropdown-dark-border-color;\n @include box-shadow($dropdown-dark-box-shadow);\n\n .dropdown-item {\n color: $dropdown-dark-link-color;\n\n &:hover,\n &:focus {\n color: $dropdown-dark-link-hover-color;\n @include gradient-bg($dropdown-dark-link-hover-bg);\n }\n\n &.active,\n &:active {\n color: $dropdown-dark-link-active-color;\n @include gradient-bg($dropdown-dark-link-active-bg);\n }\n\n &.disabled,\n &:disabled {\n color: $dropdown-dark-link-disabled-color;\n }\n }\n\n .dropdown-divider {\n border-color: $dropdown-dark-divider-bg;\n }\n\n .dropdown-item-text {\n color: $dropdown-dark-link-color;\n }\n\n .dropdown-header {\n color: $dropdown-dark-header-color;\n }\n}\n","// scss-docs-start caret-mixins\n@mixin caret-down {\n border-top: $caret-width solid;\n border-right: $caret-width solid transparent;\n border-bottom: 0;\n border-left: $caret-width solid transparent;\n}\n\n@mixin caret-up {\n border-top: 0;\n border-right: $caret-width solid transparent;\n border-bottom: $caret-width solid;\n border-left: $caret-width solid transparent;\n}\n\n@mixin caret-end {\n border-top: $caret-width solid transparent;\n border-right: 0;\n border-bottom: $caret-width solid transparent;\n border-left: $caret-width solid;\n}\n\n@mixin caret-start {\n border-top: $caret-width solid transparent;\n border-right: $caret-width solid;\n border-bottom: $caret-width solid transparent;\n}\n\n@mixin caret($direction: down) {\n @if $enable-caret {\n &::after {\n display: inline-block;\n margin-left: $caret-spacing;\n vertical-align: $caret-vertical-align;\n content: \"\";\n @if $direction == down {\n @include caret-down();\n } @else if $direction == up {\n @include caret-up();\n } @else if $direction == end {\n @include caret-end();\n }\n }\n\n @if $direction == start {\n &::after {\n display: none;\n }\n\n &::before {\n display: inline-block;\n margin-right: $caret-spacing;\n vertical-align: $caret-vertical-align;\n content: \"\";\n @include caret-start();\n }\n }\n\n &:empty::after {\n margin-left: 0;\n }\n }\n}\n// scss-docs-end caret-mixins\n","// Make the div behave like a button\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-flex;\n vertical-align: middle; // match .btn alignment given font-size hack above\n\n > .btn {\n position: relative;\n flex: 1 1 auto;\n }\n\n // Bring the hover, focused, and \"active\" buttons to the front to overlay\n // the borders properly\n > .btn-check:checked + .btn,\n > .btn-check:focus + .btn,\n > .btn:hover,\n > .btn:focus,\n > .btn:active,\n > .btn.active {\n z-index: 1;\n }\n}\n\n// Optional: Group multiple button groups together for a toolbar\n.btn-toolbar {\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-start;\n\n .input-group {\n width: auto;\n }\n}\n\n.btn-group {\n // Prevent double borders when buttons are next to each other\n > .btn:not(:first-child),\n > .btn-group:not(:first-child) {\n margin-left: -$btn-border-width;\n }\n\n // Reset rounded corners\n > .btn:not(:last-child):not(.dropdown-toggle),\n > .btn-group:not(:last-child) > .btn {\n @include border-end-radius(0);\n }\n\n // The left radius should be 0 if the button is:\n // - the \"third or more\" child\n // - the second child and the previous element isn't `.btn-check` (making it the first child visually)\n // - part of a btn-group which isn't the first child\n > .btn:nth-child(n + 3),\n > :not(.btn-check) + .btn,\n > .btn-group:not(:first-child) > .btn {\n @include border-start-radius(0);\n }\n}\n\n// Sizing\n//\n// Remix the default button sizing classes into new ones for easier manipulation.\n\n.btn-group-sm > .btn { @extend .btn-sm; }\n.btn-group-lg > .btn { @extend .btn-lg; }\n\n\n//\n// Split button dropdowns\n//\n\n.dropdown-toggle-split {\n padding-right: $btn-padding-x * .75;\n padding-left: $btn-padding-x * .75;\n\n &::after,\n .dropup &::after,\n .dropend &::after {\n margin-left: 0;\n }\n\n .dropstart &::before {\n margin-right: 0;\n }\n}\n\n.btn-sm + .dropdown-toggle-split {\n padding-right: $btn-padding-x-sm * .75;\n padding-left: $btn-padding-x-sm * .75;\n}\n\n.btn-lg + .dropdown-toggle-split {\n padding-right: $btn-padding-x-lg * .75;\n padding-left: $btn-padding-x-lg * .75;\n}\n\n\n// The clickable button for toggling the menu\n// Set the same inset shadow as the :active state\n.btn-group.show .dropdown-toggle {\n @include box-shadow($btn-active-box-shadow);\n\n // Show no shadow for `.btn-link` since it has no other button styles.\n &.btn-link {\n @include box-shadow(none);\n }\n}\n\n\n//\n// Vertical button groups\n//\n\n.btn-group-vertical {\n flex-direction: column;\n align-items: flex-start;\n justify-content: center;\n\n > .btn,\n > .btn-group {\n width: 100%;\n }\n\n > .btn:not(:first-child),\n > .btn-group:not(:first-child) {\n margin-top: -$btn-border-width;\n }\n\n // Reset rounded corners\n > .btn:not(:last-child):not(.dropdown-toggle),\n > .btn-group:not(:last-child) > .btn {\n @include border-bottom-radius(0);\n }\n\n > .btn ~ .btn,\n > .btn-group:not(:first-child) > .btn {\n @include border-top-radius(0);\n }\n}\n","// Base class\n//\n// Kickstart any navigation component with a set of style resets. Works with\n// `<nav>`s, `<ul>`s or `<ol>`s.\n\n.nav {\n display: flex;\n flex-wrap: wrap;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n}\n\n.nav-link {\n display: block;\n padding: $nav-link-padding-y $nav-link-padding-x;\n @include font-size($nav-link-font-size);\n font-weight: $nav-link-font-weight;\n color: $nav-link-color;\n text-decoration: if($link-decoration == none, null, none);\n @include transition($nav-link-transition);\n\n &:hover,\n &:focus {\n color: $nav-link-hover-color;\n text-decoration: if($link-hover-decoration == underline, none, null);\n }\n\n // Disabled state lightens text\n &.disabled {\n color: $nav-link-disabled-color;\n pointer-events: none;\n cursor: default;\n }\n}\n\n//\n// Tabs\n//\n\n.nav-tabs {\n border-bottom: $nav-tabs-border-width solid $nav-tabs-border-color;\n\n .nav-link {\n margin-bottom: -$nav-tabs-border-width;\n background: none;\n border: $nav-tabs-border-width solid transparent;\n @include border-top-radius($nav-tabs-border-radius);\n\n &:hover,\n &:focus {\n border-color: $nav-tabs-link-hover-border-color;\n // Prevents active .nav-link tab overlapping focus outline of previous/next .nav-link\n isolation: isolate;\n }\n\n &.disabled {\n color: $nav-link-disabled-color;\n background-color: transparent;\n border-color: transparent;\n }\n }\n\n .nav-link.active,\n .nav-item.show .nav-link {\n color: $nav-tabs-link-active-color;\n background-color: $nav-tabs-link-active-bg;\n border-color: $nav-tabs-link-active-border-color;\n }\n\n .dropdown-menu {\n // Make dropdown border overlap tab border\n margin-top: -$nav-tabs-border-width;\n // Remove the top rounded corners here since there is a hard edge above the menu\n @include border-top-radius(0);\n }\n}\n\n\n//\n// Pills\n//\n\n.nav-pills {\n .nav-link {\n background: none;\n border: 0;\n @include border-radius($nav-pills-border-radius);\n }\n\n .nav-link.active,\n .show > .nav-link {\n color: $nav-pills-link-active-color;\n @include gradient-bg($nav-pills-link-active-bg);\n }\n}\n\n\n//\n// Justified variants\n//\n\n.nav-fill {\n > .nav-link,\n .nav-item {\n flex: 1 1 auto;\n text-align: center;\n }\n}\n\n.nav-justified {\n > .nav-link,\n .nav-item {\n flex-basis: 0;\n flex-grow: 1;\n text-align: center;\n }\n}\n\n.nav-fill,\n.nav-justified {\n .nav-item .nav-link {\n width: 100%; // Make sure button will grow\n }\n}\n\n\n// Tabbable tabs\n//\n// Hide tabbable panes to start, show them when `.active`\n\n.tab-content {\n > .tab-pane {\n display: none;\n }\n > .active {\n display: block;\n }\n}\n","// Contents\n//\n// Navbar\n// Navbar brand\n// Navbar nav\n// Navbar text\n// Responsive navbar\n// Navbar position\n// Navbar themes\n\n\n// Navbar\n//\n// Provide a static navbar from which we expand to create full-width, fixed, and\n// other navbar variations.\n\n.navbar {\n position: relative;\n display: flex;\n flex-wrap: wrap; // allow us to do the line break for collapsing content\n align-items: center;\n justify-content: space-between; // space out brand from logo\n padding-top: $navbar-padding-y;\n padding-right: $navbar-padding-x; // default: null\n padding-bottom: $navbar-padding-y;\n padding-left: $navbar-padding-x; // default: null\n @include gradient-bg();\n\n // Because flex properties aren't inherited, we need to redeclare these first\n // few properties so that content nested within behave properly.\n // The `flex-wrap` property is inherited to simplify the expanded navbars\n %container-flex-properties {\n display: flex;\n flex-wrap: inherit;\n align-items: center;\n justify-content: space-between;\n }\n\n > .container,\n > .container-fluid {\n @extend %container-flex-properties;\n }\n\n @each $breakpoint, $container-max-width in $container-max-widths {\n > .container#{breakpoint-infix($breakpoint, $container-max-widths)} {\n @extend %container-flex-properties;\n }\n }\n}\n\n\n// Navbar brand\n//\n// Used for brand, project, or site names.\n\n.navbar-brand {\n padding-top: $navbar-brand-padding-y;\n padding-bottom: $navbar-brand-padding-y;\n margin-right: $navbar-brand-margin-end;\n @include font-size($navbar-brand-font-size);\n text-decoration: if($link-decoration == none, null, none);\n white-space: nowrap;\n\n &:hover,\n &:focus {\n text-decoration: if($link-hover-decoration == underline, none, null);\n }\n}\n\n\n// Navbar nav\n//\n// Custom navbar navigation (doesn't require `.nav`, but does make use of `.nav-link`).\n\n.navbar-nav {\n display: flex;\n flex-direction: column; // cannot use `inherit` to get the `.navbar`s value\n padding-left: 0;\n margin-bottom: 0;\n list-style: none;\n\n .nav-link {\n padding-right: 0;\n padding-left: 0;\n }\n\n .dropdown-menu {\n position: static;\n }\n}\n\n\n// Navbar text\n//\n//\n\n.navbar-text {\n padding-top: $nav-link-padding-y;\n padding-bottom: $nav-link-padding-y;\n}\n\n\n// Responsive navbar\n//\n// Custom styles for responsive collapsing and toggling of navbar contents.\n// Powered by the collapse Bootstrap JavaScript plugin.\n\n// When collapsed, prevent the toggleable navbar contents from appearing in\n// the default flexbox row orientation. Requires the use of `flex-wrap: wrap`\n// on the `.navbar` parent.\n.navbar-collapse {\n flex-basis: 100%;\n flex-grow: 1;\n // For always expanded or extra full navbars, ensure content aligns itself\n // properly vertically. Can be easily overridden with flex utilities.\n align-items: center;\n}\n\n// Button for toggling the navbar when in its collapsed state\n.navbar-toggler {\n padding: $navbar-toggler-padding-y $navbar-toggler-padding-x;\n @include font-size($navbar-toggler-font-size);\n line-height: 1;\n background-color: transparent; // remove default button style\n border: $border-width solid transparent; // remove default button style\n @include border-radius($navbar-toggler-border-radius);\n @include transition($navbar-toggler-transition);\n\n &:hover {\n text-decoration: none;\n }\n\n &:focus {\n text-decoration: none;\n outline: 0;\n box-shadow: 0 0 0 $navbar-toggler-focus-width;\n }\n}\n\n// Keep as a separate element so folks can easily override it with another icon\n// or image file as needed.\n.navbar-toggler-icon {\n display: inline-block;\n width: 1.5em;\n height: 1.5em;\n vertical-align: middle;\n background-repeat: no-repeat;\n background-position: center;\n background-size: 100%;\n}\n\n.navbar-nav-scroll {\n max-height: var(--#{$variable-prefix}scroll-height, 75vh);\n overflow-y: auto;\n}\n\n// scss-docs-start navbar-expand-loop\n// Generate series of `.navbar-expand-*` responsive classes for configuring\n// where your navbar collapses.\n.navbar-expand {\n @each $breakpoint in map-keys($grid-breakpoints) {\n $next: breakpoint-next($breakpoint, $grid-breakpoints);\n $infix: breakpoint-infix($next, $grid-breakpoints);\n\n // stylelint-disable-next-line scss/selector-no-union-class-name\n &#{$infix} {\n @include media-breakpoint-up($next) {\n flex-wrap: nowrap;\n justify-content: flex-start;\n\n .navbar-nav {\n flex-direction: row;\n\n .dropdown-menu {\n position: absolute;\n }\n\n .nav-link {\n padding-right: $navbar-nav-link-padding-x;\n padding-left: $navbar-nav-link-padding-x;\n }\n }\n\n .navbar-nav-scroll {\n overflow: visible;\n }\n\n .navbar-collapse {\n display: flex !important; // stylelint-disable-line declaration-no-important\n flex-basis: auto;\n }\n\n .navbar-toggler {\n display: none;\n }\n\n .offcanvas-header {\n display: none;\n }\n\n .offcanvas {\n position: inherit;\n bottom: 0;\n z-index: 1000;\n flex-grow: 1;\n visibility: visible !important; // stylelint-disable-line declaration-no-important\n background-color: transparent;\n border-right: 0;\n border-left: 0;\n @include transition(none);\n transform: none;\n }\n .offcanvas-top,\n .offcanvas-bottom {\n height: auto;\n border-top: 0;\n border-bottom: 0;\n }\n\n .offcanvas-body {\n display: flex;\n flex-grow: 0;\n padding: 0;\n overflow-y: visible;\n }\n }\n }\n }\n}\n// scss-docs-end navbar-expand-loop\n\n// Navbar themes\n//\n// Styles for switching between navbars with light or dark background.\n\n// Dark links against a light background\n.navbar-light {\n .navbar-brand {\n color: $navbar-light-brand-color;\n\n &:hover,\n &:focus {\n color: $navbar-light-brand-hover-color;\n }\n }\n\n .navbar-nav {\n .nav-link {\n color: $navbar-light-color;\n\n &:hover,\n &:focus {\n color: $navbar-light-hover-color;\n }\n\n &.disabled {\n color: $navbar-light-disabled-color;\n }\n }\n\n .show > .nav-link,\n .nav-link.active {\n color: $navbar-light-active-color;\n }\n }\n\n .navbar-toggler {\n color: $navbar-light-color;\n border-color: $navbar-light-toggler-border-color;\n }\n\n .navbar-toggler-icon {\n background-image: escape-svg($navbar-light-toggler-icon-bg);\n }\n\n .navbar-text {\n color: $navbar-light-color;\n\n a,\n a:hover,\n a:focus {\n color: $navbar-light-active-color;\n }\n }\n}\n\n// White links against a dark background\n.navbar-dark {\n .navbar-brand {\n color: $navbar-dark-brand-color;\n\n &:hover,\n &:focus {\n color: $navbar-dark-brand-hover-color;\n }\n }\n\n .navbar-nav {\n .nav-link {\n color: $navbar-dark-color;\n\n &:hover,\n &:focus {\n color: $navbar-dark-hover-color;\n }\n\n &.disabled {\n color: $navbar-dark-disabled-color;\n }\n }\n\n .show > .nav-link,\n .nav-link.active {\n color: $navbar-dark-active-color;\n }\n }\n\n .navbar-toggler {\n color: $navbar-dark-color;\n border-color: $navbar-dark-toggler-border-color;\n }\n\n .navbar-toggler-icon {\n background-image: escape-svg($navbar-dark-toggler-icon-bg);\n }\n\n .navbar-text {\n color: $navbar-dark-color;\n a,\n a:hover,\n a:focus {\n color: $navbar-dark-active-color;\n }\n }\n}\n","//\n// Base styles\n//\n\n.card {\n position: relative;\n display: flex;\n flex-direction: column;\n min-width: 0; // See https://github.com/twbs/bootstrap/pull/22740#issuecomment-305868106\n height: $card-height;\n word-wrap: break-word;\n background-color: $card-bg;\n background-clip: border-box;\n border: $card-border-width solid $card-border-color;\n @include border-radius($card-border-radius);\n @include box-shadow($card-box-shadow);\n\n > hr {\n margin-right: 0;\n margin-left: 0;\n }\n\n > .list-group {\n border-top: inherit;\n border-bottom: inherit;\n\n &:first-child {\n border-top-width: 0;\n @include border-top-radius($card-inner-border-radius);\n }\n\n &:last-child {\n border-bottom-width: 0;\n @include border-bottom-radius($card-inner-border-radius);\n }\n }\n\n // Due to specificity of the above selector (`.card > .list-group`), we must\n // use a child selector here to prevent double borders.\n > .card-header + .list-group,\n > .list-group + .card-footer {\n border-top: 0;\n }\n}\n\n.card-body {\n // Enable `flex-grow: 1` for decks and groups so that card blocks take up\n // as much space as possible, ensuring footers are aligned to the bottom.\n flex: 1 1 auto;\n padding: $card-spacer-y $card-spacer-x;\n color: $card-color;\n}\n\n.card-title {\n margin-bottom: $card-title-spacer-y;\n}\n\n.card-subtitle {\n margin-top: -$card-title-spacer-y * .5;\n margin-bottom: 0;\n}\n\n.card-text:last-child {\n margin-bottom: 0;\n}\n\n.card-link {\n &:hover {\n text-decoration: if($link-hover-decoration == underline, none, null);\n }\n\n + .card-link {\n margin-left: $card-spacer-x;\n }\n}\n\n//\n// Optional textual caps\n//\n\n.card-header {\n padding: $card-cap-padding-y $card-cap-padding-x;\n margin-bottom: 0; // Removes the default margin-bottom of <hN>\n color: $card-cap-color;\n background-color: $card-cap-bg;\n border-bottom: $card-border-width solid $card-border-color;\n\n &:first-child {\n @include border-radius($card-inner-border-radius $card-inner-border-radius 0 0);\n }\n}\n\n.card-footer {\n padding: $card-cap-padding-y $card-cap-padding-x;\n color: $card-cap-color;\n background-color: $card-cap-bg;\n border-top: $card-border-width solid $card-border-color;\n\n &:last-child {\n @include border-radius(0 0 $card-inner-border-radius $card-inner-border-radius);\n }\n}\n\n\n//\n// Header navs\n//\n\n.card-header-tabs {\n margin-right: -$card-cap-padding-x * .5;\n margin-bottom: -$card-cap-padding-y;\n margin-left: -$card-cap-padding-x * .5;\n border-bottom: 0;\n\n @if $nav-tabs-link-active-bg != $card-bg {\n .nav-link.active {\n background-color: $card-bg;\n border-bottom-color: $card-bg;\n }\n }\n}\n\n.card-header-pills {\n margin-right: -$card-cap-padding-x * .5;\n margin-left: -$card-cap-padding-x * .5;\n}\n\n// Card image\n.card-img-overlay {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n padding: $card-img-overlay-padding;\n @include border-radius($card-inner-border-radius);\n}\n\n.card-img,\n.card-img-top,\n.card-img-bottom {\n width: 100%; // Required because we use flexbox and this inherently applies align-self: stretch\n}\n\n.card-img,\n.card-img-top {\n @include border-top-radius($card-inner-border-radius);\n}\n\n.card-img,\n.card-img-bottom {\n @include border-bottom-radius($card-inner-border-radius);\n}\n\n\n//\n// Card groups\n//\n\n.card-group {\n // The child selector allows nested `.card` within `.card-group`\n // to display properly.\n > .card {\n margin-bottom: $card-group-margin;\n }\n\n @include media-breakpoint-up(sm) {\n display: flex;\n flex-flow: row wrap;\n // The child selector allows nested `.card` within `.card-group`\n // to display properly.\n > .card {\n // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4\n flex: 1 0 0%;\n margin-bottom: 0;\n\n + .card {\n margin-left: 0;\n border-left: 0;\n }\n\n // Handle rounded corners\n @if $enable-rounded {\n &:not(:last-child) {\n @include border-end-radius(0);\n\n .card-img-top,\n .card-header {\n // stylelint-disable-next-line property-disallowed-list\n border-top-right-radius: 0;\n }\n .card-img-bottom,\n .card-footer {\n // stylelint-disable-next-line property-disallowed-list\n border-bottom-right-radius: 0;\n }\n }\n\n &:not(:first-child) {\n @include border-start-radius(0);\n\n .card-img-top,\n .card-header {\n // stylelint-disable-next-line property-disallowed-list\n border-top-left-radius: 0;\n }\n .card-img-bottom,\n .card-footer {\n // stylelint-disable-next-line property-disallowed-list\n border-bottom-left-radius: 0;\n }\n }\n }\n }\n }\n}\n","//\n// Base styles\n//\n\n.accordion-button {\n position: relative;\n display: flex;\n align-items: center;\n width: 100%;\n padding: $accordion-button-padding-y $accordion-button-padding-x;\n @include font-size($font-size-base);\n color: $accordion-button-color;\n text-align: left; // Reset button style\n background-color: $accordion-button-bg;\n border: 0;\n @include border-radius(0);\n overflow-anchor: none;\n @include transition($accordion-transition);\n\n &:not(.collapsed) {\n color: $accordion-button-active-color;\n background-color: $accordion-button-active-bg;\n box-shadow: inset 0 ($accordion-border-width * -1) 0 $accordion-border-color;\n\n &::after {\n background-image: escape-svg($accordion-button-active-icon);\n transform: $accordion-icon-transform;\n }\n }\n\n // Accordion icon\n &::after {\n flex-shrink: 0;\n width: $accordion-icon-width;\n height: $accordion-icon-width;\n margin-left: auto;\n content: \"\";\n background-image: escape-svg($accordion-button-icon);\n background-repeat: no-repeat;\n background-size: $accordion-icon-width;\n @include transition($accordion-icon-transition);\n }\n\n &:hover {\n z-index: 2;\n }\n\n &:focus {\n z-index: 3;\n border-color: $accordion-button-focus-border-color;\n outline: 0;\n box-shadow: $accordion-button-focus-box-shadow;\n }\n}\n\n.accordion-header {\n margin-bottom: 0;\n}\n\n.accordion-item {\n background-color: $accordion-bg;\n border: $accordion-border-width solid $accordion-border-color;\n\n &:first-of-type {\n @include border-top-radius($accordion-border-radius);\n\n .accordion-button {\n @include border-top-radius($accordion-inner-border-radius);\n }\n }\n\n &:not(:first-of-type) {\n border-top: 0;\n }\n\n // Only set a border-radius on the last item if the accordion is collapsed\n &:last-of-type {\n @include border-bottom-radius($accordion-border-radius);\n\n .accordion-button {\n &.collapsed {\n @include border-bottom-radius($accordion-inner-border-radius);\n }\n }\n\n .accordion-collapse {\n @include border-bottom-radius($accordion-border-radius);\n }\n }\n}\n\n.accordion-body {\n padding: $accordion-body-padding-y $accordion-body-padding-x;\n}\n\n\n// Flush accordion items\n//\n// Remove borders and border-radius to keep accordion items edge-to-edge.\n\n.accordion-flush {\n .accordion-collapse {\n border-width: 0;\n }\n\n .accordion-item {\n border-right: 0;\n border-left: 0;\n @include border-radius(0);\n\n &:first-child { border-top: 0; }\n &:last-child { border-bottom: 0; }\n\n .accordion-button {\n @include border-radius(0);\n }\n }\n}\n",".breadcrumb {\n display: flex;\n flex-wrap: wrap;\n padding: $breadcrumb-padding-y $breadcrumb-padding-x;\n margin-bottom: $breadcrumb-margin-bottom;\n @include font-size($breadcrumb-font-size);\n list-style: none;\n background-color: $breadcrumb-bg;\n @include border-radius($breadcrumb-border-radius);\n}\n\n.breadcrumb-item {\n // The separator between breadcrumbs (by default, a forward-slash: \"/\")\n + .breadcrumb-item {\n padding-left: $breadcrumb-item-padding-x;\n\n &::before {\n float: left; // Suppress inline spacings and underlining of the separator\n padding-right: $breadcrumb-item-padding-x;\n color: $breadcrumb-divider-color;\n content: var(--#{$variable-prefix}breadcrumb-divider, escape-svg($breadcrumb-divider)) #{\"/* rtl:\"} var(--#{$variable-prefix}breadcrumb-divider, escape-svg($breadcrumb-divider-flipped)) #{\"*/\"};\n }\n }\n\n &.active {\n color: $breadcrumb-active-color;\n }\n}\n",".pagination {\n display: flex;\n @include list-unstyled();\n}\n\n.page-link {\n position: relative;\n display: block;\n color: $pagination-color;\n text-decoration: if($link-decoration == none, null, none);\n background-color: $pagination-bg;\n border: $pagination-border-width solid $pagination-border-color;\n @include transition($pagination-transition);\n\n &:hover {\n z-index: 2;\n color: $pagination-hover-color;\n text-decoration: if($link-hover-decoration == underline, none, null);\n background-color: $pagination-hover-bg;\n border-color: $pagination-hover-border-color;\n }\n\n &:focus {\n z-index: 3;\n color: $pagination-focus-color;\n background-color: $pagination-focus-bg;\n outline: $pagination-focus-outline;\n box-shadow: $pagination-focus-box-shadow;\n }\n}\n\n.page-item {\n &:not(:first-child) .page-link {\n margin-left: $pagination-margin-start;\n }\n\n &.active .page-link {\n z-index: 3;\n color: $pagination-active-color;\n @include gradient-bg($pagination-active-bg);\n border-color: $pagination-active-border-color;\n }\n\n &.disabled .page-link {\n color: $pagination-disabled-color;\n pointer-events: none;\n background-color: $pagination-disabled-bg;\n border-color: $pagination-disabled-border-color;\n }\n}\n\n\n//\n// Sizing\n//\n@include pagination-size($pagination-padding-y, $pagination-padding-x, null, $pagination-border-radius);\n\n.pagination-lg {\n @include pagination-size($pagination-padding-y-lg, $pagination-padding-x-lg, $font-size-lg, $pagination-border-radius-lg);\n}\n\n.pagination-sm {\n @include pagination-size($pagination-padding-y-sm, $pagination-padding-x-sm, $font-size-sm, $pagination-border-radius-sm);\n}\n","// Pagination\n\n// scss-docs-start pagination-mixin\n@mixin pagination-size($padding-y, $padding-x, $font-size, $border-radius) {\n .page-link {\n padding: $padding-y $padding-x;\n @include font-size($font-size);\n }\n\n .page-item {\n @if $pagination-margin-start == (-$pagination-border-width) {\n &:first-child {\n .page-link {\n @include border-start-radius($border-radius);\n }\n }\n\n &:last-child {\n .page-link {\n @include border-end-radius($border-radius);\n }\n }\n } @else {\n //Add border-radius to all pageLinks in case they have left margin\n .page-link {\n @include border-radius($border-radius);\n }\n }\n }\n}\n// scss-docs-end pagination-mixin\n","// Base class\n//\n// Requires one of the contextual, color modifier classes for `color` and\n// `background-color`.\n\n.badge {\n display: inline-block;\n padding: $badge-padding-y $badge-padding-x;\n @include font-size($badge-font-size);\n font-weight: $badge-font-weight;\n line-height: 1;\n color: $badge-color;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n @include border-radius($badge-border-radius);\n @include gradient-bg();\n\n // Empty badges collapse automatically\n &:empty {\n display: none;\n }\n}\n\n// Quick fix for badges in buttons\n.btn .badge {\n position: relative;\n top: -1px;\n}\n","//\n// Base styles\n//\n\n.alert {\n position: relative;\n padding: $alert-padding-y $alert-padding-x;\n margin-bottom: $alert-margin-bottom;\n border: $alert-border-width solid transparent;\n @include border-radius($alert-border-radius);\n}\n\n// Headings for larger alerts\n.alert-heading {\n // Specified to prevent conflicts of changing $headings-color\n color: inherit;\n}\n\n// Provide class for links that match alerts\n.alert-link {\n font-weight: $alert-link-font-weight;\n}\n\n\n// Dismissible alerts\n//\n// Expand the right padding and account for the close button's positioning.\n\n.alert-dismissible {\n padding-right: $alert-dismissible-padding-r;\n\n // Adjust close link position\n .btn-close {\n position: absolute;\n top: 0;\n right: 0;\n z-index: $stretched-link-z-index + 1;\n padding: $alert-padding-y * 1.25 $alert-padding-x;\n }\n}\n\n\n// scss-docs-start alert-modifiers\n// Generate contextual modifier classes for colorizing the alert.\n\n@each $state, $value in $theme-colors {\n $alert-background: shift-color($value, $alert-bg-scale);\n $alert-border: shift-color($value, $alert-border-scale);\n $alert-color: shift-color($value, $alert-color-scale);\n @if (contrast-ratio($alert-background, $alert-color) < $min-contrast-ratio) {\n $alert-color: mix($value, color-contrast($alert-background), abs($alert-color-scale));\n }\n .alert-#{$state} {\n @include alert-variant($alert-background, $alert-border, $alert-color);\n }\n}\n// scss-docs-end alert-modifiers\n","// scss-docs-start alert-variant-mixin\n@mixin alert-variant($background, $border, $color) {\n color: $color;\n @include gradient-bg($background);\n border-color: $border;\n\n .alert-link {\n color: shade-color($color, 20%);\n }\n}\n// scss-docs-end alert-variant-mixin\n","// Disable animation if transitions are disabled\n\n// scss-docs-start progress-keyframes\n@if $enable-transitions {\n @keyframes progress-bar-stripes {\n 0% { background-position-x: $progress-height; }\n }\n}\n// scss-docs-end progress-keyframes\n\n.progress {\n display: flex;\n height: $progress-height;\n overflow: hidden; // force rounded corners by cropping it\n @include font-size($progress-font-size);\n background-color: $progress-bg;\n @include border-radius($progress-border-radius);\n @include box-shadow($progress-box-shadow);\n}\n\n.progress-bar {\n display: flex;\n flex-direction: column;\n justify-content: center;\n overflow: hidden;\n color: $progress-bar-color;\n text-align: center;\n white-space: nowrap;\n background-color: $progress-bar-bg;\n @include transition($progress-bar-transition);\n}\n\n.progress-bar-striped {\n @include gradient-striped();\n background-size: $progress-height $progress-height;\n}\n\n@if $enable-transitions {\n .progress-bar-animated {\n animation: $progress-bar-animation-timing progress-bar-stripes;\n\n @if $enable-reduced-motion {\n @media (prefers-reduced-motion: reduce) {\n animation: none;\n }\n }\n }\n}\n","// Base class\n//\n// Easily usable on <ul>, <ol>, or <div>.\n\n.list-group {\n display: flex;\n flex-direction: column;\n\n // No need to set list-style: none; since .list-group-item is block level\n padding-left: 0; // reset padding because ul and ol\n margin-bottom: 0;\n @include border-radius($list-group-border-radius);\n}\n\n.list-group-numbered {\n list-style-type: none;\n counter-reset: section;\n\n > li::before {\n // Increments only this instance of the section counter\n content: counters(section, \".\") \". \";\n counter-increment: section;\n }\n}\n\n\n// Interactive list items\n//\n// Use anchor or button elements instead of `li`s or `div`s to create interactive\n// list items. Includes an extra `.active` modifier class for selected items.\n\n.list-group-item-action {\n width: 100%; // For `<button>`s (anchors become 100% by default though)\n color: $list-group-action-color;\n text-align: inherit; // For `<button>`s (anchors inherit)\n\n // Hover state\n &:hover,\n &:focus {\n z-index: 1; // Place hover/focus items above their siblings for proper border styling\n color: $list-group-action-hover-color;\n text-decoration: none;\n background-color: $list-group-hover-bg;\n }\n\n &:active {\n color: $list-group-action-active-color;\n background-color: $list-group-action-active-bg;\n }\n}\n\n\n// Individual list items\n//\n// Use on `li`s or `div`s within the `.list-group` parent.\n\n.list-group-item {\n position: relative;\n display: block;\n padding: $list-group-item-padding-y $list-group-item-padding-x;\n color: $list-group-color;\n text-decoration: if($link-decoration == none, null, none);\n background-color: $list-group-bg;\n border: $list-group-border-width solid $list-group-border-color;\n\n &:first-child {\n @include border-top-radius(inherit);\n }\n\n &:last-child {\n @include border-bottom-radius(inherit);\n }\n\n &.disabled,\n &:disabled {\n color: $list-group-disabled-color;\n pointer-events: none;\n background-color: $list-group-disabled-bg;\n }\n\n // Include both here for `<a>`s and `<button>`s\n &.active {\n z-index: 2; // Place active items above their siblings for proper border styling\n color: $list-group-active-color;\n background-color: $list-group-active-bg;\n border-color: $list-group-active-border-color;\n }\n\n & + & {\n border-top-width: 0;\n\n &.active {\n margin-top: -$list-group-border-width;\n border-top-width: $list-group-border-width;\n }\n }\n}\n\n\n// Horizontal\n//\n// Change the layout of list group items from vertical (default) to horizontal.\n\n@each $breakpoint in map-keys($grid-breakpoints) {\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n .list-group-horizontal#{$infix} {\n flex-direction: row;\n\n > .list-group-item {\n &:first-child {\n @include border-bottom-start-radius($list-group-border-radius);\n @include border-top-end-radius(0);\n }\n\n &:last-child {\n @include border-top-end-radius($list-group-border-radius);\n @include border-bottom-start-radius(0);\n }\n\n &.active {\n margin-top: 0;\n }\n\n + .list-group-item {\n border-top-width: $list-group-border-width;\n border-left-width: 0;\n\n &.active {\n margin-left: -$list-group-border-width;\n border-left-width: $list-group-border-width;\n }\n }\n }\n }\n }\n}\n\n\n// Flush list items\n//\n// Remove borders and border-radius to keep list group items edge-to-edge. Most\n// useful within other components (e.g., cards).\n\n.list-group-flush {\n @include border-radius(0);\n\n > .list-group-item {\n border-width: 0 0 $list-group-border-width;\n\n &:last-child {\n border-bottom-width: 0;\n }\n }\n}\n\n\n// scss-docs-start list-group-modifiers\n// List group contextual variants\n//\n// Add modifier classes to change text and background color on individual items.\n// Organizationally, this must come after the `:hover` states.\n\n@each $state, $value in $theme-colors {\n $list-group-variant-bg: shift-color($value, $list-group-item-bg-scale);\n $list-group-variant-color: shift-color($value, $list-group-item-color-scale);\n @if (contrast-ratio($list-group-variant-bg, $list-group-variant-color) < $min-contrast-ratio) {\n $list-group-variant-color: mix($value, color-contrast($list-group-variant-bg), abs($list-group-item-color-scale));\n }\n\n @include list-group-item-variant($state, $list-group-variant-bg, $list-group-variant-color);\n}\n// scss-docs-end list-group-modifiers\n","// List Groups\n\n// scss-docs-start list-group-mixin\n@mixin list-group-item-variant($state, $background, $color) {\n .list-group-item-#{$state} {\n color: $color;\n background-color: $background;\n\n &.list-group-item-action {\n &:hover,\n &:focus {\n color: $color;\n background-color: shade-color($background, 10%);\n }\n\n &.active {\n color: $white;\n background-color: $color;\n border-color: $color;\n }\n }\n }\n}\n// scss-docs-end list-group-mixin\n","// transparent background and border properties included for button version.\n// iOS requires the button element instead of an anchor tag.\n// If you want the anchor version, it requires `href=\"#\"`.\n// See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n\n.btn-close {\n box-sizing: content-box;\n width: $btn-close-width;\n height: $btn-close-height;\n padding: $btn-close-padding-y $btn-close-padding-x;\n color: $btn-close-color;\n background: transparent escape-svg($btn-close-bg) center / $btn-close-width auto no-repeat; // include transparent for button elements\n border: 0; // for button elements\n @include border-radius();\n opacity: $btn-close-opacity;\n\n // Override <a>'s hover style\n &:hover {\n color: $btn-close-color;\n text-decoration: none;\n opacity: $btn-close-hover-opacity;\n }\n\n &:focus {\n outline: 0;\n box-shadow: $btn-close-focus-shadow;\n opacity: $btn-close-focus-opacity;\n }\n\n &:disabled,\n &.disabled {\n pointer-events: none;\n user-select: none;\n opacity: $btn-close-disabled-opacity;\n }\n}\n\n.btn-close-white {\n filter: $btn-close-white-filter;\n}\n",".toast {\n width: $toast-max-width;\n max-width: 100%;\n @include font-size($toast-font-size);\n color: $toast-color;\n pointer-events: auto;\n background-color: $toast-background-color;\n background-clip: padding-box;\n border: $toast-border-width solid $toast-border-color;\n box-shadow: $toast-box-shadow;\n @include border-radius($toast-border-radius);\n\n &.showing {\n opacity: 0;\n }\n\n &:not(.show) {\n display: none;\n }\n}\n\n.toast-container {\n width: max-content;\n max-width: 100%;\n pointer-events: none;\n\n > :not(:last-child) {\n margin-bottom: $toast-spacing;\n }\n}\n\n.toast-header {\n display: flex;\n align-items: center;\n padding: $toast-padding-y $toast-padding-x;\n color: $toast-header-color;\n background-color: $toast-header-background-color;\n background-clip: padding-box;\n border-bottom: $toast-border-width solid $toast-header-border-color;\n @include border-top-radius(subtract($toast-border-radius, $toast-border-width));\n\n .btn-close {\n margin-right: $toast-padding-x * -.5;\n margin-left: $toast-padding-x;\n }\n}\n\n.toast-body {\n padding: $toast-padding-x; // apply to both vertical and horizontal\n word-wrap: break-word;\n}\n","// .modal-open - body class for killing the scroll\n// .modal - container to scroll within\n// .modal-dialog - positioning shell for the actual modal\n// .modal-content - actual modal w/ bg and corners and stuff\n\n\n// Container that the modal scrolls within\n.modal {\n position: fixed;\n top: 0;\n left: 0;\n z-index: $zindex-modal;\n display: none;\n width: 100%;\n height: 100%;\n overflow-x: hidden;\n overflow-y: auto;\n // Prevent Chrome on Windows from adding a focus outline. For details, see\n // https://github.com/twbs/bootstrap/pull/10951.\n outline: 0;\n // We deliberately don't use `-webkit-overflow-scrolling: touch;` due to a\n // gnarly iOS Safari bug: https://bugs.webkit.org/show_bug.cgi?id=158342\n // See also https://github.com/twbs/bootstrap/issues/17695\n}\n\n// Shell div to position the modal with bottom padding\n.modal-dialog {\n position: relative;\n width: auto;\n margin: $modal-dialog-margin;\n // allow clicks to pass through for custom click handling to close modal\n pointer-events: none;\n\n // When fading in the modal, animate it to slide down\n .modal.fade & {\n @include transition($modal-transition);\n transform: $modal-fade-transform;\n }\n .modal.show & {\n transform: $modal-show-transform;\n }\n\n // When trying to close, animate focus to scale\n .modal.modal-static & {\n transform: $modal-scale-transform;\n }\n}\n\n.modal-dialog-scrollable {\n height: subtract(100%, $modal-dialog-margin * 2);\n\n .modal-content {\n max-height: 100%;\n overflow: hidden;\n }\n\n .modal-body {\n overflow-y: auto;\n }\n}\n\n.modal-dialog-centered {\n display: flex;\n align-items: center;\n min-height: subtract(100%, $modal-dialog-margin * 2);\n}\n\n// Actual modal\n.modal-content {\n position: relative;\n display: flex;\n flex-direction: column;\n width: 100%; // Ensure `.modal-content` extends the full width of the parent `.modal-dialog`\n // counteract the pointer-events: none; in the .modal-dialog\n color: $modal-content-color;\n pointer-events: auto;\n background-color: $modal-content-bg;\n background-clip: padding-box;\n border: $modal-content-border-width solid $modal-content-border-color;\n @include border-radius($modal-content-border-radius);\n @include box-shadow($modal-content-box-shadow-xs);\n // Remove focus outline from opened modal\n outline: 0;\n}\n\n// Modal background\n.modal-backdrop {\n @include overlay-backdrop($zindex-modal-backdrop, $modal-backdrop-bg, $modal-backdrop-opacity);\n}\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n display: flex;\n flex-shrink: 0;\n align-items: center;\n justify-content: space-between; // Put modal header elements (title and dismiss) on opposite ends\n padding: $modal-header-padding;\n border-bottom: $modal-header-border-width solid $modal-header-border-color;\n @include border-top-radius($modal-content-inner-border-radius);\n\n .btn-close {\n padding: ($modal-header-padding-y * .5) ($modal-header-padding-x * .5);\n margin: ($modal-header-padding-y * -.5) ($modal-header-padding-x * -.5) ($modal-header-padding-y * -.5) auto;\n }\n}\n\n// Title text within header\n.modal-title {\n margin-bottom: 0;\n line-height: $modal-title-line-height;\n}\n\n// Modal body\n// Where all modal content resides (sibling of .modal-header and .modal-footer)\n.modal-body {\n position: relative;\n // Enable `flex-grow: 1` so that the body take up as much space as possible\n // when there should be a fixed height on `.modal-dialog`.\n flex: 1 1 auto;\n padding: $modal-inner-padding;\n}\n\n// Footer (for actions)\n.modal-footer {\n display: flex;\n flex-wrap: wrap;\n flex-shrink: 0;\n align-items: center; // vertically center\n justify-content: flex-end; // Right align buttons with flex property because text-align doesn't work on flex items\n padding: $modal-inner-padding - $modal-footer-margin-between * .5;\n border-top: $modal-footer-border-width solid $modal-footer-border-color;\n @include border-bottom-radius($modal-content-inner-border-radius);\n\n // Place margin between footer elements\n // This solution is far from ideal because of the universal selector usage,\n // but is needed to fix https://github.com/twbs/bootstrap/issues/24800\n > * {\n margin: $modal-footer-margin-between * .5;\n }\n}\n\n// Scale up the modal\n@include media-breakpoint-up(sm) {\n // Automatically set modal's width for larger viewports\n .modal-dialog {\n max-width: $modal-md;\n margin: $modal-dialog-margin-y-sm-up auto;\n }\n\n .modal-dialog-scrollable {\n height: subtract(100%, $modal-dialog-margin-y-sm-up * 2);\n }\n\n .modal-dialog-centered {\n min-height: subtract(100%, $modal-dialog-margin-y-sm-up * 2);\n }\n\n .modal-content {\n @include box-shadow($modal-content-box-shadow-sm-up);\n }\n\n .modal-sm { max-width: $modal-sm; }\n}\n\n@include media-breakpoint-up(lg) {\n .modal-lg,\n .modal-xl {\n max-width: $modal-lg;\n }\n}\n\n@include media-breakpoint-up(xl) {\n .modal-xl { max-width: $modal-xl; }\n}\n\n// scss-docs-start modal-fullscreen-loop\n@each $breakpoint in map-keys($grid-breakpoints) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n $postfix: if($infix != \"\", $infix + \"-down\", \"\");\n\n @include media-breakpoint-down($breakpoint) {\n .modal-fullscreen#{$postfix} {\n width: 100vw;\n max-width: none;\n height: 100%;\n margin: 0;\n\n .modal-content {\n height: 100%;\n border: 0;\n @include border-radius(0);\n }\n\n .modal-header {\n @include border-radius(0);\n }\n\n .modal-body {\n overflow-y: auto;\n }\n\n .modal-footer {\n @include border-radius(0);\n }\n }\n }\n}\n// scss-docs-end modal-fullscreen-loop\n","// Shared between modals and offcanvases\n@mixin overlay-backdrop($zindex, $backdrop-bg, $backdrop-opacity) {\n position: fixed;\n top: 0;\n left: 0;\n z-index: $zindex;\n width: 100vw;\n height: 100vh;\n background-color: $backdrop-bg;\n\n // Fade for backdrop\n &.fade { opacity: 0; }\n &.show { opacity: $backdrop-opacity; }\n}\n","// Base class\n.tooltip {\n position: absolute;\n z-index: $zindex-tooltip;\n display: block;\n margin: $tooltip-margin;\n // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.\n // So reset our font and text properties to avoid inheriting weird values.\n @include reset-text();\n @include font-size($tooltip-font-size);\n // Allow breaking very long words so they don't overflow the tooltip's bounds\n word-wrap: break-word;\n opacity: 0;\n\n &.show { opacity: $tooltip-opacity; }\n\n .tooltip-arrow {\n position: absolute;\n display: block;\n width: $tooltip-arrow-width;\n height: $tooltip-arrow-height;\n\n &::before {\n position: absolute;\n content: \"\";\n border-color: transparent;\n border-style: solid;\n }\n }\n}\n\n.bs-tooltip-top {\n padding: $tooltip-arrow-height 0;\n\n .tooltip-arrow {\n bottom: 0;\n\n &::before {\n top: -1px;\n border-width: $tooltip-arrow-height ($tooltip-arrow-width * .5) 0;\n border-top-color: $tooltip-arrow-color;\n }\n }\n}\n\n.bs-tooltip-end {\n padding: 0 $tooltip-arrow-height;\n\n .tooltip-arrow {\n left: 0;\n width: $tooltip-arrow-height;\n height: $tooltip-arrow-width;\n\n &::before {\n right: -1px;\n border-width: ($tooltip-arrow-width * .5) $tooltip-arrow-height ($tooltip-arrow-width * .5) 0;\n border-right-color: $tooltip-arrow-color;\n }\n }\n}\n\n.bs-tooltip-bottom {\n padding: $tooltip-arrow-height 0;\n\n .tooltip-arrow {\n top: 0;\n\n &::before {\n bottom: -1px;\n border-width: 0 ($tooltip-arrow-width * .5) $tooltip-arrow-height;\n border-bottom-color: $tooltip-arrow-color;\n }\n }\n}\n\n.bs-tooltip-start {\n padding: 0 $tooltip-arrow-height;\n\n .tooltip-arrow {\n right: 0;\n width: $tooltip-arrow-height;\n height: $tooltip-arrow-width;\n\n &::before {\n left: -1px;\n border-width: ($tooltip-arrow-width * .5) 0 ($tooltip-arrow-width * .5) $tooltip-arrow-height;\n border-left-color: $tooltip-arrow-color;\n }\n }\n}\n\n.bs-tooltip-auto {\n &[data-popper-placement^=\"top\"] {\n @extend .bs-tooltip-top;\n }\n &[data-popper-placement^=\"right\"] {\n @extend .bs-tooltip-end;\n }\n &[data-popper-placement^=\"bottom\"] {\n @extend .bs-tooltip-bottom;\n }\n &[data-popper-placement^=\"left\"] {\n @extend .bs-tooltip-start;\n }\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n max-width: $tooltip-max-width;\n padding: $tooltip-padding-y $tooltip-padding-x;\n color: $tooltip-color;\n text-align: center;\n background-color: $tooltip-bg;\n @include border-radius($tooltip-border-radius);\n}\n","@mixin reset-text {\n font-family: $font-family-base;\n // We deliberately do NOT reset font-size or overflow-wrap / word-wrap.\n font-style: normal;\n font-weight: $font-weight-normal;\n line-height: $line-height-base;\n text-align: left; // Fallback for where `start` is not supported\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: normal;\n line-break: auto;\n}\n",".popover {\n position: absolute;\n top: 0;\n left: 0 #{\"/* rtl:ignore */\"};\n z-index: $zindex-popover;\n display: block;\n max-width: $popover-max-width;\n // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.\n // So reset our font and text properties to avoid inheriting weird values.\n @include reset-text();\n @include font-size($popover-font-size);\n // Allow breaking very long words so they don't overflow the popover's bounds\n word-wrap: break-word;\n background-color: $popover-bg;\n background-clip: padding-box;\n border: $popover-border-width solid $popover-border-color;\n @include border-radius($popover-border-radius);\n @include box-shadow($popover-box-shadow);\n\n .popover-arrow {\n position: absolute;\n display: block;\n width: $popover-arrow-width;\n height: $popover-arrow-height;\n\n &::before,\n &::after {\n position: absolute;\n display: block;\n content: \"\";\n border-color: transparent;\n border-style: solid;\n }\n }\n}\n\n.bs-popover-top {\n > .popover-arrow {\n bottom: subtract(-$popover-arrow-height, $popover-border-width);\n\n &::before {\n bottom: 0;\n border-width: $popover-arrow-height ($popover-arrow-width * .5) 0;\n border-top-color: $popover-arrow-outer-color;\n }\n\n &::after {\n bottom: $popover-border-width;\n border-width: $popover-arrow-height ($popover-arrow-width * .5) 0;\n border-top-color: $popover-arrow-color;\n }\n }\n}\n\n.bs-popover-end {\n > .popover-arrow {\n left: subtract(-$popover-arrow-height, $popover-border-width);\n width: $popover-arrow-height;\n height: $popover-arrow-width;\n\n &::before {\n left: 0;\n border-width: ($popover-arrow-width * .5) $popover-arrow-height ($popover-arrow-width * .5) 0;\n border-right-color: $popover-arrow-outer-color;\n }\n\n &::after {\n left: $popover-border-width;\n border-width: ($popover-arrow-width * .5) $popover-arrow-height ($popover-arrow-width * .5) 0;\n border-right-color: $popover-arrow-color;\n }\n }\n}\n\n.bs-popover-bottom {\n > .popover-arrow {\n top: subtract(-$popover-arrow-height, $popover-border-width);\n\n &::before {\n top: 0;\n border-width: 0 ($popover-arrow-width * .5) $popover-arrow-height ($popover-arrow-width * .5);\n border-bottom-color: $popover-arrow-outer-color;\n }\n\n &::after {\n top: $popover-border-width;\n border-width: 0 ($popover-arrow-width * .5) $popover-arrow-height ($popover-arrow-width * .5);\n border-bottom-color: $popover-arrow-color;\n }\n }\n\n // This will remove the popover-header's border just below the arrow\n .popover-header::before {\n position: absolute;\n top: 0;\n left: 50%;\n display: block;\n width: $popover-arrow-width;\n margin-left: -$popover-arrow-width * .5;\n content: \"\";\n border-bottom: $popover-border-width solid $popover-header-bg;\n }\n}\n\n.bs-popover-start {\n > .popover-arrow {\n right: subtract(-$popover-arrow-height, $popover-border-width);\n width: $popover-arrow-height;\n height: $popover-arrow-width;\n\n &::before {\n right: 0;\n border-width: ($popover-arrow-width * .5) 0 ($popover-arrow-width * .5) $popover-arrow-height;\n border-left-color: $popover-arrow-outer-color;\n }\n\n &::after {\n right: $popover-border-width;\n border-width: ($popover-arrow-width * .5) 0 ($popover-arrow-width * .5) $popover-arrow-height;\n border-left-color: $popover-arrow-color;\n }\n }\n}\n\n.bs-popover-auto {\n &[data-popper-placement^=\"top\"] {\n @extend .bs-popover-top;\n }\n &[data-popper-placement^=\"right\"] {\n @extend .bs-popover-end;\n }\n &[data-popper-placement^=\"bottom\"] {\n @extend .bs-popover-bottom;\n }\n &[data-popper-placement^=\"left\"] {\n @extend .bs-popover-start;\n }\n}\n\n// Offset the popover to account for the popover arrow\n.popover-header {\n padding: $popover-header-padding-y $popover-header-padding-x;\n margin-bottom: 0; // Reset the default from Reboot\n @include font-size($font-size-base);\n color: $popover-header-color;\n background-color: $popover-header-bg;\n border-bottom: $popover-border-width solid $popover-border-color;\n @include border-top-radius($popover-inner-border-radius);\n\n &:empty {\n display: none;\n }\n}\n\n.popover-body {\n padding: $popover-body-padding-y $popover-body-padding-x;\n color: $popover-body-color;\n}\n","// Notes on the classes:\n//\n// 1. .carousel.pointer-event should ideally be pan-y (to allow for users to scroll vertically)\n// even when their scroll action started on a carousel, but for compatibility (with Firefox)\n// we're preventing all actions instead\n// 2. The .carousel-item-start and .carousel-item-end is used to indicate where\n// the active slide is heading.\n// 3. .active.carousel-item is the current slide.\n// 4. .active.carousel-item-start and .active.carousel-item-end is the current\n// slide in its in-transition state. Only one of these occurs at a time.\n// 5. .carousel-item-next.carousel-item-start and .carousel-item-prev.carousel-item-end\n// is the upcoming slide in transition.\n\n.carousel {\n position: relative;\n}\n\n.carousel.pointer-event {\n touch-action: pan-y;\n}\n\n.carousel-inner {\n position: relative;\n width: 100%;\n overflow: hidden;\n @include clearfix();\n}\n\n.carousel-item {\n position: relative;\n display: none;\n float: left;\n width: 100%;\n margin-right: -100%;\n backface-visibility: hidden;\n @include transition($carousel-transition);\n}\n\n.carousel-item.active,\n.carousel-item-next,\n.carousel-item-prev {\n display: block;\n}\n\n/* rtl:begin:ignore */\n.carousel-item-next:not(.carousel-item-start),\n.active.carousel-item-end {\n transform: translateX(100%);\n}\n\n.carousel-item-prev:not(.carousel-item-end),\n.active.carousel-item-start {\n transform: translateX(-100%);\n}\n\n/* rtl:end:ignore */\n\n\n//\n// Alternate transitions\n//\n\n.carousel-fade {\n .carousel-item {\n opacity: 0;\n transition-property: opacity;\n transform: none;\n }\n\n .carousel-item.active,\n .carousel-item-next.carousel-item-start,\n .carousel-item-prev.carousel-item-end {\n z-index: 1;\n opacity: 1;\n }\n\n .active.carousel-item-start,\n .active.carousel-item-end {\n z-index: 0;\n opacity: 0;\n @include transition(opacity 0s $carousel-transition-duration);\n }\n}\n\n\n//\n// Left/right controls for nav\n//\n\n.carousel-control-prev,\n.carousel-control-next {\n position: absolute;\n top: 0;\n bottom: 0;\n z-index: 1;\n // Use flex for alignment (1-3)\n display: flex; // 1. allow flex styles\n align-items: center; // 2. vertically center contents\n justify-content: center; // 3. horizontally center contents\n width: $carousel-control-width;\n padding: 0;\n color: $carousel-control-color;\n text-align: center;\n background: none;\n border: 0;\n opacity: $carousel-control-opacity;\n @include transition($carousel-control-transition);\n\n // Hover/focus state\n &:hover,\n &:focus {\n color: $carousel-control-color;\n text-decoration: none;\n outline: 0;\n opacity: $carousel-control-hover-opacity;\n }\n}\n.carousel-control-prev {\n left: 0;\n background-image: if($enable-gradients, linear-gradient(90deg, rgba($black, .25), rgba($black, .001)), null);\n}\n.carousel-control-next {\n right: 0;\n background-image: if($enable-gradients, linear-gradient(270deg, rgba($black, .25), rgba($black, .001)), null);\n}\n\n// Icons for within\n.carousel-control-prev-icon,\n.carousel-control-next-icon {\n display: inline-block;\n width: $carousel-control-icon-width;\n height: $carousel-control-icon-width;\n background-repeat: no-repeat;\n background-position: 50%;\n background-size: 100% 100%;\n}\n\n/* rtl:options: {\n \"autoRename\": true,\n \"stringMap\":[ {\n \"name\" : \"prev-next\",\n \"search\" : \"prev\",\n \"replace\" : \"next\"\n } ]\n} */\n.carousel-control-prev-icon {\n background-image: escape-svg($carousel-control-prev-icon-bg);\n}\n.carousel-control-next-icon {\n background-image: escape-svg($carousel-control-next-icon-bg);\n}\n\n// Optional indicator pips/controls\n//\n// Add a container (such as a list) with the following class and add an item (ideally a focusable control,\n// like a button) with data-bs-target for each slide your carousel holds.\n\n.carousel-indicators {\n position: absolute;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 2;\n display: flex;\n justify-content: center;\n padding: 0;\n // Use the .carousel-control's width as margin so we don't overlay those\n margin-right: $carousel-control-width;\n margin-bottom: 1rem;\n margin-left: $carousel-control-width;\n list-style: none;\n\n [data-bs-target] {\n box-sizing: content-box;\n flex: 0 1 auto;\n width: $carousel-indicator-width;\n height: $carousel-indicator-height;\n padding: 0;\n margin-right: $carousel-indicator-spacer;\n margin-left: $carousel-indicator-spacer;\n text-indent: -999px;\n cursor: pointer;\n background-color: $carousel-indicator-active-bg;\n background-clip: padding-box;\n border: 0;\n // Use transparent borders to increase the hit area by 10px on top and bottom.\n border-top: $carousel-indicator-hit-area-height solid transparent;\n border-bottom: $carousel-indicator-hit-area-height solid transparent;\n opacity: $carousel-indicator-opacity;\n @include transition($carousel-indicator-transition);\n }\n\n .active {\n opacity: $carousel-indicator-active-opacity;\n }\n}\n\n\n// Optional captions\n//\n//\n\n.carousel-caption {\n position: absolute;\n right: (100% - $carousel-caption-width) * .5;\n bottom: $carousel-caption-spacer;\n left: (100% - $carousel-caption-width) * .5;\n padding-top: $carousel-caption-padding-y;\n padding-bottom: $carousel-caption-padding-y;\n color: $carousel-caption-color;\n text-align: center;\n}\n\n// Dark mode carousel\n\n.carousel-dark {\n .carousel-control-prev-icon,\n .carousel-control-next-icon {\n filter: $carousel-dark-control-icon-filter;\n }\n\n .carousel-indicators [data-bs-target] {\n background-color: $carousel-dark-indicator-active-bg;\n }\n\n .carousel-caption {\n color: $carousel-dark-caption-color;\n }\n}\n","// scss-docs-start clearfix\n@mixin clearfix() {\n &::after {\n display: block;\n clear: both;\n content: \"\";\n }\n}\n// scss-docs-end clearfix\n","//\n// Rotating border\n//\n\n// scss-docs-start spinner-border-keyframes\n@keyframes spinner-border {\n to { transform: rotate(360deg) #{\"/* rtl:ignore */\"}; }\n}\n// scss-docs-end spinner-border-keyframes\n\n.spinner-border {\n display: inline-block;\n width: $spinner-width;\n height: $spinner-height;\n vertical-align: $spinner-vertical-align;\n border: $spinner-border-width solid currentColor;\n border-right-color: transparent;\n // stylelint-disable-next-line property-disallowed-list\n border-radius: 50%;\n animation: $spinner-animation-speed linear infinite spinner-border;\n}\n\n.spinner-border-sm {\n width: $spinner-width-sm;\n height: $spinner-height-sm;\n border-width: $spinner-border-width-sm;\n}\n\n//\n// Growing circle\n//\n\n// scss-docs-start spinner-grow-keyframes\n@keyframes spinner-grow {\n 0% {\n transform: scale(0);\n }\n 50% {\n opacity: 1;\n transform: none;\n }\n}\n// scss-docs-end spinner-grow-keyframes\n\n.spinner-grow {\n display: inline-block;\n width: $spinner-width;\n height: $spinner-height;\n vertical-align: $spinner-vertical-align;\n background-color: currentColor;\n // stylelint-disable-next-line property-disallowed-list\n border-radius: 50%;\n opacity: 0;\n animation: $spinner-animation-speed linear infinite spinner-grow;\n}\n\n.spinner-grow-sm {\n width: $spinner-width-sm;\n height: $spinner-height-sm;\n}\n\n@if $enable-reduced-motion {\n @media (prefers-reduced-motion: reduce) {\n .spinner-border,\n .spinner-grow {\n animation-duration: $spinner-animation-speed * 2;\n }\n }\n}\n",".offcanvas {\n position: fixed;\n bottom: 0;\n z-index: $zindex-offcanvas;\n display: flex;\n flex-direction: column;\n max-width: 100%;\n color: $offcanvas-color;\n visibility: hidden;\n background-color: $offcanvas-bg-color;\n background-clip: padding-box;\n outline: 0;\n @include box-shadow($offcanvas-box-shadow);\n @include transition(transform $offcanvas-transition-duration ease-in-out);\n}\n\n.offcanvas-backdrop {\n @include overlay-backdrop($zindex-offcanvas-backdrop, $offcanvas-backdrop-bg, $offcanvas-backdrop-opacity);\n}\n\n.offcanvas-header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: $offcanvas-padding-y $offcanvas-padding-x;\n\n .btn-close {\n padding: ($offcanvas-padding-y * .5) ($offcanvas-padding-x * .5);\n margin-top: $offcanvas-padding-y * -.5;\n margin-right: $offcanvas-padding-x * -.5;\n margin-bottom: $offcanvas-padding-y * -.5;\n }\n}\n\n.offcanvas-title {\n margin-bottom: 0;\n line-height: $offcanvas-title-line-height;\n}\n\n.offcanvas-body {\n flex-grow: 1;\n padding: $offcanvas-padding-y $offcanvas-padding-x;\n overflow-y: auto;\n}\n\n.offcanvas-start {\n top: 0;\n left: 0;\n width: $offcanvas-horizontal-width;\n border-right: $offcanvas-border-width solid $offcanvas-border-color;\n transform: translateX(-100%);\n}\n\n.offcanvas-end {\n top: 0;\n right: 0;\n width: $offcanvas-horizontal-width;\n border-left: $offcanvas-border-width solid $offcanvas-border-color;\n transform: translateX(100%);\n}\n\n.offcanvas-top {\n top: 0;\n right: 0;\n left: 0;\n height: $offcanvas-vertical-height;\n max-height: 100%;\n border-bottom: $offcanvas-border-width solid $offcanvas-border-color;\n transform: translateY(-100%);\n}\n\n.offcanvas-bottom {\n right: 0;\n left: 0;\n height: $offcanvas-vertical-height;\n max-height: 100%;\n border-top: $offcanvas-border-width solid $offcanvas-border-color;\n transform: translateY(100%);\n}\n\n.offcanvas.show {\n transform: none;\n}\n",".placeholder {\n display: inline-block;\n min-height: 1em;\n vertical-align: middle;\n cursor: wait;\n background-color: currentColor;\n opacity: $placeholder-opacity-max;\n\n &.btn::before {\n display: inline-block;\n content: \"\";\n }\n}\n\n// Sizing\n.placeholder-xs {\n min-height: .6em;\n}\n\n.placeholder-sm {\n min-height: .8em;\n}\n\n.placeholder-lg {\n min-height: 1.2em;\n}\n\n// Animation\n.placeholder-glow {\n .placeholder {\n animation: placeholder-glow 2s ease-in-out infinite;\n }\n}\n\n@keyframes placeholder-glow {\n 50% {\n opacity: $placeholder-opacity-min;\n }\n}\n\n.placeholder-wave {\n mask-image: linear-gradient(130deg, $black 55%, rgba(0, 0, 0, (1 - $placeholder-opacity-min)) 75%, $black 95%);\n mask-size: 200% 100%;\n animation: placeholder-wave 2s linear infinite;\n}\n\n@keyframes placeholder-wave {\n 100% {\n mask-position: -200% 0%;\n }\n}\n","@each $color, $value in $theme-colors {\n .link-#{$color} {\n color: $value;\n\n @if $link-shade-percentage != 0 {\n &:hover,\n &:focus {\n color: if(color-contrast($value) == $color-contrast-light, shade-color($value, $link-shade-percentage), tint-color($value, $link-shade-percentage));\n }\n }\n }\n}\n","// Credit: Nicolas Gallagher and SUIT CSS.\n\n.ratio {\n position: relative;\n width: 100%;\n\n &::before {\n display: block;\n padding-top: var(--#{$variable-prefix}aspect-ratio);\n content: \"\";\n }\n\n > * {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n }\n}\n\n@each $key, $ratio in $aspect-ratios {\n .ratio-#{$key} {\n --#{$variable-prefix}aspect-ratio: #{$ratio};\n }\n}\n","// Shorthand\n\n.fixed-top {\n position: fixed;\n top: 0;\n right: 0;\n left: 0;\n z-index: $zindex-fixed;\n}\n\n.fixed-bottom {\n position: fixed;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: $zindex-fixed;\n}\n\n// Responsive sticky top\n@each $breakpoint in map-keys($grid-breakpoints) {\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n .sticky#{$infix}-top {\n position: sticky;\n top: 0;\n z-index: $zindex-sticky;\n }\n }\n}\n","// scss-docs-start stacks\n.hstack {\n display: flex;\n flex-direction: row;\n align-items: center;\n align-self: stretch;\n}\n\n.vstack {\n display: flex;\n flex: 1 1 auto;\n flex-direction: column;\n align-self: stretch;\n}\n// scss-docs-end stacks\n","//\n// Visually hidden\n//\n\n.visually-hidden,\n.visually-hidden-focusable:not(:focus):not(:focus-within) {\n @include visually-hidden();\n}\n","// stylelint-disable declaration-no-important\n\n// Hide content visually while keeping it accessible to assistive technologies\n//\n// See: https://www.a11yproject.com/posts/2013-01-11-how-to-hide-content/\n// See: https://hugogiraudel.com/2016/10/13/css-hide-and-seek/\n\n@mixin visually-hidden() {\n position: absolute !important;\n width: 1px !important;\n height: 1px !important;\n padding: 0 !important;\n margin: -1px !important; // Fix for https://github.com/twbs/bootstrap/issues/25686\n overflow: hidden !important;\n clip: rect(0, 0, 0, 0) !important;\n white-space: nowrap !important;\n border: 0 !important;\n}\n\n// Use to only display content when it's focused, or one of its child elements is focused\n// (i.e. when focus is within the element/container that the class was applied to)\n//\n// Useful for \"Skip to main content\" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n\n@mixin visually-hidden-focusable() {\n &:not(:focus):not(:focus-within) {\n @include visually-hidden();\n }\n}\n","//\n// Stretched link\n//\n\n.stretched-link {\n &::#{$stretched-link-pseudo-element} {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: $stretched-link-z-index;\n content: \"\";\n }\n}\n","//\n// Text truncation\n//\n\n.text-truncate {\n @include text-truncate();\n}\n","// Text truncate\n// Requires inline-block or block for proper styling\n\n@mixin text-truncate() {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n",".vr {\n display: inline-block;\n align-self: stretch;\n width: 1px;\n min-height: 1em;\n background-color: currentColor;\n opacity: $hr-opacity;\n}\n","// Utility generator\n// Used to generate utilities & print utilities\n@mixin generate-utility($utility, $infix, $is-rfs-media-query: false) {\n $values: map-get($utility, values);\n\n // If the values are a list or string, convert it into a map\n @if type-of($values) == \"string\" or type-of(nth($values, 1)) != \"list\" {\n $values: zip($values, $values);\n }\n\n @each $key, $value in $values {\n $properties: map-get($utility, property);\n\n // Multiple properties are possible, for example with vertical or horizontal margins or paddings\n @if type-of($properties) == \"string\" {\n $properties: append((), $properties);\n }\n\n // Use custom class if present\n $property-class: if(map-has-key($utility, class), map-get($utility, class), nth($properties, 1));\n $property-class: if($property-class == null, \"\", $property-class);\n\n // State params to generate pseudo-classes\n $state: if(map-has-key($utility, state), map-get($utility, state), ());\n\n $infix: if($property-class == \"\" and str-slice($infix, 1, 1) == \"-\", str-slice($infix, 2), $infix);\n\n // Don't prefix if value key is null (eg. with shadow class)\n $property-class-modifier: if($key, if($property-class == \"\" and $infix == \"\", \"\", \"-\") + $key, \"\");\n\n @if map-get($utility, rfs) {\n // Inside the media query\n @if $is-rfs-media-query {\n $val: rfs-value($value);\n\n // Do not render anything if fluid and non fluid values are the same\n $value: if($val == rfs-fluid-value($value), null, $val);\n }\n @else {\n $value: rfs-fluid-value($value);\n }\n }\n\n $is-css-var: map-get($utility, css-var);\n $is-local-vars: map-get($utility, local-vars);\n $is-rtl: map-get($utility, rtl);\n\n @if $value != null {\n @if $is-rtl == false {\n /* rtl:begin:remove */\n }\n\n @if $is-css-var {\n .#{$property-class + $infix + $property-class-modifier} {\n --#{$variable-prefix}#{$property-class}: #{$value};\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n --#{$variable-prefix}#{$property-class}: #{$value};\n }\n }\n } @else {\n .#{$property-class + $infix + $property-class-modifier} {\n @each $property in $properties {\n @if $is-local-vars {\n @each $local-var, $value in $is-local-vars {\n --#{$variable-prefix}#{$local-var}: #{$value};\n }\n }\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n\n @each $pseudo in $state {\n .#{$property-class + $infix + $property-class-modifier}-#{$pseudo}:#{$pseudo} {\n @each $property in $properties {\n #{$property}: $value if($enable-important-utilities, !important, null);\n }\n }\n }\n }\n\n @if $is-rtl == false {\n /* rtl:end:remove */\n }\n }\n }\n}\n","// Loop over each breakpoint\n@each $breakpoint in map-keys($grid-breakpoints) {\n\n // Generate media query if needed\n @include media-breakpoint-up($breakpoint) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix);\n }\n }\n }\n}\n\n// RFS rescaling\n@media (min-width: $rfs-mq-value) {\n @each $breakpoint in map-keys($grid-breakpoints) {\n $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n @if (map-get($grid-breakpoints, $breakpoint) < $rfs-breakpoint) {\n // Loop over each utility property\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Only proceed if responsive media queries are enabled or if it's the base media query\n @if type-of($utility) == \"map\" and map-get($utility, rfs) and (map-get($utility, responsive) or $infix == \"\") {\n @include generate-utility($utility, $infix, true);\n }\n }\n }\n }\n}\n\n\n// Print utilities\n@media print {\n @each $key, $utility in $utilities {\n // The utility can be disabled with `false`, thus check if the utility is a map first\n // Then check if the utility needs print styles\n @if type-of($utility) == \"map\" and map-get($utility, print) == true {\n @include generate-utility($utility, \"-print\");\n }\n }\n}\n"]} \ No newline at end of file diff --git a/TaikoWebUI/wwwroot/css/open-iconic/FONT-LICENSE b/TaikoWebUI/wwwroot/css/open-iconic/FONT-LICENSE new file mode 100644 index 0000000..e961d28 --- /dev/null +++ b/TaikoWebUI/wwwroot/css/open-iconic/FONT-LICENSE @@ -0,0 +1,86 @@ +SIL OPEN FONT LICENSE Version 1.1 + +Copyright (c) 2014 Waybury + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/TaikoWebUI/wwwroot/css/open-iconic/ICON-LICENSE b/TaikoWebUI/wwwroot/css/open-iconic/ICON-LICENSE new file mode 100644 index 0000000..4af8684 --- /dev/null +++ b/TaikoWebUI/wwwroot/css/open-iconic/ICON-LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Waybury + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. \ No newline at end of file diff --git a/TaikoWebUI/wwwroot/css/open-iconic/README.md b/TaikoWebUI/wwwroot/css/open-iconic/README.md new file mode 100644 index 0000000..8cd8560 --- /dev/null +++ b/TaikoWebUI/wwwroot/css/open-iconic/README.md @@ -0,0 +1,114 @@ +[Open Iconic v1.1.1](https://github.com/iconic/open-iconic) +=========== + +### Open Iconic is the open source sibling of [Iconic](https://github.com/iconic/open-iconic). It is a hyper-legible collection of 223 icons with a tiny footprint—ready to use with Bootstrap and Foundation. [View the collection](https://github.com/iconic/open-iconic) + + + +## What's in Open Iconic? + +* 223 icons designed to be legible down to 8 pixels +* Super-light SVG files - 61.8 for the entire set +* SVG sprite—the modern replacement for icon fonts +* Webfont (EOT, OTF, SVG, TTF, WOFF), PNG and WebP formats +* Webfont stylesheets (including versions for Bootstrap and Foundation) in CSS, LESS, SCSS and Stylus formats +* PNG and WebP raster images in 8px, 16px, 24px, 32px, 48px and 64px. + + +## Getting Started + +#### For code samples and everything else you need to get started with Open Iconic, check out our [Icons](https://github.com/iconic/open-iconic) and [Reference](https://github.com/iconic/open-iconic) sections. + +### General Usage + +#### Using Open Iconic's SVGs + +We like SVGs and we think they're the way to display icons on the web. Since Open Iconic are just basic SVGs, we suggest you display them like you would any other image (don't forget the `alt` attribute). + +``` +<img src="/open-iconic/svg/icon-name.svg" alt="icon name"> +``` + +#### Using Open Iconic's SVG Sprite + +Open Iconic also comes in a SVG sprite which allows you to display all the icons in the set with a single request. It's like an icon font, without being a hack. + +Adding an icon from an SVG sprite is a little different than what you're used to, but it's still a piece of cake. *Tip: To make your icons easily style able, we suggest adding a general class to the* `<svg>` *tag and a unique class name for each different icon in the* `<use>` *tag.* + +``` +<svg class="icon"> + <use xlink:href="open-iconic.svg#account-login" class="icon-account-login"></use> +</svg> +``` + +Sizing icons only needs basic CSS. All the icons are in a square format, so just set the `<svg>` tag with equal width and height dimensions. + +``` +.icon { + width: 16px; + height: 16px; +} +``` + +Coloring icons is even easier. All you need to do is set the `fill` rule on the `<use>` tag. + +``` +.icon-account-login { + fill: #f00; +} +``` + +To learn more about SVG Sprites, read [Chris Coyier's guide](http://css-tricks.com/svg-sprites-use-better-icon-fonts/). + +#### Using Open Iconic's Icon Font... + + +##### …with Bootstrap + +You can find our Bootstrap stylesheets in `font/css/open-iconic-bootstrap.{css, less, scss, styl}` + + +``` +<link href="/open-iconic/font/css/open-iconic-bootstrap.css" rel="stylesheet"> +``` + + +``` +<span class="oi oi-icon-name" title="icon name" aria-hidden="true"></span> +``` + +##### …with Foundation + +You can find our Foundation stylesheets in `font/css/open-iconic-foundation.{css, less, scss, styl}` + +``` +<link href="/open-iconic/font/css/open-iconic-foundation.css" rel="stylesheet"> +``` + + +``` +<span class="fi-icon-name" title="icon name" aria-hidden="true"></span> +``` + +##### …on its own + +You can find our default stylesheets in `font/css/open-iconic.{css, less, scss, styl}` + +``` +<link href="/open-iconic/font/css/open-iconic.css" rel="stylesheet"> +``` + +``` +<span class="oi" data-glyph="icon-name" title="icon name" aria-hidden="true"></span> +``` + + +## License + +### Icons + +All code (including SVG markup) is under the [MIT License](http://opensource.org/licenses/MIT). + +### Fonts + +All fonts are under the [SIL Licensed](http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web). diff --git a/TaikoWebUI/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css b/TaikoWebUI/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css new file mode 100644 index 0000000..99e9787 --- /dev/null +++ b/TaikoWebUI/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css @@ -0,0 +1 @@ +@font-face{font-family:Icons;src:url(../fonts/open-iconic.eot);src:url(../fonts/open-iconic.eot?#iconic-sm) format('embedded-opentype'),url(../fonts/open-iconic.woff) format('woff'),url(../fonts/open-iconic.ttf) format('truetype'),url(../fonts/open-iconic.otf) format('opentype'),url(../fonts/open-iconic.svg#iconic-sm) format('svg');font-weight:400;font-style:normal}.oi{position:relative;top:1px;display:inline-block;speak:none;font-family:Icons;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.oi:empty:before{width:1em;text-align:center;box-sizing:content-box}.oi.oi-align-center:before{text-align:center}.oi.oi-align-left:before{text-align:left}.oi.oi-align-right:before{text-align:right}.oi.oi-flip-horizontal:before{-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.oi.oi-flip-vertical:before{-webkit-transform:scale(1,-1);-ms-transform:scale(-1,1);transform:scale(1,-1)}.oi.oi-flip-horizontal-vertical:before{-webkit-transform:scale(-1,-1);-ms-transform:scale(-1,1);transform:scale(-1,-1)}.oi-account-login:before{content:'\e000'}.oi-account-logout:before{content:'\e001'}.oi-action-redo:before{content:'\e002'}.oi-action-undo:before{content:'\e003'}.oi-align-center:before{content:'\e004'}.oi-align-left:before{content:'\e005'}.oi-align-right:before{content:'\e006'}.oi-aperture:before{content:'\e007'}.oi-arrow-bottom:before{content:'\e008'}.oi-arrow-circle-bottom:before{content:'\e009'}.oi-arrow-circle-left:before{content:'\e00a'}.oi-arrow-circle-right:before{content:'\e00b'}.oi-arrow-circle-top:before{content:'\e00c'}.oi-arrow-left:before{content:'\e00d'}.oi-arrow-right:before{content:'\e00e'}.oi-arrow-thick-bottom:before{content:'\e00f'}.oi-arrow-thick-left:before{content:'\e010'}.oi-arrow-thick-right:before{content:'\e011'}.oi-arrow-thick-top:before{content:'\e012'}.oi-arrow-top:before{content:'\e013'}.oi-audio-spectrum:before{content:'\e014'}.oi-audio:before{content:'\e015'}.oi-badge:before{content:'\e016'}.oi-ban:before{content:'\e017'}.oi-bar-chart:before{content:'\e018'}.oi-basket:before{content:'\e019'}.oi-battery-empty:before{content:'\e01a'}.oi-battery-full:before{content:'\e01b'}.oi-beaker:before{content:'\e01c'}.oi-bell:before{content:'\e01d'}.oi-bluetooth:before{content:'\e01e'}.oi-bold:before{content:'\e01f'}.oi-bolt:before{content:'\e020'}.oi-book:before{content:'\e021'}.oi-bookmark:before{content:'\e022'}.oi-box:before{content:'\e023'}.oi-briefcase:before{content:'\e024'}.oi-british-pound:before{content:'\e025'}.oi-browser:before{content:'\e026'}.oi-brush:before{content:'\e027'}.oi-bug:before{content:'\e028'}.oi-bullhorn:before{content:'\e029'}.oi-calculator:before{content:'\e02a'}.oi-calendar:before{content:'\e02b'}.oi-camera-slr:before{content:'\e02c'}.oi-caret-bottom:before{content:'\e02d'}.oi-caret-left:before{content:'\e02e'}.oi-caret-right:before{content:'\e02f'}.oi-caret-top:before{content:'\e030'}.oi-cart:before{content:'\e031'}.oi-chat:before{content:'\e032'}.oi-check:before{content:'\e033'}.oi-chevron-bottom:before{content:'\e034'}.oi-chevron-left:before{content:'\e035'}.oi-chevron-right:before{content:'\e036'}.oi-chevron-top:before{content:'\e037'}.oi-circle-check:before{content:'\e038'}.oi-circle-x:before{content:'\e039'}.oi-clipboard:before{content:'\e03a'}.oi-clock:before{content:'\e03b'}.oi-cloud-download:before{content:'\e03c'}.oi-cloud-upload:before{content:'\e03d'}.oi-cloud:before{content:'\e03e'}.oi-cloudy:before{content:'\e03f'}.oi-code:before{content:'\e040'}.oi-cog:before{content:'\e041'}.oi-collapse-down:before{content:'\e042'}.oi-collapse-left:before{content:'\e043'}.oi-collapse-right:before{content:'\e044'}.oi-collapse-up:before{content:'\e045'}.oi-command:before{content:'\e046'}.oi-comment-square:before{content:'\e047'}.oi-compass:before{content:'\e048'}.oi-contrast:before{content:'\e049'}.oi-copywriting:before{content:'\e04a'}.oi-credit-card:before{content:'\e04b'}.oi-crop:before{content:'\e04c'}.oi-dashboard:before{content:'\e04d'}.oi-data-transfer-download:before{content:'\e04e'}.oi-data-transfer-upload:before{content:'\e04f'}.oi-delete:before{content:'\e050'}.oi-dial:before{content:'\e051'}.oi-document:before{content:'\e052'}.oi-dollar:before{content:'\e053'}.oi-double-quote-sans-left:before{content:'\e054'}.oi-double-quote-sans-right:before{content:'\e055'}.oi-double-quote-serif-left:before{content:'\e056'}.oi-double-quote-serif-right:before{content:'\e057'}.oi-droplet:before{content:'\e058'}.oi-eject:before{content:'\e059'}.oi-elevator:before{content:'\e05a'}.oi-ellipses:before{content:'\e05b'}.oi-envelope-closed:before{content:'\e05c'}.oi-envelope-open:before{content:'\e05d'}.oi-euro:before{content:'\e05e'}.oi-excerpt:before{content:'\e05f'}.oi-expand-down:before{content:'\e060'}.oi-expand-left:before{content:'\e061'}.oi-expand-right:before{content:'\e062'}.oi-expand-up:before{content:'\e063'}.oi-external-link:before{content:'\e064'}.oi-eye:before{content:'\e065'}.oi-eyedropper:before{content:'\e066'}.oi-file:before{content:'\e067'}.oi-fire:before{content:'\e068'}.oi-flag:before{content:'\e069'}.oi-flash:before{content:'\e06a'}.oi-folder:before{content:'\e06b'}.oi-fork:before{content:'\e06c'}.oi-fullscreen-enter:before{content:'\e06d'}.oi-fullscreen-exit:before{content:'\e06e'}.oi-globe:before{content:'\e06f'}.oi-graph:before{content:'\e070'}.oi-grid-four-up:before{content:'\e071'}.oi-grid-three-up:before{content:'\e072'}.oi-grid-two-up:before{content:'\e073'}.oi-hard-drive:before{content:'\e074'}.oi-header:before{content:'\e075'}.oi-headphones:before{content:'\e076'}.oi-heart:before{content:'\e077'}.oi-home:before{content:'\e078'}.oi-image:before{content:'\e079'}.oi-inbox:before{content:'\e07a'}.oi-infinity:before{content:'\e07b'}.oi-info:before{content:'\e07c'}.oi-italic:before{content:'\e07d'}.oi-justify-center:before{content:'\e07e'}.oi-justify-left:before{content:'\e07f'}.oi-justify-right:before{content:'\e080'}.oi-key:before{content:'\e081'}.oi-laptop:before{content:'\e082'}.oi-layers:before{content:'\e083'}.oi-lightbulb:before{content:'\e084'}.oi-link-broken:before{content:'\e085'}.oi-link-intact:before{content:'\e086'}.oi-list-rich:before{content:'\e087'}.oi-list:before{content:'\e088'}.oi-location:before{content:'\e089'}.oi-lock-locked:before{content:'\e08a'}.oi-lock-unlocked:before{content:'\e08b'}.oi-loop-circular:before{content:'\e08c'}.oi-loop-square:before{content:'\e08d'}.oi-loop:before{content:'\e08e'}.oi-magnifying-glass:before{content:'\e08f'}.oi-map-marker:before{content:'\e090'}.oi-map:before{content:'\e091'}.oi-media-pause:before{content:'\e092'}.oi-media-play:before{content:'\e093'}.oi-media-record:before{content:'\e094'}.oi-media-skip-backward:before{content:'\e095'}.oi-media-skip-forward:before{content:'\e096'}.oi-media-step-backward:before{content:'\e097'}.oi-media-step-forward:before{content:'\e098'}.oi-media-stop:before{content:'\e099'}.oi-medical-cross:before{content:'\e09a'}.oi-menu:before{content:'\e09b'}.oi-microphone:before{content:'\e09c'}.oi-minus:before{content:'\e09d'}.oi-monitor:before{content:'\e09e'}.oi-moon:before{content:'\e09f'}.oi-move:before{content:'\e0a0'}.oi-musical-note:before{content:'\e0a1'}.oi-paperclip:before{content:'\e0a2'}.oi-pencil:before{content:'\e0a3'}.oi-people:before{content:'\e0a4'}.oi-person:before{content:'\e0a5'}.oi-phone:before{content:'\e0a6'}.oi-pie-chart:before{content:'\e0a7'}.oi-pin:before{content:'\e0a8'}.oi-play-circle:before{content:'\e0a9'}.oi-plus:before{content:'\e0aa'}.oi-power-standby:before{content:'\e0ab'}.oi-print:before{content:'\e0ac'}.oi-project:before{content:'\e0ad'}.oi-pulse:before{content:'\e0ae'}.oi-puzzle-piece:before{content:'\e0af'}.oi-question-mark:before{content:'\e0b0'}.oi-rain:before{content:'\e0b1'}.oi-random:before{content:'\e0b2'}.oi-reload:before{content:'\e0b3'}.oi-resize-both:before{content:'\e0b4'}.oi-resize-height:before{content:'\e0b5'}.oi-resize-width:before{content:'\e0b6'}.oi-rss-alt:before{content:'\e0b7'}.oi-rss:before{content:'\e0b8'}.oi-script:before{content:'\e0b9'}.oi-share-boxed:before{content:'\e0ba'}.oi-share:before{content:'\e0bb'}.oi-shield:before{content:'\e0bc'}.oi-signal:before{content:'\e0bd'}.oi-signpost:before{content:'\e0be'}.oi-sort-ascending:before{content:'\e0bf'}.oi-sort-descending:before{content:'\e0c0'}.oi-spreadsheet:before{content:'\e0c1'}.oi-star:before{content:'\e0c2'}.oi-sun:before{content:'\e0c3'}.oi-tablet:before{content:'\e0c4'}.oi-tag:before{content:'\e0c5'}.oi-tags:before{content:'\e0c6'}.oi-target:before{content:'\e0c7'}.oi-task:before{content:'\e0c8'}.oi-terminal:before{content:'\e0c9'}.oi-text:before{content:'\e0ca'}.oi-thumb-down:before{content:'\e0cb'}.oi-thumb-up:before{content:'\e0cc'}.oi-timer:before{content:'\e0cd'}.oi-transfer:before{content:'\e0ce'}.oi-trash:before{content:'\e0cf'}.oi-underline:before{content:'\e0d0'}.oi-vertical-align-bottom:before{content:'\e0d1'}.oi-vertical-align-center:before{content:'\e0d2'}.oi-vertical-align-top:before{content:'\e0d3'}.oi-video:before{content:'\e0d4'}.oi-volume-high:before{content:'\e0d5'}.oi-volume-low:before{content:'\e0d6'}.oi-volume-off:before{content:'\e0d7'}.oi-warning:before{content:'\e0d8'}.oi-wifi:before{content:'\e0d9'}.oi-wrench:before{content:'\e0da'}.oi-x:before{content:'\e0db'}.oi-yen:before{content:'\e0dc'}.oi-zoom-in:before{content:'\e0dd'}.oi-zoom-out:before{content:'\e0de'} \ No newline at end of file diff --git a/TaikoWebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.eot b/TaikoWebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.eot new file mode 100644 index 0000000..f98177d Binary files /dev/null and b/TaikoWebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.eot differ diff --git a/TaikoWebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.otf b/TaikoWebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.otf new file mode 100644 index 0000000..f6bd684 Binary files /dev/null and b/TaikoWebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.otf differ diff --git a/TaikoWebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.svg b/TaikoWebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.svg new file mode 100644 index 0000000..6ca001a --- /dev/null +++ b/TaikoWebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.svg @@ -0,0 +1,543 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +<!-- +2014-7-1: Created. +--> +<svg xmlns="http://www.w3.org/2000/svg"> +<metadata> +Created by FontForge 20120731 at Tue Jul 1 20:39:22 2014 + By P.J. Onori +Created by P.J. Onori with FontForge 2.0 (http://fontforge.sf.net) +</metadata> +<defs> +<font id="open-iconic" horiz-adv-x="800" > + <font-face + font-family="Icons" + font-weight="400" + font-stretch="normal" + units-per-em="800" + panose-1="2 0 5 3 0 0 0 0 0 0" + ascent="800" + descent="0" + bbox="-0.5 -101 802 800.126" + underline-thickness="50" + underline-position="-100" + unicode-range="U+E000-E0DE" + /> + <missing-glyph /> + <glyph glyph-name="" unicode="" +d="M300 700h500v-700h-500v100h400v500h-400v100zM400 500l200 -150l-200 -150v100h-400v100h400v100z" /> + <glyph glyph-name="1" unicode="" +d="M300 700h500v-700h-500v100h400v500h-400v100zM200 500v-100h400v-100h-400v-100l-200 150z" /> + <glyph glyph-name="2" unicode="" +d="M350 700c193 0 350 -157 350 -350v-50h100l-200 -200l-200 200h100v50c0 138 -112 250 -250 250s-250 -112 -250 -250c0 193 157 350 350 350z" /> + <glyph glyph-name="3" unicode="" +d="M450 700c193 0 350 -157 350 -350c0 138 -112 250 -250 250s-250 -112 -250 -250v-50h100l-200 -200l-200 200h100v50c0 193 157 350 350 350z" /> + <glyph glyph-name="4" unicode="" +d="M0 700h800v-100h-800v100zM100 500h600v-100h-600v100zM0 300h800v-100h-800v100zM100 100h600v-100h-600v100z" /> + <glyph glyph-name="5" unicode="" +d="M0 700h800v-100h-800v100zM0 500h600v-100h-600v100zM0 300h800v-100h-800v100zM0 100h600v-100h-600v100z" /> + <glyph glyph-name="6" unicode="" +d="M0 700h800v-100h-800v100zM200 500h600v-100h-600v100zM0 300h800v-100h-800v100zM200 100h600v-100h-600v100z" /> + <glyph glyph-name="7" unicode="" +d="M400 700c75 0 146 -23 206 -59l-75 -225l-322 234c57 31 122 50 191 50zM125 588l191 -138l-310 -222c-4 24 -6 47 -6 72c0 114 49 215 125 288zM688 575c69 -72 112 -168 112 -275c0 -35 -8 -68 -16 -100h-218zM216 253l112 -347c-128 23 -232 109 -287 222zM372 100 +h372c-64 -109 -177 -185 -310 -197z" /> + <glyph glyph-name="8" unicode="" horiz-adv-x="600" +d="M200 800h100v-500h200l-247 -300l-253 300h200v500z" /> + <glyph glyph-name="9" unicode="" +d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM300 700v-300h-200l300 -300l300 300h-200v300h-200z" /> + <glyph glyph-name="a" unicode="" +d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM400 700l-300 -300l300 -300v200h300v200h-300v200z" /> + <glyph glyph-name="b" unicode="" +d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM400 700v-200h-300v-200h300v-200l300 300z" /> + <glyph glyph-name="c" unicode="" +d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM400 700l-300 -300h200v-300h200v300h200z" /> + <glyph glyph-name="d" unicode="" +d="M300 600v-200h500v-100h-500v-200l-300 247z" /> + <glyph glyph-name="e" unicode="" +d="M500 600l300 -247l-300 -253v200h-500v100h500v200z" /> + <glyph glyph-name="f" unicode="" horiz-adv-x="600" +d="M200 800h200v-500h200l-297 -300l-303 300h200v500z" /> + <glyph glyph-name="10" unicode="" +d="M300 700v-200h500v-200h-500v-200l-300 297z" /> + <glyph glyph-name="11" unicode="" +d="M500 700l300 -297l-300 -303v200h-500v200h500v200z" /> + <glyph glyph-name="12" unicode="" horiz-adv-x="600" +d="M297 800l303 -300h-200v-500h-200v500h-200z" /> + <glyph glyph-name="13" unicode="" horiz-adv-x="600" +d="M247 800l253 -300h-200v-500h-100v500h-200z" /> + <glyph glyph-name="14" unicode="" +d="M400 800h100v-800h-100v800zM200 700h100v-600h-100v600zM600 600h100v-400h-100v400zM0 500h100v-200h-100v200z" /> + <glyph glyph-name="15" unicode="" +d="M116 600l72 -72c-54 -54 -88 -126 -88 -209s34 -159 88 -213l-72 -72c-72 72 -116 175 -116 285s44 209 116 281zM684 600c72 -72 116 -171 116 -281s-44 -213 -116 -285l-72 72c54 54 88 130 88 213s-34 155 -88 209zM259 460l69 -72c-18 -18 -28 -41 -28 -69 +s10 -54 28 -72l-69 -72c-36 36 -59 89 -59 144s23 105 59 141zM541 459c36 -36 59 -85 59 -140s-23 -108 -59 -144l-69 72c18 18 28 44 28 72s-10 51 -28 69z" /> + <glyph glyph-name="16" unicode="" horiz-adv-x="400" +d="M200 800c110 0 200 -90 200 -200s-90 -200 -200 -200s-200 90 -200 200s90 200 200 200zM100 319c31 -11 65 -19 100 -19s68 8 100 19v-319l-100 100l-100 -100v319z" /> + <glyph glyph-name="17" unicode="" +d="M400 800c220 0 400 -180 400 -400s-180 -400 -400 -400s-400 180 -400 400s180 400 400 400zM400 700c-166 0 -300 -134 -300 -300c0 -66 21 -126 56 -175l419 419c-49 35 -109 56 -175 56zM644 575l-419 -419c49 -35 109 -56 175 -56c166 0 300 134 300 300 +c0 66 -21 126 -56 175z" /> + <glyph glyph-name="18" unicode="" +d="M0 700h100v-600h700v-100h-800v700zM500 700h200v-500h-200v500zM200 500h200v-300h-200v300z" /> + <glyph glyph-name="19" unicode="" +d="M397 800c13 1 23 -4 34 -13c2 -2 214 -254 241 -287h128v-100h-100v-366c0 -18 -16 -34 -34 -34h-532c-18 0 -34 16 -34 34v366h-100v100h128l234 281c9 11 22 18 35 19zM400 672l-144 -172h288zM250 300c-28 0 -50 -22 -50 -50v-100c0 -28 22 -50 50 -50s50 22 50 50 +v100c0 28 -22 50 -50 50zM550 300c-28 0 -50 -22 -50 -50v-100c0 -28 22 -50 50 -50s50 22 50 50v100c0 28 -22 50 -50 50z" /> + <glyph glyph-name="1a" unicode="" +d="M9 700h682c6 0 9 -4 9 -10v-190h100v-200h-100v-191c0 -6 -3 -9 -9 -9h-682c-6 0 -9 3 -9 9v582c0 6 3 9 9 9zM100 600v-400h500v400h-500z" /> + <glyph glyph-name="1b" unicode="" +d="M9 700h682c6 0 9 -4 9 -10v-190h100v-200h-100v-191c0 -6 -3 -9 -9 -9h-682c-6 0 -9 3 -9 9v582c0 6 3 9 9 9z" /> + <glyph glyph-name="1c" unicode="" +d="M92 650c0 23 19 50 45 50h3h5h5h500c28 0 50 -22 50 -50s-22 -50 -50 -50h-50v-141c9 -17 120 -231 166 -309c16 -26 34 -61 34 -106c0 -39 -15 -77 -41 -103h-3c-26 -25 -62 -41 -100 -41h-512c-39 0 -77 15 -103 41s-41 64 -41 103c0 46 18 80 34 106 +c46 78 157 292 166 309v141h-50c-2 0 -6 -1 -8 -1c-28 0 -50 23 -50 51zM500 600h-200v-162l-6 -10s-63 -123 -119 -228h450c-56 105 -119 228 -119 228l-6 10v162z" /> + <glyph glyph-name="1d" unicode="" +d="M400 800c110 0 200 -90 200 -200c0 -104 52 -198 134 -266c41 -34 66 -82 66 -134h-800c0 52 25 100 66 134c82 68 134 162 134 266c0 110 90 200 200 200zM300 100h200c0 -55 -45 -100 -100 -100s-100 45 -100 100z" /> + <glyph glyph-name="1e" unicode="" horiz-adv-x="600" +d="M150 800h50l350 -250l-225 -147l225 -153l-350 -250h-50v250l-75 -75l-75 75l150 150l-150 150l75 75l75 -75v250zM250 650v-200l150 100zM250 350v-200l150 100z" /> + <glyph glyph-name="1f" unicode="" +d="M0 800h500c110 0 200 -90 200 -200c0 -47 -17 -91 -44 -125c85 -40 144 -125 144 -225c0 -138 -112 -250 -250 -250h-550v100c55 0 100 45 100 100v400c0 55 -45 100 -100 100v100zM300 700v-200h100c55 0 100 45 100 100s-45 100 -100 100h-100zM300 400v-300h150 +c83 0 150 67 150 150s-67 150 -150 150h-150z" /> + <glyph glyph-name="20" unicode="" horiz-adv-x="600" +d="M300 800v-300h200l-300 -500v300h-200z" /> + <glyph glyph-name="21" unicode="" +d="M100 800h300v-300l100 100l100 -100v300h50c28 0 50 -22 50 -50v-550h-550c-28 0 -50 -22 -50 -50s22 -50 50 -50h550v-100h-550c-83 0 -150 67 -150 150v550l3 19c8 39 39 70 78 78z" /> + <glyph glyph-name="22" unicode="" horiz-adv-x="400" +d="M0 800h400v-800l-200 200l-200 -200v800z" /> + <glyph glyph-name="23" unicode="" +d="M0 800h800v-100h-800v100zM0 600h300v-103h203v103h297v-591c0 -6 -3 -9 -9 -9h-782c-6 0 -9 3 -9 9v591z" /> + <glyph glyph-name="24" unicode="" +d="M300 800h200c55 0 100 -45 100 -100v-100h191c6 0 9 -3 9 -9v-241c0 -28 -22 -50 -50 -50h-700c-28 0 -50 22 -50 50v241c0 6 3 9 9 9h191v100c0 55 45 100 100 100zM300 700v-100h200v100h-200zM0 209c16 -6 32 -9 50 -9h700c18 0 34 3 50 9v-200c0 -6 -3 -9 -9 -9h-782 +c-6 0 -9 3 -9 9v200z" /> + <glyph glyph-name="25" unicode="" horiz-adv-x="600" +d="M300 800c58 0 110 -16 147 -53s53 -89 53 -147h-100c0 39 -11 61 -25 75s-36 25 -75 25c-35 0 -55 -10 -72 -31s-28 -55 -28 -94c0 -51 20 -107 28 -175h172v-100h-178c-14 -60 -49 -127 -113 -200h491v-100h-600v122l16 12c69 69 95 121 106 166h-122v100h125 +c-8 50 -25 106 -25 175c0 58 16 114 50 156c34 43 88 69 150 69z" /> + <glyph glyph-name="26" unicode="" +d="M34 700h4h3h4h5h700c28 0 50 -22 50 -50v-700c0 -28 -22 -50 -50 -50h-700c-28 0 -50 22 -50 50v700v2c0 20 15 42 34 48zM150 600c-28 0 -50 -22 -50 -50s22 -50 50 -50s50 22 50 50s-22 50 -50 50zM350 600c-28 0 -50 -22 -50 -50s22 -50 50 -50h300c28 0 50 22 50 50 +s-22 50 -50 50h-300zM100 400v-400h600v400h-600z" /> + <glyph glyph-name="27" unicode="" +d="M744 797l6 -3l44 -44c4 -4 3 -8 0 -12l-266 -375l-15 -13l-25 -12c-23 72 -78 127 -150 150l12 25l13 15l375 266zM266 400c74 0 134 -60 134 -134c0 -147 -119 -266 -266 -266c-48 0 -95 12 -134 34c80 46 134 133 134 232c0 74 58 134 132 134z" /> + <glyph glyph-name="28" unicode="" +d="M9 451c0 23 19 50 46 50c8 0 19 -3 26 -7l131 -66l29 22c-79 81 -1 250 118 250s197 -167 119 -250l28 -22l131 66c6 4 12 7 21 7c28 0 50 -22 50 -50c0 -17 -12 -37 -27 -45l-115 -56c9 -16 19 -33 25 -50h68c28 0 50 -22 50 -50s-22 -50 -50 -50h-50 +c0 -23 -2 -45 -6 -66l78 -40c21 -5 37 -28 37 -49c0 -28 -22 -50 -50 -50c-10 0 -23 5 -31 11l-65 35c-24 -46 -62 -86 -103 -110c-35 19 -60 45 -60 72v135v4v5v6v5v5v87c0 28 -22 50 -50 50c-24 0 -45 -17 -50 -40c1 -3 1 -8 1 -11s0 -8 -1 -11v-82v-4v-5v-144 +c0 -28 -24 -53 -59 -72c-41 25 -79 64 -103 110l-66 -35c-8 -6 -21 -11 -31 -11c-28 0 -50 22 -50 50c0 21 16 44 37 49l78 40c-4 21 -6 43 -6 66h-50h-5c-28 0 -50 22 -50 50c0 26 22 50 50 50h5h69c6 17 16 34 25 50l-116 56c-16 7 -28 27 -28 45z" /> + <glyph glyph-name="29" unicode="" +d="M600 700h91c6 0 9 -3 9 -9v-582c0 -6 -3 -9 -9 -9h-91v600zM210 503l290 147v-500l-250 125v-3c-15 0 -25 -8 -28 -22l75 -178c11 -25 0 -58 -25 -69s-58 0 -69 25l-103 272h-91c-6 0 -9 3 -9 9v182c0 6 3 9 9 9h182z" /> + <glyph glyph-name="2a" unicode="" +d="M9 800h682c6 0 9 -3 9 -9v-782c0 -6 -3 -9 -9 -9h-682c-6 0 -9 3 -9 9v782c0 6 3 9 9 9zM100 700v-200h500v200h-500zM100 400v-100h100v100h-100zM300 400v-100h100v100h-100zM500 400v-300h100v300h-100zM100 200v-100h100v100h-100zM300 200v-100h100v100h-100z" /> + <glyph glyph-name="2b" unicode="" +d="M0 800h700v-200h-700v200zM0 500h700v-491c0 -6 -3 -9 -9 -9h-682c-6 0 -9 3 -9 9v491zM100 400v-100h100v100h-100zM300 400v-100h100v100h-100zM500 400v-100h100v100h-100zM100 200v-100h100v100h-100zM300 200v-100h100v100h-100z" /> + <glyph glyph-name="2c" unicode="" +d="M409 800h182c6 0 10 -4 12 -9l94 -182c2 -5 6 -9 12 -9h82c6 0 9 -3 9 -9v-582c0 -6 -3 -9 -9 -9h-782c-6 0 -9 3 -9 9v441c0 83 67 150 150 150h141c6 0 10 4 12 9l94 182c2 5 6 9 12 9zM150 500c-28 0 -50 -22 -50 -50s22 -50 50 -50s50 22 50 50s-22 50 -50 50z +M500 500c-110 0 -200 -90 -200 -200s90 -200 200 -200s200 90 200 200s-90 200 -200 200zM500 400c55 0 100 -45 100 -100s-45 -100 -100 -100s-100 45 -100 100s45 100 100 100z" /> + <glyph glyph-name="2d" unicode="" +d="M0 600h800l-400 -400z" /> + <glyph glyph-name="2e" unicode="" horiz-adv-x="400" +d="M400 800v-800l-400 400z" /> + <glyph glyph-name="2f" unicode="" horiz-adv-x="400" +d="M0 800l400 -400l-400 -400v800z" /> + <glyph glyph-name="30" unicode="" +d="M400 600l400 -400h-800z" /> + <glyph glyph-name="31" unicode="" +d="M0 550c0 23 20 50 46 50h3h5h4h200c17 0 37 -13 44 -28l38 -72h444c14 0 19 -12 15 -25l-81 -250c-4 -13 -21 -25 -35 -25h-350c-14 0 -30 12 -34 25c-27 83 -54 167 -81 250l-10 25h-150c-2 0 -5 -1 -7 -1c-28 0 -51 23 -51 51zM358 100c28 0 50 -22 50 -50 +s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM658 100c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50z" /> + <glyph glyph-name="32" unicode="" +d="M0 700h500v-100h-300v-300h-100l-100 -100v500zM300 500h500v-500l-100 100h-400v400z" /> + <glyph glyph-name="33" unicode="" +d="M641 700l143 -141l-493 -493c-71 76 -146 148 -219 222l-72 71l141 141c50 -51 101 -101 153 -150c116 117 234 231 347 350z" /> + <glyph glyph-name="34" unicode="" +d="M150 600l250 -250l250 250l150 -150l-400 -400l-400 400z" /> + <glyph glyph-name="35" unicode="" horiz-adv-x="600" +d="M400 800l150 -150l-250 -250l250 -250l-150 -150l-400 400z" /> + <glyph glyph-name="36" unicode="" horiz-adv-x="600" +d="M150 800l400 -400l-400 -400l-150 150l250 250l-250 250z" /> + <glyph glyph-name="37" unicode="" +d="M400 600l400 -400l-150 -150l-250 250l-250 -250l-150 150z" /> + <glyph glyph-name="38" unicode="" +d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM600 622l-250 -250l-100 100l-72 -72l172 -172l322 322z" /> + <glyph glyph-name="39" unicode="" +d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM250 622l-72 -72l150 -150l-150 -150l72 -72l150 150l150 -150l72 72l-150 150l150 150l-72 72l-150 -150z" /> + <glyph glyph-name="3a" unicode="" +d="M350 800c28 0 50 -22 50 -50v-50h75c14 0 25 -11 25 -25v-75h-300v75c0 14 11 25 25 25h75v50c0 28 22 50 50 50zM25 700h75v-200h500v200h75c14 0 25 -11 25 -25v-650c0 -14 -11 -25 -25 -25h-650c-14 0 -25 11 -25 25v650c0 14 11 25 25 25z" /> + <glyph glyph-name="3b" unicode="" +d="M400 800c220 0 400 -180 400 -400s-180 -400 -400 -400s-400 180 -400 400s180 400 400 400zM400 700c-166 0 -300 -134 -300 -300s134 -300 300 -300s300 134 300 300s-134 300 -300 300zM350 600h100v-181c23 -24 47 -47 72 -69l-72 -72c-27 30 -55 59 -84 88l-16 12 +v222z" /> + <glyph glyph-name="3c" unicode="" +d="M450 800c138 0 250 -112 250 -250v-50c58 -21 100 -85 100 -150c0 -18 -3 -34 -9 -50h-191v50c0 83 -67 150 -150 150s-150 -67 -150 -150v-50h-272c-17 30 -28 63 -28 100c0 110 90 200 200 200c23 114 129 200 250 200zM434 400h3h4c3 0 6 1 9 1c28 0 50 -22 50 -50v-1 +v-150h150l-200 -200l-200 200h150v150v2c0 20 15 42 34 48z" /> + <glyph glyph-name="3d" unicode="" +d="M450 800c138 0 250 -112 250 -250v-50c58 -21 100 -85 100 -150c0 -18 -3 -34 -9 -50h-141l-200 200l-200 -200h-222c-17 30 -28 63 -28 100c0 110 90 200 200 200c23 114 129 200 250 200zM450 350l250 -250h-200v-50c0 -28 -22 -50 -50 -50s-50 22 -50 50v50h-200z" /> + <glyph glyph-name="3e" unicode="" +d="M450 700c138 0 250 -112 250 -250v-50c58 -21 100 -85 100 -150c0 -83 -67 -150 -150 -150h-450c-110 0 -200 90 -200 200s90 200 200 200c23 114 129 200 250 200z" /> + <glyph glyph-name="3f" unicode="" +d="M250 800c82 0 154 -40 200 -100c-143 0 -270 -85 -325 -209c-36 -10 -70 -25 -100 -47c-16 33 -25 67 -25 106c0 138 112 250 250 250zM450 600c138 0 250 -112 250 -250v-50c58 -21 100 -85 100 -150c0 -83 -67 -150 -150 -150h-450c-110 0 -200 90 -200 200 +s90 200 200 200c23 114 129 200 250 200z" /> + <glyph glyph-name="40" unicode="" +d="M500 700h100l-300 -600h-100zM100 600h100l-100 -200l100 -200h-100l-100 200zM600 600h100l100 -200l-100 -200h-100l100 200z" /> + <glyph glyph-name="41" unicode="" +d="M350 800h100l50 -119l28 -12l119 50l72 -72l-50 -119l12 -28l119 -50v-100l-119 -50l-12 -28l50 -119l-72 -72l-119 50l-28 -12l-50 -119h-100l-50 119l-28 12l-119 -50l-72 72l50 119l-12 28l-119 50v100l119 50l12 28l-50 119l72 72l119 -50l28 12zM400 550 +c-83 0 -150 -67 -150 -150s67 -150 150 -150s150 67 150 150s-67 150 -150 150z" /> + <glyph glyph-name="42" unicode="" +d="M0 800h800v-200h-800v200zM200 500h400l-200 -200zM0 100h800v-100h-800v100z" /> + <glyph glyph-name="43" unicode="" +d="M0 800h100v-800h-100v800zM600 800h200v-800h-200v800zM500 600v-400l-200 200z" /> + <glyph glyph-name="44" unicode="" +d="M0 800h200v-800h-200v800zM700 800h100v-800h-100v800zM300 600l200 -200l-200 -200v400z" /> + <glyph glyph-name="45" unicode="" +d="M0 800h800v-100h-800v100zM400 500l200 -200h-400zM0 200h800v-200h-800v200z" /> + <glyph glyph-name="46" unicode="" +d="M150 700c83 0 150 -67 150 -150v-50h100v50c0 83 67 150 150 150s150 -67 150 -150s-67 -150 -150 -150h-50v-100h50c83 0 150 -67 150 -150s-67 -150 -150 -150s-150 67 -150 150v50h-100v-50c0 -83 -67 -150 -150 -150s-150 67 -150 150s67 150 150 150h50v100h-50 +c-83 0 -150 67 -150 150s67 150 150 150zM150 600c-28 0 -50 -22 -50 -50s22 -50 50 -50h50v50c0 28 -22 50 -50 50zM550 600c-28 0 -50 -22 -50 -50v-50h50c28 0 50 22 50 50s-22 50 -50 50zM300 400v-100h100v100h-100zM150 200c-28 0 -50 -22 -50 -50s22 -50 50 -50 +s50 22 50 50v50h-50zM500 200v-50c0 -28 22 -50 50 -50s50 22 50 50s-22 50 -50 50h-50z" /> + <glyph glyph-name="47" unicode="" +d="M0 791c0 5 4 9 9 9h782c6 0 9 -4 9 -10v-790l-200 200h-591c-6 0 -9 3 -9 9v582z" /> + <glyph glyph-name="48" unicode="" +d="M400 800c220 0 400 -180 400 -400s-180 -400 -400 -400s-400 180 -400 400s180 400 400 400zM400 700c-166 0 -300 -134 -300 -300s134 -300 300 -300s300 134 300 300s-134 300 -300 300zM600 600l-100 -300l-300 -100l100 300zM400 450c-28 0 -50 -22 -50 -50 +s22 -50 50 -50s50 22 50 50s-22 50 -50 50z" /> + <glyph glyph-name="49" unicode="" +d="M400 800c220 0 400 -180 400 -400s-180 -400 -400 -400s-400 180 -400 400s180 400 400 400zM400 700v-600c166 0 300 134 300 300s-134 300 -300 300z" /> + <glyph glyph-name="4a" unicode="" +d="M0 800h800v-100h-800v100zM0 600h500v-100h-500v100zM0 300h800v-100h-800v100zM0 100h600v-100h-600v100zM750 100c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50z" /> + <glyph glyph-name="4b" unicode="" +d="M25 700h750c14 0 25 -11 25 -25v-75h-800v75c0 14 11 25 25 25zM0 500h800v-375c0 -14 -11 -25 -25 -25h-750c-14 0 -25 11 -25 25v375zM100 300v-100h100v100h-100zM300 300v-100h100v100h-100z" /> + <glyph glyph-name="4c" unicode="" +d="M100 800h100v-100h450l100 100l50 -50l-100 -100v-450h100v-100h-100v-100h-100v100h-500v500h-100v100h100v100zM200 600v-350l350 350h-350zM600 550l-350 -350h350v350z" /> + <glyph glyph-name="4d" unicode="" +d="M400 800c220 0 400 -180 400 -400s-180 -400 -400 -400s-400 180 -400 400s180 400 400 400zM400 700c-166 0 -300 -134 -300 -300s134 -300 300 -300s300 134 300 300s-134 300 -300 300zM400 600c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50z +M200 452c0 20 15 42 34 48h3h3h8c12 0 28 -7 36 -16l91 -90l25 6c55 0 100 -45 100 -100s-45 -100 -100 -100s-100 45 -100 100l6 25l-90 91c-9 8 -16 24 -16 36zM550 500c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50z" /> + <glyph glyph-name="4e" unicode="" +d="M300 800h200v-300h200l-300 -300l-300 300h200v300zM0 100h800v-100h-800v100z" /> + <glyph glyph-name="4f" unicode="" +d="M0 800h800v-100h-800v100zM400 600l300 -300h-200v-300h-200v300h-200z" /> + <glyph glyph-name="50" unicode="" +d="M200 700h600v-600h-600l-200 300zM350 622l-72 -72l150 -150l-150 -150l72 -72l150 150l150 -150l72 72l-150 150l150 150l-72 72l-150 -150z" /> + <glyph glyph-name="51" unicode="" +d="M400 700c220 0 400 -180 400 -400h-100c0 166 -134 300 -300 300s-300 -134 -300 -300h-100c0 220 180 400 400 400zM341 491l59 -88l59 88c81 -25 141 -101 141 -191c0 -110 -90 -200 -200 -200s-200 90 -200 200c0 90 60 166 141 191z" /> + <glyph glyph-name="52" unicode="" +d="M0 800h300v-400h400v-400h-700v800zM400 800l300 -300h-300v300zM100 600v-100h100v100h-100zM100 400v-100h100v100h-100zM100 200v-100h400v100h-400z" /> + <glyph glyph-name="53" unicode="" horiz-adv-x="600" +d="M200 700h100v-100h75c30 0 58 -6 81 -22s44 -44 44 -78v-100h-100v94c-4 3 -13 6 -25 6h-250c-14 0 -25 -11 -25 -25v-50c0 -15 20 -40 34 -44l257 -65c66 -16 109 -73 109 -141v-50c0 -68 -57 -125 -125 -125h-75v-100h-100v100h-75c-30 0 -58 6 -81 22s-44 44 -44 78 +v100h100v-94c4 -3 13 -6 25 -6h250c14 0 25 11 25 25v50c0 15 -20 40 -34 44l-257 65c-66 16 -109 73 -109 141v50c0 68 57 125 125 125h75v100z" /> + <glyph glyph-name="54" unicode="" +d="M0 700h300v-300l-300 -300v600zM500 700h300v-300l-300 -300v600z" /> + <glyph glyph-name="55" unicode="" +d="M300 700v-600h-300v300zM800 700v-600h-300v300z" /> + <glyph glyph-name="56" unicode="" +d="M300 700v-100c-111 0 -200 -89 -200 -200h200v-300h-300v300c0 165 135 300 300 300zM800 700v-100c-111 0 -200 -89 -200 -200h200v-300h-300v300c0 165 135 300 300 300z" /> + <glyph glyph-name="57" unicode="" +d="M0 700h300v-300c0 -165 -135 -300 -300 -300v100c111 0 200 89 200 200h-200v300zM500 700h300v-300c0 -165 -135 -300 -300 -300v100c111 0 200 89 200 200h-200v300z" /> + <glyph glyph-name="58" unicode="" horiz-adv-x="600" +d="M300 800l34 -34c11 -11 266 -270 266 -488c0 -165 -135 -300 -300 -300s-300 135 -300 300c0 218 255 477 266 488zM150 328c-28 0 -50 -22 -50 -50c0 -110 90 -200 200 -200c28 0 50 22 50 50s-22 50 -50 50c-55 0 -100 45 -100 100c0 28 -22 50 -50 50z" /> + <glyph glyph-name="59" unicode="" +d="M400 800l400 -500h-800zM0 200h800v-200h-800v200z" /> + <glyph glyph-name="5a" unicode="" horiz-adv-x="600" +d="M300 800l300 -300h-600zM0 300h600l-300 -300z" /> + <glyph glyph-name="5b" unicode="" +d="M0 500h200v-200h-200v200zM300 500h200v-200h-200v200zM600 500h200v-200h-200v200z" /> + <glyph glyph-name="5c" unicode="" +d="M0 700h800v-100l-400 -200l-400 200v100zM0 500l400 -200l400 200v-400h-800v400z" /> + <glyph glyph-name="5d" unicode="" +d="M400 800l400 -200v-600h-800v600zM400 688l-300 -150v-188l300 -150l300 150v188zM200 500h400v-100l-200 -100l-200 100v100z" /> + <glyph glyph-name="5e" unicode="" +d="M600 700c69 0 134 -19 191 -50l-16 -106c-49 35 -109 56 -175 56c-131 0 -240 -84 -281 -200h331l-16 -100h-334c0 -36 8 -68 19 -100h297l-16 -100h-222c55 -61 133 -100 222 -100c78 0 147 30 200 78v-122c-59 -35 -127 -56 -200 -56c-147 0 -274 82 -344 200h-256 +l19 100h197c-8 32 -16 66 -16 100h-200l25 100h191c45 172 198 300 384 300z" /> + <glyph glyph-name="5f" unicode="" +d="M0 700h700v-100h-700v100zM0 500h500v-100h-500v100zM0 300h800v-100h-800v100zM0 100h100v-100h-100v100zM200 100h100v-100h-100v100zM400 100h100v-100h-100v100z" /> + <glyph glyph-name="60" unicode="" +d="M0 800h800v-100h-800v100zM200 600h400l-200 -200zM0 200h800v-200h-800v200z" /> + <glyph glyph-name="61" unicode="" +d="M0 800h100v-800h-100v800zM600 800h200v-800h-200v800zM200 600l200 -200l-200 -200v400z" /> + <glyph glyph-name="62" unicode="" +d="M0 800h200v-800h-200v800zM700 800h100v-800h-100v800zM600 600v-400l-200 200z" /> + <glyph glyph-name="63" unicode="" +d="M0 800h800v-200h-800v200zM400 400l200 -200h-400zM0 100h800v-100h-800v100z" /> + <glyph glyph-name="64" unicode="" +d="M0 800h200v-100h-100v-600h600v100h100v-200h-800v800zM400 800h400v-400l-150 150l-250 -250l-100 100l250 250z" /> + <glyph glyph-name="65" unicode="" +d="M403 700c247 0 397 -300 397 -300s-150 -300 -397 -300c-253 0 -403 300 -403 300s150 300 403 300zM400 600c-110 0 -200 -90 -200 -200s90 -200 200 -200s200 90 200 200s-90 200 -200 200zM400 500c10 0 19 -3 28 -6c-16 -8 -28 -24 -28 -44c0 -28 22 -50 50 -50 +c20 0 36 12 44 28c3 -9 6 -18 6 -28c0 -55 -45 -100 -100 -100s-100 45 -100 100s45 100 100 100z" /> + <glyph glyph-name="66" unicode="" horiz-adv-x="900" +d="M331 700h3h3c3 1 7 1 10 1c12 0 29 -8 37 -17l94 -93l66 65c57 57 155 57 212 0c58 -58 58 -154 0 -212l-65 -66l93 -94c10 -8 18 -25 18 -38c0 -28 -22 -50 -50 -50c-13 0 -32 9 -40 20l-62 65l-381 -381h-269v272l375 381l-63 63c-9 8 -16 24 -16 36c0 20 16 42 35 48z +M447 481l-313 -315l128 -132l316 316z" /> + <glyph glyph-name="67" unicode="" +d="M0 800h300v-400h400v-400h-700v800zM400 800l300 -300h-300v300z" /> + <glyph glyph-name="68" unicode="" +d="M200 800c0 0 200 -100 200 -300s-298 -302 -200 -500c0 0 -200 100 -200 300s300 300 200 500zM500 500c0 0 200 -100 200 -300c0 -150 -60 -200 -100 -200h-300c0 200 300 300 200 500z" /> + <glyph glyph-name="69" unicode="" +d="M0 800h100v-800h-100v800zM200 800h300v-100h300l-200 -203l200 -197h-400v100h-200v400z" /> + <glyph glyph-name="6a" unicode="" horiz-adv-x="400" +d="M150 800h150l-100 -200h200l-150 -300h150l-300 -300l-100 300h134l66 200h-200z" /> + <glyph glyph-name="6b" unicode="" +d="M0 800h300v-100h500v-100h-800v200zM0 500h800v-450c0 -28 -22 -50 -50 -50h-700c-28 0 -50 22 -50 50v450z" /> + <glyph glyph-name="6c" unicode="" +d="M150 800c83 0 150 -67 150 -150c0 -66 -41 -121 -100 -141v-118c15 5 33 9 50 9h200c28 0 50 22 50 50v59c-59 20 -100 75 -100 141c0 83 67 150 150 150s150 -67 150 -150c0 -66 -41 -121 -100 -141v-59c0 -82 -68 -150 -150 -150h-200c-14 0 -25 -7 -34 -16 +c50 -24 84 -74 84 -134c0 -83 -67 -150 -150 -150s-150 67 -150 150c0 66 41 121 100 141v218c-59 20 -100 75 -100 141c0 83 67 150 150 150z" /> + <glyph glyph-name="6d" unicode="" +d="M0 800h400l-150 -150l150 -150l-100 -100l-150 150l-150 -150v400zM500 400l150 -150l150 150v-400h-400l150 150l-150 150z" /> + <glyph glyph-name="6e" unicode="" +d="M100 800l150 -150l150 150v-400h-400l150 150l-150 150zM400 400h400l-150 -150l150 -150l-100 -100l-150 150l-150 -150v400z" /> + <glyph glyph-name="6f" unicode="" +d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM400 700c-56 0 -108 -17 -153 -44l22 -19c33 -18 13 -48 -13 -59c-30 -13 -77 10 -65 -41c13 -55 -27 -3 -47 -15c-42 -26 49 -152 31 -156l-59 34c-8 0 -13 -5 -16 -10 +c1 -30 10 -57 19 -84c28 -11 77 -2 100 -25c47 -28 97 -115 75 -159c34 -13 68 -22 106 -22c101 0 193 48 247 125c3 24 -8 44 -50 44c-69 0 -156 13 -153 97c2 46 101 108 66 143c-30 30 12 39 12 66c0 37 -65 32 -69 50s20 36 41 56c-30 10 -60 19 -94 19zM631 591 +c-38 -11 -94 -35 -87 -53c6 -15 52 -1 65 -13c11 -10 16 -59 44 -31l22 22v3c-11 26 -26 50 -44 72z" /> + <glyph glyph-name="70" unicode="" +d="M703 800l97 -100l-400 -400l-100 100l-200 -203l-100 100l300 303l100 -100zM0 100h800v-100h-800v100z" /> + <glyph glyph-name="71" unicode="" +d="M0 700h100v-100h-100v100zM200 700h100v-100h-100v100zM400 700h100v-100h-100v100zM600 700h100v-100h-100v100zM0 500h100v-100h-100v100zM200 500h100v-100h-100v100zM400 500h100v-100h-100v100zM600 500h100v-100h-100v100zM0 300h100v-100h-100v100zM200 300h100 +v-100h-100v100zM400 300h100v-100h-100v100zM600 300h100v-100h-100v100zM0 100h100v-100h-100v100zM200 100h100v-100h-100v100zM400 100h100v-100h-100v100zM600 100h100v-100h-100v100z" /> + <glyph glyph-name="72" unicode="" +d="M0 800h200v-200h-200v200zM300 800h200v-200h-200v200zM600 800h200v-200h-200v200zM0 500h200v-200h-200v200zM300 500h200v-200h-200v200zM600 500h200v-200h-200v200zM0 200h200v-200h-200v200zM300 200h200v-200h-200v200zM600 200h200v-200h-200v200z" /> + <glyph glyph-name="73" unicode="" +d="M0 800h300v-300h-300v300zM500 800h300v-300h-300v300zM0 300h300v-300h-300v300zM500 300h300v-300h-300v300z" /> + <glyph glyph-name="74" unicode="" +d="M19 800h662c11 0 19 -8 19 -19v-331c0 -28 -22 -50 -50 -50h-600c-28 0 -50 22 -50 50v331c0 11 8 19 19 19zM0 309c16 -6 32 -9 50 -9h600c18 0 34 3 50 9v-290c0 -11 -8 -19 -19 -19h-662c-11 0 -19 8 -19 19v290zM550 200c-28 0 -50 -22 -50 -50s22 -50 50 -50 +s50 22 50 50s-22 50 -50 50z" /> + <glyph glyph-name="75" unicode="" +d="M0 700h300v-100h-50c-28 0 -50 -22 -50 -50v-150h300v150c0 28 -22 50 -50 50h-50v100h300v-100h-50c-28 0 -50 -22 -50 -50v-400c0 -28 22 -50 50 -50h50v-100h-300v100h50c28 0 50 22 50 50v150h-300v-150c0 -28 22 -50 50 -50h50v-100h-300v100h50c28 0 50 22 50 50 +v400c0 28 -22 50 -50 50h-50v100z" /> + <glyph glyph-name="76" unicode="" +d="M400 700c165 0 300 -135 300 -300v-100h50c28 0 50 -22 50 -50v-200c0 -28 -22 -50 -50 -50h-100c-28 0 -50 22 -50 50v350c0 111 -89 200 -200 200s-200 -89 -200 -200v-350c0 -28 -22 -50 -50 -50h-100c-28 0 -50 22 -50 50v200c0 28 22 50 50 50h50v100 +c0 165 135 300 300 300z" /> + <glyph glyph-name="77" unicode="" +d="M0 500c0 109 91 200 200 200s200 -91 200 -200c0 109 91 200 200 200s200 -91 200 -200c0 -55 -23 -105 -59 -141l-341 -340l-341 340c-36 36 -59 86 -59 141z" /> + <glyph glyph-name="78" unicode="" +d="M400 700l400 -300l-100 3v-403h-200v200h-200v-200h-200v400h-100z" /> + <glyph glyph-name="79" unicode="" +d="M0 800h800v-800h-800v800zM100 700v-300l100 100l400 -400h100v100l-200 200l100 100l100 -100v300h-600z" /> + <glyph glyph-name="7a" unicode="" +d="M19 800h762c11 0 19 -8 19 -19v-762c0 -11 -8 -19 -19 -19h-762c-11 0 -19 8 -19 19v762c0 11 8 19 19 19zM100 600v-300h100l100 -100h200l100 100h100v300h-600z" /> + <glyph glyph-name="7b" unicode="" +d="M200 600c80 0 142 -56 200 -122c58 66 119 122 200 122c131 0 200 -101 200 -200s-69 -200 -200 -200c-81 0 -142 56 -200 122c-58 -66 -121 -122 -200 -122c-131 0 -200 101 -200 200s69 200 200 200zM200 500c-74 0 -100 -54 -100 -100s26 -100 100 -100 +c42 0 88 47 134 100c-46 53 -92 100 -134 100zM600 500c-43 0 -88 -47 -134 -100c46 -53 91 -100 134 -100c74 0 100 54 100 100s-26 100 -100 100z" /> + <glyph glyph-name="7c" unicode="" horiz-adv-x="400" +d="M300 800c55 0 100 -45 100 -100s-45 -100 -100 -100s-100 45 -100 100s45 100 100 100zM150 550c83 0 150 -69 150 -150c0 -66 -100 -214 -100 -250c0 -28 22 -50 50 -50s50 22 50 50h100c0 -83 -67 -150 -150 -150s-150 64 -150 150s100 222 100 250s-22 50 -50 50 +s-50 -22 -50 -50h-100c0 83 67 150 150 150z" /> + <glyph glyph-name="7d" unicode="" +d="M200 800h500v-100h-122c-77 -197 -156 -392 -234 -588l-6 -12h162v-100h-500v100h122c77 197 156 392 234 588l7 12h-163v100z" /> + <glyph glyph-name="7e" unicode="" +d="M0 700h800v-100h-800v100zM0 500h800v-100h-800v100zM0 300h800v-100h-800v100zM100 100h600v-100h-600v100z" /> + <glyph glyph-name="7f" unicode="" +d="M0 700h800v-100h-800v100zM0 500h800v-100h-800v100zM0 300h800v-100h-800v100zM0 100h600v-100h-600v100z" /> + <glyph glyph-name="80" unicode="" +d="M0 700h800v-100h-800v100zM0 500h800v-100h-800v100zM0 300h800v-100h-800v100zM200 100h600v-100h-600v100z" /> + <glyph glyph-name="81" unicode="" +d="M550 800c138 0 250 -112 250 -250s-112 -250 -250 -250c-16 0 -32 0 -47 3l-3 -3v-100h-200v-200h-300v200l303 303c-3 15 -3 31 -3 47c0 138 112 250 250 250zM600 700c-55 0 -100 -45 -100 -100s45 -100 100 -100s100 45 100 100s-45 100 -100 100z" /> + <glyph glyph-name="82" unicode="" +d="M134 600h3h4h4h5h500c28 0 50 -22 50 -50v-350h100v-150c0 -28 -22 -50 -50 -50h-700c-28 0 -50 22 -50 50v150h100v350v2c0 20 15 42 34 48zM200 500v-300h100v-100h200v100h100v300h-400z" /> + <glyph glyph-name="83" unicode="" +d="M0 800h400v-400h-400v400zM500 600h100v-400h-400v100h300v300zM700 400h100v-400h-400v100h300v300z" /> + <glyph glyph-name="84" unicode="" horiz-adv-x="600" +d="M337 694c6 4 12 7 21 7c28 0 50 -22 50 -50c0 -17 -12 -37 -27 -45l-300 -150c-8 -6 -21 -11 -31 -11c-28 0 -50 22 -50 50c0 21 16 44 37 49zM437 544c6 4 12 7 21 7c28 0 50 -22 50 -50c0 -17 -12 -37 -27 -45l-400 -200c-8 -6 -21 -11 -31 -11c-28 0 -50 22 -50 50 +c0 21 16 44 37 49zM437 344c6 4 12 7 21 7c28 0 50 -22 50 -50c0 -17 -12 -37 -27 -45l-106 -56c24 -4 43 -26 43 -50c0 -28 -23 -51 -51 -51c-2 0 -6 1 -8 1h-200c-26 1 -48 24 -48 50c0 16 12 36 26 44zM151 -50c0 23 20 50 46 50h3h4h5h100c28 0 50 -22 50 -50 +s-22 -50 -50 -50h-100c-2 0 -6 -1 -8 -1c-28 0 -50 23 -50 51z" /> + <glyph glyph-name="85" unicode="" +d="M199 800h100v-200h-200v100h100v100zM586 797h1c18 1 38 1 56 -3c36 -8 69 -26 97 -54c78 -78 78 -203 0 -281l-150 -150c-8 -13 -28 -24 -43 -24c-28 0 -50 22 -50 50c0 15 11 35 24 43l150 150c40 40 39 105 0 144c-41 41 -110 34 -144 0l-44 -44 +c-8 -13 -27 -24 -42 -24c-28 0 -50 22 -50 50c0 15 11 35 24 43l43 44c32 33 72 53 128 56zM208 490c4 5 14 16 22 16h3c2 0 6 1 8 1c28 0 50 -22 50 -50c0 -11 -6 -27 -14 -35l-150 -150c-40 -40 -39 -105 0 -144c41 -41 110 -34 144 0l44 44c8 13 27 24 42 24 +c28 0 50 -22 50 -50c0 -15 -11 -35 -24 -43l-43 -44c-22 -22 -48 -37 -75 -47c-70 -25 -151 -9 -207 47c-78 78 -78 203 0 281zM499 200h200v-100h-100v-100h-100v200z" /> + <glyph glyph-name="86" unicode="" +d="M586 797c18 1 39 1 57 -3c36 -8 69 -26 97 -54c78 -78 78 -203 0 -281l-150 -150c-62 -62 -132 -81 -182 -78s-69 17 -84 25s-26 27 -26 44c0 28 22 51 50 51c8 0 19 -3 26 -7c0 0 15 -11 41 -13s62 3 106 47l150 150c40 40 39 105 0 144c-41 41 -110 34 -144 0 +c-8 -13 -28 -24 -43 -24c-28 0 -50 22 -50 50c0 15 11 35 24 43c32 33 72 53 128 56zM386 566c50 -2 64 -17 85 -22s37 -28 37 -49c0 -28 -22 -50 -50 -50c-10 0 -23 5 -31 11c0 0 -19 9 -47 10s-63 -4 -103 -44l-150 -150c-40 -40 -39 -105 0 -144c41 -41 110 -34 144 0 +c8 13 27 24 42 24c28 0 50 -22 50 -50c0 -15 -10 -35 -23 -43c-22 -22 -48 -37 -75 -47c-70 -25 -151 -9 -207 47c-78 78 -78 203 0 281l150 150c60 60 128 78 178 76z" /> + <glyph glyph-name="87" unicode="" +d="M0 700h300v-300h-300v300zM400 700h400v-100h-400v100zM400 500h300v-100h-300v100zM0 300h300v-300h-300v300zM400 300h400v-100h-400v100zM400 100h300v-100h-300v100z" /> + <glyph glyph-name="88" unicode="" +d="M50 700c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM200 700h600v-100h-600v100zM50 500c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM200 500h600v-100h-600v100zM50 300c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50 +s22 50 50 50zM200 300h600v-100h-600v100zM50 100c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM200 100h600v-100h-600v100z" /> + <glyph glyph-name="89" unicode="" +d="M800 800l-400 -800l-100 300l-300 100z" /> + <glyph glyph-name="8a" unicode="" horiz-adv-x="600" +d="M300 700c110 0 200 -90 200 -200v-100h100v-400h-600v400h100v100c0 110 90 200 200 200zM300 600c-56 0 -100 -44 -100 -100v-100h200v100c0 56 -44 100 -100 100z" /> + <glyph glyph-name="8b" unicode="" horiz-adv-x="600" +d="M300 800c110 0 200 -90 200 -200v-200h100v-400h-600v400h400v200c0 56 -44 100 -100 100s-100 -44 -100 -100h-100c0 110 90 200 200 200z" /> + <glyph glyph-name="8c" unicode="" +d="M400 700v-100c-111 0 -200 -89 -200 -200h100l-150 -200l-150 200h100c0 165 135 300 300 300zM650 600l150 -200h-100c0 -165 -135 -300 -300 -300v100c111 0 200 89 200 200h-100z" /> + <glyph glyph-name="8d" unicode="" +d="M100 800h600v-300h100l-150 -250l-150 250h100v200h-400v-100h-100v200zM150 550l150 -250h-100v-200h400v100h100v-200h-600v300h-100z" /> + <glyph glyph-name="8e" unicode="" +d="M600 700l200 -150l-200 -150v100h-500v-100h-100v100c0 55 45 100 100 100h500v100zM200 300v-100h500v100h100v-100c0 -55 -45 -100 -100 -100h-500v-100l-200 150z" /> + <glyph glyph-name="8f" unicode="" horiz-adv-x="900" +d="M350 800c193 0 350 -157 350 -350c0 -60 -17 -117 -44 -166c5 -3 12 -8 16 -12l100 -100c16 -16 30 -49 30 -72c0 -56 -46 -102 -102 -102c-23 0 -56 14 -72 30l-100 100c-4 3 -9 9 -12 13c-49 -26 -107 -41 -166 -41c-193 0 -350 157 -350 350s157 350 350 350zM350 200 +c142 0 250 108 250 250c0 139 -111 250 -250 250s-250 -111 -250 -250s111 -250 250 -250z" /> + <glyph glyph-name="90" unicode="" horiz-adv-x="600" +d="M300 800c166 0 300 -134 300 -300c0 -200 -300 -500 -300 -500s-300 300 -300 500c0 166 134 300 300 300zM300 700c-110 0 -200 -90 -200 -200s90 -200 200 -200s200 90 200 200s-90 200 -200 200z" /> + <glyph glyph-name="91" unicode="" horiz-adv-x="900" +d="M0 800h800v-541c1 -3 1 -8 1 -11s0 -7 -1 -10v-238h-800v800zM495 250c0 26 22 50 50 50h5h150v400h-600v-600h600v100h-150h-5c-28 0 -50 22 -50 50zM350 600c83 0 150 -67 150 -150c0 -100 -150 -250 -150 -250s-150 150 -150 250c0 83 67 150 150 150zM350 500 +c-28 0 -50 -22 -50 -50s22 -50 50 -50s50 22 50 50s-22 50 -50 50z" /> + <glyph glyph-name="92" unicode="" horiz-adv-x="600" +d="M0 700h200v-600h-200v600zM400 700h200v-600h-200v600z" /> + <glyph glyph-name="93" unicode="" horiz-adv-x="600" +d="M0 700l600 -300l-600 -300v600z" /> + <glyph glyph-name="94" unicode="" horiz-adv-x="600" +d="M300 700c166 0 300 -134 300 -300s-134 -300 -300 -300s-300 134 -300 300s134 300 300 300z" /> + <glyph glyph-name="95" unicode="" +d="M400 700v-600l-400 300zM400 400l400 300v-600z" /> + <glyph glyph-name="96" unicode="" +d="M0 700l400 -300l-400 -300v600zM400 100v600l400 -300z" /> + <glyph glyph-name="97" unicode="" +d="M0 700h200v-600h-200v600zM200 400l500 300v-600z" /> + <glyph glyph-name="98" unicode="" +d="M0 700l500 -300l-500 -300v600zM500 100v600h200v-600h-200z" /> + <glyph glyph-name="99" unicode="" horiz-adv-x="600" +d="M0 700h600v-600h-600v600z" /> + <glyph glyph-name="9a" unicode="" +d="M200 800h400v-200h200v-400h-200v-200h-400v200h-200v400h200v200z" /> + <glyph glyph-name="9b" unicode="" +d="M0 700h800v-100h-800v100zM0 403h800v-100h-800v100zM0 103h800v-100h-800v100z" /> + <glyph glyph-name="9c" unicode="" horiz-adv-x="600" +d="M278 700c7 2 13 4 22 4c55 0 100 -45 100 -100v-4v-200c0 -55 -45 -100 -100 -100s-100 45 -100 100v200v2c0 44 35 88 78 98zM34 500h4h3c3 0 6 1 9 1c28 0 50 -22 50 -50v-1v-50c0 -111 89 -200 200 -200s200 89 200 200v50c0 28 22 50 50 50s50 -22 50 -50v-50 +c0 -148 -109 -270 -250 -294v-106h50c55 0 100 -45 100 -100h-400c0 55 45 100 100 100h50v106c-141 24 -250 146 -250 294v50v2c0 20 15 42 34 48z" /> + <glyph glyph-name="9d" unicode="" +d="M0 500h800v-200h-800v200z" /> + <glyph glyph-name="9e" unicode="" +d="M34 700h4h3h4h5h700c28 0 50 -22 50 -50v-500c0 -28 -22 -50 -50 -50h-250v-100h100c55 0 100 -45 100 -100h-600c0 55 45 100 100 100h100v100h-250c-28 0 -50 22 -50 50v500v2c0 20 15 42 34 48zM100 600v-400h600v400h-600z" /> + <glyph glyph-name="9f" unicode="" +d="M272 700c-14 -40 -22 -83 -22 -128c0 -221 179 -400 400 -400c45 0 88 8 128 22c-53 -158 -202 -272 -378 -272c-221 0 -400 179 -400 400c0 176 114 325 272 378z" /> + <glyph glyph-name="a0" unicode="" +d="M350 700l150 -150h-100v-150h150v100l150 -150l-150 -150v100h-150v-150h100l-150 -150l-150 150h100v150h-150v-100l-150 150l150 150v-100h150v150h-100z" /> + <glyph glyph-name="a1" unicode="" +d="M800 800v-550c0 -83 -67 -150 -150 -150s-150 67 -150 150s67 150 150 150c17 0 35 -4 50 -9v206c-201 -6 -327 -27 -400 -50v-397c0 -83 -67 -150 -150 -150s-150 67 -150 150s67 150 150 150c17 0 35 -4 50 -9v409s100 100 600 100z" /> + <glyph glyph-name="a2" unicode="" horiz-adv-x="700" +d="M499 700c51 0 102 -20 141 -59c78 -78 78 -203 0 -281l-250 -244c-48 -48 -127 -48 -175 0s-48 127 0 175l96 97l69 -69l-90 -94l-7 -3c-10 -10 -10 -28 0 -38s28 -10 38 0l250 247c37 40 39 102 0 141s-104 40 -144 0l-278 -275c-66 -69 -68 -179 0 -247 +c69 -69 181 -69 250 0l9 12l116 113l69 -69l-125 -125c-107 -107 -281 -107 -388 0s-107 281 0 388l278 272c39 39 90 59 141 59z" /> + <glyph glyph-name="a3" unicode="" +d="M600 800l200 -200l-100 -100l-200 200zM400 600l200 -200l-400 -400h-200v200z" /> + <glyph glyph-name="a4" unicode="" +d="M550 800c83 0 150 -90 150 -200s-67 -200 -150 -200c-22 0 -40 8 -59 19c6 26 9 52 9 81c0 84 -27 158 -72 212c27 52 71 88 122 88zM250 700c83 0 150 -90 150 -200s-67 -200 -150 -200s-150 90 -150 200s67 200 150 200zM725 384c44 -22 75 -66 75 -118v-166h-200v66 +c0 50 -17 96 -44 134c66 2 126 33 169 84zM75 284c45 -53 106 -84 175 -84s130 31 175 84c44 -22 75 -66 75 -118v-166h-500v166c0 52 31 96 75 118z" /> + <glyph glyph-name="a5" unicode="" +d="M400 800c110 0 200 -112 200 -250s-90 -250 -200 -250s-200 112 -200 250s90 250 200 250zM191 300c54 -61 128 -100 209 -100s155 39 209 100c106 -5 191 -92 191 -200v-100h-800v100c0 108 85 195 191 200z" /> + <glyph glyph-name="a6" unicode="" horiz-adv-x="600" +d="M19 800h462c11 0 19 -8 19 -19v-762c0 -11 -8 -19 -19 -19h-462c-11 0 -19 8 -19 19v762c0 11 8 19 19 19zM100 700v-500h300v500h-300zM250 150c-28 0 -50 -22 -50 -50s22 -50 50 -50s50 22 50 50s-22 50 -50 50z" /> + <glyph glyph-name="a7" unicode="" +d="M350 800c17 0 34 -1 50 -3v-397l-297 297c63 64 150 103 247 103zM500 694c169 -25 300 -168 300 -344c0 -193 -157 -350 -350 -350c-85 0 -161 31 -222 81l272 272v341zM91 562l237 -234l-212 -212c-70 55 -116 138 -116 234c0 84 35 158 91 212z" /> + <glyph glyph-name="a8" unicode="" +d="M92 650c0 23 20 50 46 50h3h4h5h400c28 0 50 -22 50 -50s-22 -50 -50 -50h-50v-200h100c55 0 100 -45 100 -100h-300v-300l-56 -100l-44 100v300h-300c0 55 45 100 100 100h100v200h-50c-2 0 -6 -1 -8 -1c-28 0 -50 23 -50 51z" /> + <glyph glyph-name="a9" unicode="" +d="M400 800c221 0 400 -179 400 -400s-179 -400 -400 -400s-400 179 -400 400s179 400 400 400zM300 600v-400l300 200z" /> + <glyph glyph-name="aa" unicode="" +d="M300 800h200v-300h300v-200h-300v-300h-200v300h-300v200h300v300z" /> + <glyph glyph-name="ab" unicode="" +d="M300 800h100v-400h-100v400zM172 656l62 -78l-40 -31c-58 -46 -94 -117 -94 -197c0 -139 111 -250 250 -250s250 111 250 250c0 80 -39 151 -97 197l-37 31l62 78l38 -31c82 -64 134 -164 134 -275c0 -193 -157 -350 -350 -350s-350 157 -350 350c0 111 53 211 134 275z +" /> + <glyph glyph-name="ac" unicode="" +d="M200 800h400v-200h-400v200zM9 500h782c6 0 9 -3 9 -9v-282c0 -6 -3 -9 -9 -9h-91v200h-600v-200h-91c-6 0 -9 3 -9 9v282c0 6 3 9 9 9zM200 300h400v-300h-400v300z" /> + <glyph glyph-name="ad" unicode="" +d="M0 700h100v-700h-100v700zM700 700h100v-700h-100v700zM200 600h200v-100h-200v100zM300 400h200v-100h-200v100zM400 200h200v-100h-200v100z" /> + <glyph glyph-name="ae" unicode="" +d="M325 700c42 -141 87 -280 131 -419c29 74 59 148 88 222c30 -57 58 -114 87 -172h169v-100h-231l-13 28c-37 -92 -74 -184 -112 -275c-38 129 -79 257 -119 385c-42 -133 -83 -267 -125 -400c-28 88 -56 175 -84 262h-116v100h188l9 -34l3 -6c42 137 83 273 125 409z" /> + <glyph glyph-name="af" unicode="" +d="M200 600c0 57 43 100 100 100s100 -43 100 -100c0 -28 -18 -48 -28 -72c-3 -6 -3 -16 -3 -28h231v-231c12 0 22 0 28 3c24 10 44 28 72 28c57 0 100 -43 100 -100s-43 -100 -100 -100c-28 0 -48 18 -72 28c-6 3 -16 3 -28 3v-231h-231c0 12 0 22 3 28c10 24 28 44 28 72 +c0 57 -43 100 -100 100s-100 -43 -100 -100c0 -28 18 -48 28 -72c3 -6 3 -16 3 -28h-231v600h231c0 12 0 22 -3 28c-10 24 -28 44 -28 72z" /> + <glyph glyph-name="b0" unicode="" horiz-adv-x="500" +d="M247 700c84 0 148 -20 191 -59s59 -93 59 -141c0 -117 -69 -181 -119 -225s-81 -67 -81 -150v-25h-100v25c0 117 65 181 115 225s85 67 85 150c0 25 -8 48 -28 66s-56 34 -122 34s-97 -18 -116 -37s-27 -43 -31 -69l-100 12c5 38 19 88 59 128s103 66 188 66zM197 0h100 +v-100h-100v100z" /> + <glyph glyph-name="b1" unicode="" +d="M450 800c138 0 250 -112 250 -250v-50c58 -21 100 -85 100 -150c0 -69 -48 -127 -112 -144c-22 55 -75 94 -138 94c-20 0 -39 -5 -56 -12c-17 64 -75 112 -144 112s-127 -48 -144 -112c-17 7 -36 12 -56 12c-37 0 -71 -12 -97 -34c-33 36 -53 82 -53 134 +c0 110 90 200 200 200c23 114 129 200 250 200zM334 300h4h3c3 0 6 1 9 1c28 0 50 -22 50 -50v-1v-200c0 -28 -22 -50 -50 -50s-50 22 -50 50v200v2c0 20 15 42 34 48zM134 200h4h3c3 0 6 1 9 1c28 0 50 -22 50 -50v-1v-100c0 -28 -22 -50 -50 -50s-50 22 -50 50v100v2 +c0 20 15 42 34 48zM534 200h3h4c3 0 6 1 9 1c28 0 50 -22 50 -50v-1v-100c0 -28 -22 -50 -50 -50s-50 22 -50 50v100v2c0 20 15 42 34 48z" /> + <glyph glyph-name="b2" unicode="" +d="M600 800l200 -150l-200 -150v100h-50l-153 -191l175 -206l6 -3h22v100l200 -150l-200 -150v100h-25c-35 0 -56 12 -78 38l-166 190l-153 -190c-22 -27 -43 -38 -78 -38h-100v100h100l166 206l-163 191l-3 3h-100v100h100c34 0 56 -12 78 -38l153 -178l141 178 +c22 27 43 38 78 38h50v100z" /> + <glyph glyph-name="b3" unicode="" +d="M400 800c110 0 209 -47 281 -119l119 119v-300h-300l109 109c-54 55 -126 91 -209 91c-166 0 -300 -134 -300 -300s134 -300 300 -300c83 0 158 34 212 88l72 -72c-72 -72 -174 -116 -284 -116c-220 0 -400 180 -400 400s180 400 400 400z" /> + <glyph glyph-name="b4" unicode="" +d="M400 800h400v-400l-166 166l-400 -400l166 -166h-400v400l166 -166l400 400z" /> + <glyph glyph-name="b5" unicode="" horiz-adv-x="600" +d="M250 800l250 -300h-200v-200h200l-250 -300l-250 300h200v200h-200z" /> + <glyph glyph-name="b6" unicode="" +d="M300 600v-200h200v200l300 -250l-300 -250v200h-200v-200l-300 250z" /> + <glyph glyph-name="b7" unicode="" +d="M0 800c441 0 800 -359 800 -800h-200c0 333 -267 600 -600 600v200zM0 500c275 0 500 -225 500 -500h-200c0 167 -133 300 -300 300v200zM0 200c110 0 200 -90 200 -200h-200v200z" /> + <glyph glyph-name="b8" unicode="" +d="M100 800c386 0 700 -314 700 -700h-100c0 332 -268 600 -600 600v100zM100 600c276 0 500 -224 500 -500h-100c0 222 -178 400 -400 400v100zM100 400c165 0 300 -135 300 -300h-100c0 111 -89 200 -200 200v100zM100 200c55 0 100 -45 100 -100s-45 -100 -100 -100 +s-100 45 -100 100s45 100 100 100z" /> + <glyph glyph-name="b9" unicode="" +d="M300 800h400c55 0 100 -45 100 -100v-200h-400v150c0 28 -22 50 -50 50s-50 -22 -50 -50v-250h400v-300c0 -55 -45 -100 -100 -100h-500c-55 0 -100 45 -100 100v200h100v-150c0 -28 22 -50 50 -50s50 22 50 50v550c0 55 45 100 100 100z" /> + <glyph glyph-name="ba" unicode="" +d="M75 700h225v-100h-200v-500h400v100h100v-125c0 -41 -34 -75 -75 -75h-450c-41 0 -75 34 -75 75v550c0 41 34 75 75 75zM600 700l200 -200l-200 -200v100h-200c-94 0 -173 -65 -194 -153c23 199 189 353 394 353v100z" /> + <glyph glyph-name="bb" unicode="" +d="M500 700l300 -284l-300 -316v200h-100c-200 0 -348 -102 -400 -300c0 295 100 500 500 500v200z" /> + <glyph glyph-name="bc" unicode="" +d="M381 791l19 9l19 -9c127 -53 253 -108 381 -160v-31c0 -166 -67 -313 -147 -419c-40 -53 -83 -97 -125 -128s-82 -53 -128 -53s-86 22 -128 53s-85 75 -125 128c-80 107 -147 253 -147 419v31c128 52 254 107 381 160zM400 100v591l-294 -122c8 -126 58 -243 122 -328 +c35 -46 73 -86 106 -110s62 -31 66 -31z" /> + <glyph glyph-name="bd" unicode="" +d="M600 800h100v-800h-100v800zM400 700h100v-700h-100v700zM200 500h100v-500h-100v500zM0 300h100v-300h-100v300z" /> + <glyph glyph-name="be" unicode="" +d="M300 800h100v-200h200l100 -100l-100 -100h-200v-400h-100v500h-200l-100 100l100 100h200v100z" /> + <glyph glyph-name="bf" unicode="" +d="M200 800h100v-600h200l-250 -200l-250 200h200v600zM400 800h200v-100h-200v100zM400 600h300v-100h-300v100zM400 400h400v-100h-400v100z" /> + <glyph glyph-name="c0" unicode="" +d="M200 800h100v-600h200l-250 -200l-250 200h200v600zM400 800h400v-100h-400v100zM400 600h300v-100h-300v100zM400 400h200v-100h-200v100z" /> + <glyph glyph-name="c1" unicode="" +d="M75 700h650c41 0 75 -34 75 -75v-550c0 -41 -34 -75 -75 -75h-650c-41 0 -75 34 -75 75v550c0 41 34 75 75 75zM100 600v-100h100v100h-100zM300 600v-100h400v100h-400zM100 400v-100h100v100h-100zM300 400v-100h400v100h-400zM100 200v-100h100v100h-100zM300 200 +v-100h400v100h-400z" /> + <glyph glyph-name="c2" unicode="" +d="M400 800l100 -300h300l-250 -200l100 -300l-250 200l-250 -200l100 300l-250 200h300z" /> + <glyph glyph-name="c3" unicode="" +d="M400 800c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM150 700c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM650 700c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM400 600c110 0 200 -90 200 -200 +s-90 -200 -200 -200s-200 90 -200 200s90 200 200 200zM50 450c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM750 450c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM150 200c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50 +s22 50 50 50zM650 200c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50zM400 100c28 0 50 -22 50 -50s-22 -50 -50 -50s-50 22 -50 50s22 50 50 50z" /> + <glyph glyph-name="c4" unicode="" +d="M34 800h632c18 0 34 -16 34 -34v-732c0 -18 -16 -34 -34 -34h-632c-18 0 -34 16 -34 34v732c0 18 16 34 34 34zM100 700v-500h500v500h-500zM350 150c-38 0 -63 -42 -44 -75s69 -33 88 0s-6 75 -44 75z" /> + <glyph glyph-name="c5" unicode="" +d="M0 800h300l500 -500l-300 -300l-500 500v300zM200 700c-55 0 -100 -45 -100 -100s45 -100 100 -100s100 45 100 100s-45 100 -100 100z" /> + <glyph glyph-name="c6" unicode="" +d="M0 600h200l300 -300l-200 -200l-300 300v200zM340 600h160l300 -300l-200 -200l-78 78l119 122zM150 500c-28 0 -50 -22 -50 -50s22 -50 50 -50s50 22 50 50s-22 50 -50 50z" /> + <glyph glyph-name="c7" unicode="" +d="M400 800c220 0 400 -180 400 -400s-180 -400 -400 -400s-400 180 -400 400s180 400 400 400zM400 700c-166 0 -300 -134 -300 -300s134 -300 300 -300s300 134 300 300s-134 300 -300 300zM400 600c110 0 200 -90 200 -200s-90 -200 -200 -200s-200 90 -200 200 +s90 200 200 200zM400 500c-56 0 -100 -44 -100 -100s44 -100 100 -100s100 44 100 100s-44 100 -100 100z" /> + <glyph glyph-name="c8" unicode="" +d="M0 700h559l-100 -100h-359v-500h500v159l100 100v-359h-700v700zM700 700l100 -100l-400 -400l-200 200l100 100l100 -100z" /> + <glyph glyph-name="c9" unicode="" +d="M9 800h782c6 0 9 -3 9 -9v-782c0 -6 -3 -9 -9 -9h-782c-6 0 -9 3 -9 9v782c0 6 3 9 9 9zM150 722l-72 -72l100 -100l-100 -100l72 -72l172 172zM400 500v-100h300v100h-300z" /> + <glyph glyph-name="ca" unicode="" +d="M0 800h800v-200h-50c0 55 -45 100 -100 100h-150v-550c0 -28 22 -50 50 -50h50v-100h-400v100h50c28 0 50 22 50 50v550h-150c-55 0 -100 -45 -100 -100h-50v200z" /> + <glyph glyph-name="cb" unicode="" +d="M0 700h100v-400h-100v400zM200 700h350c21 0 39 -13 47 -31c0 0 103 -291 103 -319s-22 -50 -50 -50h-150c-28 0 -50 -25 -50 -50s39 -158 47 -184s-5 -55 -31 -63s-52 5 -66 31s-109 219 -128 238s-44 28 -72 28v400z" /> + <glyph glyph-name="cc" unicode="" +d="M400 666c10 19 28 32 47 34l19 -3c26 -8 39 -37 31 -63s-47 -159 -47 -184s22 -50 50 -50h150c28 0 50 -22 50 -50s-103 -319 -103 -319c-8 -18 -26 -31 -47 -31h-350v400c28 0 53 9 72 28s114 212 128 238zM0 400h100v-400h-100v400z" /> + <glyph glyph-name="cd" unicode="" +d="M200 700h300v-100h-100v-6c25 -4 50 -8 72 -16l-34 -94c-28 11 -58 16 -88 16c-139 0 -250 -111 -250 -250s111 -250 250 -250s250 111 250 250c0 31 -5 60 -16 88l91 37c14 -38 25 -81 25 -125c0 -193 -157 -350 -350 -350s-350 157 -350 350c0 176 130 323 300 347v3 +h-100v100zM700 584c0 0 -296 -348 -316 -368s-48 -20 -68 0s-20 48 0 68s384 300 384 300z" /> + <glyph glyph-name="ce" unicode="" +d="M600 700l200 -150l-200 -150v100h-600v100h600v100zM200 300v-100h600v-100h-600v-100l-200 150z" /> + <glyph glyph-name="cf" unicode="" +d="M300 800h100c55 0 100 -45 100 -100h100c55 0 100 -45 100 -100h-700c0 55 45 100 100 100h100c0 55 45 100 100 100zM100 500h100v-350c0 -28 22 -50 50 -50s50 22 50 50v350h100v-350c0 -28 22 -50 50 -50s50 22 50 50v350h100v-481c0 -11 -8 -19 -19 -19h-462 +c-11 0 -19 8 -19 19v481z" /> + <glyph glyph-name="d0" unicode="" +d="M100 800h200v-400c0 -55 45 -100 100 -100s100 45 100 100v400h100v-400c0 -110 -90 -200 -200 -200h-50c-138 0 -250 90 -250 200v400zM0 100h700v-100h-700v100z" /> + <glyph glyph-name="d1" unicode="" +d="M9 700h182c6 0 9 -3 9 -9v-482c0 -6 -3 -9 -9 -9h-182c-6 0 -9 3 -9 9v482c0 6 3 9 9 9zM609 700h182c6 0 9 -3 9 -9v-482c0 -6 -3 -9 -9 -9h-182c-6 0 -9 3 -9 9v482c0 6 3 9 9 9zM309 500h182c6 0 9 -3 9 -9v-282c0 -6 -3 -9 -9 -9h-182c-6 0 -9 3 -9 9v282 +c0 6 3 9 9 9zM0 100h800v-100h-800v100z" /> + <glyph glyph-name="d2" unicode="" +d="M10 700h181c6 0 9 -3 9 -9v-191h-200v191c0 6 4 9 10 9zM610 700h181c6 0 9 -3 9 -9v-191h-200v191c0 6 5 9 10 9zM310 600h181c6 0 9 -3 9 -9v-91h-200v91c0 6 4 9 10 9zM0 400h800v-100h-800v100zM0 200h200v-191c0 -6 -3 -9 -9 -9h-182c-6 0 -9 3 -9 9v191zM300 200 +h200v-91c0 -6 -3 -9 -9 -9h-181c-6 0 -10 3 -10 9v91zM600 200h200v-191c0 -6 -3 -9 -9 -9h-181c-6 0 -10 3 -10 9v191z" /> + <glyph glyph-name="d3" unicode="" +d="M0 700h800v-100h-800v100zM9 500h182c6 0 9 -3 9 -9v-482c0 -6 -3 -9 -9 -9h-182c-6 0 -9 3 -9 9v482c0 6 3 9 9 9zM309 500h182c6 0 9 -3 9 -9v-282c0 -6 -3 -9 -9 -9h-182c-6 0 -9 3 -9 9v282c0 6 3 9 9 9zM609 500h182c6 0 9 -3 9 -9v-482c0 -6 -3 -9 -9 -9h-182 +c-6 0 -9 3 -9 9v482c0 6 3 9 9 9z" /> + <glyph glyph-name="d4" unicode="" +d="M50 600h500c28 0 50 -22 50 -50v-150l100 100h100v-300h-100l-100 100v-150c0 -28 -22 -50 -50 -50h-500c-28 0 -50 22 -50 50v400c0 28 22 50 50 50z" /> + <glyph glyph-name="d5" unicode="" +d="M334 800h66v-800h-66l-134 200h-200v400h200zM500 600v100c26 0 52 -4 75 -10c130 -33 225 -150 225 -290s-95 -258 -225 -291h-3c-23 -6 -47 -9 -72 -9v100c17 0 34 2 50 6c86 22 150 100 150 194s-64 172 -150 194c-16 4 -33 6 -50 6zM500 500l25 -3 +c44 -11 75 -51 75 -97s-32 -86 -75 -97l-25 -3v200z" /> + <glyph glyph-name="d6" unicode="" horiz-adv-x="600" +d="M334 800h66v-800h-66l-134 200h-200v400h200zM500 500l25 -3c44 -11 75 -51 75 -97s-32 -86 -75 -97l-25 -3v200z" /> + <glyph glyph-name="d7" unicode="" horiz-adv-x="400" +d="M334 800h66v-800h-66l-134 200h-200v400h200z" /> + <glyph glyph-name="d8" unicode="" +d="M309 800h82c6 0 10 -4 12 -9l294 -682l3 -19v-81c0 -6 -3 -9 -9 -9h-682c-6 0 -9 3 -9 9v81l3 19l294 682c2 5 6 9 12 9zM300 500v-200h100v200h-100zM300 200v-100h100v100h-100z" /> + <glyph glyph-name="d9" unicode="" +d="M375 800c138 0 269 -39 378 -109l-53 -82c-93 60 -205 91 -325 91c-119 0 -229 -32 -322 -91l-53 82c109 70 237 109 375 109zM375 500c78 0 154 -23 216 -62l-53 -85c-46 30 -104 47 -163 47c-60 0 -112 -17 -159 -47l-54 85c62 40 134 62 213 62zM375 200 +c55 0 100 -45 100 -100s-45 -100 -100 -100s-100 45 -100 100s45 100 100 100z" /> + <glyph glyph-name="da" unicode="" horiz-adv-x="900" +d="M551 800c16 0 32 0 47 -3l-97 -97v-200h200l97 97c3 -15 3 -31 3 -47c0 -138 -112 -250 -250 -250c-32 0 -62 8 -90 19l-288 -291c-20 -20 -46 -28 -72 -28s-52 8 -72 28c-39 39 -39 105 0 144l291 287c-11 28 -19 59 -19 91c0 138 112 250 250 250zM101 150 +c-28 0 -50 -22 -50 -50s22 -50 50 -50s50 22 50 50s-22 50 -50 50z" /> + <glyph glyph-name="db" unicode="" +d="M141 700c84 -84 169 -167 253 -250c82 83 167 165 247 250l143 -141l-253 -253c84 -82 167 -166 253 -247l-143 -143c-81 86 -165 169 -247 253l-253 -253l-141 143c85 80 167 164 250 247c-83 84 -166 169 -250 253z" /> + <glyph glyph-name="dc" unicode="" +d="M0 800h100l231 -300h38l231 300h100l-225 -300h225v-100h-300v-100h300v-100h-300v-200h-100v200h-300v100h300v100h-300v100h225z" /> + <glyph glyph-name="dd" unicode="" horiz-adv-x="900" +d="M350 800c193 0 350 -157 350 -350c0 -61 -17 -119 -44 -169c4 -2 10 -6 13 -9l103 -100c16 -16 30 -49 30 -72c0 -56 -46 -102 -102 -102c-23 0 -56 14 -72 30l-100 103c-3 3 -7 9 -9 13c-50 -28 -108 -44 -169 -44c-193 0 -350 157 -350 350s157 350 350 350zM350 700 +c-139 0 -250 -111 -250 -250s111 -250 250 -250c62 0 119 23 163 60c7 11 19 25 31 31l3 3c34 43 53 97 53 156c0 139 -111 250 -250 250zM300 600h100v-100h100v-100h-100v-100h-100v100h-100v100h100v100z" /> + <glyph glyph-name="de" unicode="" horiz-adv-x="900" +d="M350 800c193 0 350 -157 350 -350c0 -61 -17 -119 -44 -169c4 -2 10 -6 13 -9l103 -100c16 -16 30 -49 30 -72c0 -56 -46 -102 -102 -102c-23 0 -56 14 -72 30l-100 103c-3 3 -7 9 -9 13c-50 -28 -108 -44 -169 -44c-193 0 -350 157 -350 350s157 350 350 350zM350 700 +c-139 0 -250 -111 -250 -250s111 -250 250 -250c62 0 119 23 163 60c7 11 19 25 31 31l3 3c34 43 53 97 53 156c0 139 -111 250 -250 250zM200 500h300v-100h-300v100z" /> + </font> +</defs></svg> diff --git a/TaikoWebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf b/TaikoWebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf new file mode 100644 index 0000000..fab6048 Binary files /dev/null and b/TaikoWebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf differ diff --git a/TaikoWebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.woff b/TaikoWebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.woff new file mode 100644 index 0000000..f930998 Binary files /dev/null and b/TaikoWebUI/wwwroot/css/open-iconic/font/fonts/open-iconic.woff differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0000.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0000.png new file mode 100644 index 0000000..e02c9db Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0000.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0001.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0001.png new file mode 100644 index 0000000..4c37317 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0001.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0002.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0002.png new file mode 100644 index 0000000..cbfb14d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0002.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0003.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0003.png new file mode 100644 index 0000000..b4b7622 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0003.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0004.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0004.png new file mode 100644 index 0000000..2a9027d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0004.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0005.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0005.png new file mode 100644 index 0000000..57a6a4a Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0005.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0006.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0006.png new file mode 100644 index 0000000..1fa38ae Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0006.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0007.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0007.png new file mode 100644 index 0000000..3330bbd Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0007.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0008.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0008.png new file mode 100644 index 0000000..6fbf57e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0008.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0009.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0009.png new file mode 100644 index 0000000..3d1a827 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0009.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0010.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0010.png new file mode 100644 index 0000000..061c773 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0010.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0011.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0011.png new file mode 100644 index 0000000..a91c359 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0011.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0012.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0012.png new file mode 100644 index 0000000..d7aaa7b Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0012.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0013.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0013.png new file mode 100644 index 0000000..232f95c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0013.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0014.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0014.png new file mode 100644 index 0000000..883dd29 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0014.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0015.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0015.png new file mode 100644 index 0000000..9175dcd Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0015.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0016.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0016.png new file mode 100644 index 0000000..c40a710 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0016.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0017.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0017.png new file mode 100644 index 0000000..514a3e0 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0017.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0018.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0018.png new file mode 100644 index 0000000..3b24032 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0018.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0019.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0019.png new file mode 100644 index 0000000..04d113a Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0019.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0020.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0020.png new file mode 100644 index 0000000..e32f407 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0020.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0021.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0021.png new file mode 100644 index 0000000..413c6e3 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0021.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0022.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0022.png new file mode 100644 index 0000000..fa8d894 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0022.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0023.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0023.png new file mode 100644 index 0000000..084009e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0023.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0024.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0024.png new file mode 100644 index 0000000..8753163 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0024.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0025.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0025.png new file mode 100644 index 0000000..b649079 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0025.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0026.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0026.png new file mode 100644 index 0000000..01f3876 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0026.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0027.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0027.png new file mode 100644 index 0000000..920f3af Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0027.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0028.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0028.png new file mode 100644 index 0000000..0f08658 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0028.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0029.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0029.png new file mode 100644 index 0000000..590cb84 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0029.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0030.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0030.png new file mode 100644 index 0000000..f0046cc Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0030.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0031.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0031.png new file mode 100644 index 0000000..e673aa7 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0031.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0032.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0032.png new file mode 100644 index 0000000..7ae2605 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0032.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0033.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0033.png new file mode 100644 index 0000000..a9c76ec Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0033.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0034.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0034.png new file mode 100644 index 0000000..c19e93e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0034.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0035.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0035.png new file mode 100644 index 0000000..00a9327 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0035.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0036.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0036.png new file mode 100644 index 0000000..9cd865f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0036.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0037.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0037.png new file mode 100644 index 0000000..2b987f8 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0037.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0038.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0038.png new file mode 100644 index 0000000..44d3628 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0038.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0039.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0039.png new file mode 100644 index 0000000..249fc08 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0039.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0040.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0040.png new file mode 100644 index 0000000..bb2c25c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0040.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0041.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0041.png new file mode 100644 index 0000000..c590bcd Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0041.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0042.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0042.png new file mode 100644 index 0000000..778cb7e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0042.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0043.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0043.png new file mode 100644 index 0000000..f327a6b Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0043.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0044.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0044.png new file mode 100644 index 0000000..3ad7611 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0044.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0045.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0045.png new file mode 100644 index 0000000..a8d1edb Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0045.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0046.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0046.png new file mode 100644 index 0000000..8282d3f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0046.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0047.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0047.png new file mode 100644 index 0000000..52cd947 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0047.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0048.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0048.png new file mode 100644 index 0000000..0098cbf Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0048.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0049.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0049.png new file mode 100644 index 0000000..5765add Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0049.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0050.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0050.png new file mode 100644 index 0000000..56a1695 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0050.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0051.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0051.png new file mode 100644 index 0000000..7e2d8f9 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0051.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0052.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0052.png new file mode 100644 index 0000000..e3273b3 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0052.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0053.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0053.png new file mode 100644 index 0000000..1e23404 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0053.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0054.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0054.png new file mode 100644 index 0000000..2d55738 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0054.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0055.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0055.png new file mode 100644 index 0000000..ca18e4d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0055.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0056.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0056.png new file mode 100644 index 0000000..22a87d9 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0056.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0057.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0057.png new file mode 100644 index 0000000..f1b2b78 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0057.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0058.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0058.png new file mode 100644 index 0000000..3f76e4e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0058.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0059.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0059.png new file mode 100644 index 0000000..ea65ff1 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0059.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0060.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0060.png new file mode 100644 index 0000000..8aeac8b Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0060.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0061.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0061.png new file mode 100644 index 0000000..adfc95e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0061.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0062.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0062.png new file mode 100644 index 0000000..9f30c64 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0062.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0063.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0063.png new file mode 100644 index 0000000..456d247 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0063.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0064.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0064.png new file mode 100644 index 0000000..87f6abf Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0064.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0065.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0065.png new file mode 100644 index 0000000..acf6470 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0065.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0066.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0066.png new file mode 100644 index 0000000..8e0f4b4 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0066.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0067.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0067.png new file mode 100644 index 0000000..98ee767 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0067.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0068.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0068.png new file mode 100644 index 0000000..c6097d6 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0068.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0069.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0069.png new file mode 100644 index 0000000..6223516 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0069.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0070.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0070.png new file mode 100644 index 0000000..010a311 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0070.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0071.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0071.png new file mode 100644 index 0000000..6c2ffee Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0071.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0072.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0072.png new file mode 100644 index 0000000..30a12f3 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0072.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0073.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0073.png new file mode 100644 index 0000000..8cf2842 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0073.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0074.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0074.png new file mode 100644 index 0000000..b7f5cb6 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0074.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0075.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0075.png new file mode 100644 index 0000000..5b2002b Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0075.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0076.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0076.png new file mode 100644 index 0000000..ffa75b0 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0076.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0077.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0077.png new file mode 100644 index 0000000..c54d8e6 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0077.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0078.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0078.png new file mode 100644 index 0000000..4cd16da Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0078.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0079.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0079.png new file mode 100644 index 0000000..a832f86 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0079.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0080.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0080.png new file mode 100644 index 0000000..87e23ac Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0080.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0081.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0081.png new file mode 100644 index 0000000..55d7b56 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0081.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0082.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0082.png new file mode 100644 index 0000000..179b061 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0082.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0083.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0083.png new file mode 100644 index 0000000..fd83466 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0083.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0084.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0084.png new file mode 100644 index 0000000..1712fd1 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0084.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0085.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0085.png new file mode 100644 index 0000000..abb719a Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0085.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0086.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0086.png new file mode 100644 index 0000000..b43c711 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0086.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0087.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0087.png new file mode 100644 index 0000000..fc84b30 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0087.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0088.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0088.png new file mode 100644 index 0000000..9a8af2d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0088.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0089.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0089.png new file mode 100644 index 0000000..9c851a3 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0089.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0090.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0090.png new file mode 100644 index 0000000..83dbd27 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0090.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0091.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0091.png new file mode 100644 index 0000000..f05cd77 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0091.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0092.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0092.png new file mode 100644 index 0000000..2e21574 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0092.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0093.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0093.png new file mode 100644 index 0000000..352497a Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0093.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0094.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0094.png new file mode 100644 index 0000000..d6d533f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0094.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0095.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0095.png new file mode 100644 index 0000000..523ec90 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0095.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0096.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0096.png new file mode 100644 index 0000000..bda61fb Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0096.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0097.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0097.png new file mode 100644 index 0000000..28d103a Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0097.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0098.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0098.png new file mode 100644 index 0000000..a9c29aa Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0098.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0099.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0099.png new file mode 100644 index 0000000..8f44ddf Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0099.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0100.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0100.png new file mode 100644 index 0000000..941c3e3 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0100.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0101.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0101.png new file mode 100644 index 0000000..fdd97cf Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0101.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0102.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0102.png new file mode 100644 index 0000000..76eac49 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0102.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0103.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0103.png new file mode 100644 index 0000000..ee05aaa Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0103.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0104.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0104.png new file mode 100644 index 0000000..33cff61 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0104.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0105.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0105.png new file mode 100644 index 0000000..cdda15c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0105.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0106.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0106.png new file mode 100644 index 0000000..2b49f92 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0106.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0107.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0107.png new file mode 100644 index 0000000..ea199f5 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0107.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0108.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0108.png new file mode 100644 index 0000000..aa68c76 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0108.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0109.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0109.png new file mode 100644 index 0000000..281e18d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0109.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0110.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0110.png new file mode 100644 index 0000000..fe8bffc Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0110.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0111.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0111.png new file mode 100644 index 0000000..b148f05 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0111.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0112.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0112.png new file mode 100644 index 0000000..7d80826 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0112.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0113.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0113.png new file mode 100644 index 0000000..af4cf0f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0113.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0114.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0114.png new file mode 100644 index 0000000..5c497b7 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0114.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0115.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0115.png new file mode 100644 index 0000000..4723ee5 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0115.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0116.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0116.png new file mode 100644 index 0000000..938e67e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0116.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0117.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0117.png new file mode 100644 index 0000000..b9b53f2 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0117.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0118.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0118.png new file mode 100644 index 0000000..72c93b1 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0118.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0119.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0119.png new file mode 100644 index 0000000..e4d8566 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0119.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0120.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0120.png new file mode 100644 index 0000000..68a66ce Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0120.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0121.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0121.png new file mode 100644 index 0000000..82fa88e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0121.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0122.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0122.png new file mode 100644 index 0000000..af32464 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0122.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0123.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0123.png new file mode 100644 index 0000000..7ac39ec Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0123.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0124.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0124.png new file mode 100644 index 0000000..c89a286 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0124.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0125.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0125.png new file mode 100644 index 0000000..d777b02 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0125.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0126.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0126.png new file mode 100644 index 0000000..daef546 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0126.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0127.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0127.png new file mode 100644 index 0000000..5ded286 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0127.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0128.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0128.png new file mode 100644 index 0000000..da0be09 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0128.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0129.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0129.png new file mode 100644 index 0000000..4d3406a Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0129.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0130.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0130.png new file mode 100644 index 0000000..ca66978 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0130.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0131.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0131.png new file mode 100644 index 0000000..577ec75 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0131.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0132.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0132.png new file mode 100644 index 0000000..843da71 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0132.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0133.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0133.png new file mode 100644 index 0000000..f726f08 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0133.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0134.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0134.png new file mode 100644 index 0000000..4f44212 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0134.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0135.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0135.png new file mode 100644 index 0000000..da2bea7 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0135.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0136.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0136.png new file mode 100644 index 0000000..29ba8be Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0136.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0137.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0137.png new file mode 100644 index 0000000..7fdd4b8 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0137.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0138.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0138.png new file mode 100644 index 0000000..6df2f7c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0138.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0139.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0139.png new file mode 100644 index 0000000..38dbd10 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0139.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0140.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0140.png new file mode 100644 index 0000000..7e2e81c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0140.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0141.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0141.png new file mode 100644 index 0000000..79a3f97 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0141.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0142.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0142.png new file mode 100644 index 0000000..ea0eb95 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0142.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0143.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0143.png new file mode 100644 index 0000000..fce16f9 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0143.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0144.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0144.png new file mode 100644 index 0000000..7c4dba9 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0144.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0145.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0145.png new file mode 100644 index 0000000..a31ade6 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0145.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0146.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0146.png new file mode 100644 index 0000000..f2e5be3 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0146.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0147.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0147.png new file mode 100644 index 0000000..3195c49 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0147.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0148.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0148.png new file mode 100644 index 0000000..650329c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0148.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0149.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0149.png new file mode 100644 index 0000000..1b0ff9c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0149.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0150.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0150.png new file mode 100644 index 0000000..6c6b7b2 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0150.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0151.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0151.png new file mode 100644 index 0000000..0957ba8 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0151.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0152.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0152.png new file mode 100644 index 0000000..5aae84c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0152.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0153.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0153.png new file mode 100644 index 0000000..2bbd98a Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0153.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0154.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0154.png new file mode 100644 index 0000000..c7e6acb Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0154.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/body/Body-0155.png b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0155.png new file mode 100644 index 0000000..cff1084 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/body/Body-0155.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0000.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0000.png new file mode 100644 index 0000000..8dea136 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0000.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0001.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0001.png new file mode 100644 index 0000000..88119d1 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0001.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0002.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0002.png new file mode 100644 index 0000000..a32c537 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0002.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0003.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0003.png new file mode 100644 index 0000000..49e1053 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0003.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0004.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0004.png new file mode 100644 index 0000000..1a2bc34 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0004.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0005.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0005.png new file mode 100644 index 0000000..0a87c4c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0005.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0006.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0006.png new file mode 100644 index 0000000..ffdef39 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0006.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0007.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0007.png new file mode 100644 index 0000000..f71f70d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0007.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0008.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0008.png new file mode 100644 index 0000000..453996f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0008.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0009.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0009.png new file mode 100644 index 0000000..cc12d36 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0009.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0010.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0010.png new file mode 100644 index 0000000..816ab08 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0010.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0011.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0011.png new file mode 100644 index 0000000..f9fa230 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0011.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0012.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0012.png new file mode 100644 index 0000000..6e2dd74 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0012.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0013.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0013.png new file mode 100644 index 0000000..7ac20f5 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0013.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0014.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0014.png new file mode 100644 index 0000000..34a3c6f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0014.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0015.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0015.png new file mode 100644 index 0000000..2fc435a Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0015.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0016.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0016.png new file mode 100644 index 0000000..65a8d31 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0016.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0017.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0017.png new file mode 100644 index 0000000..484be99 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0017.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0018.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0018.png new file mode 100644 index 0000000..a6ec101 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0018.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0019.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0019.png new file mode 100644 index 0000000..0b04c5c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0019.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0020.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0020.png new file mode 100644 index 0000000..43f8c3a Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0020.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0021.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0021.png new file mode 100644 index 0000000..b33a7c8 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0021.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0022.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0022.png new file mode 100644 index 0000000..ee5fdc0 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0022.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0023.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0023.png new file mode 100644 index 0000000..b9ec28f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0023.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0024.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0024.png new file mode 100644 index 0000000..7eaee9f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0024.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0025.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0025.png new file mode 100644 index 0000000..152fc95 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0025.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0026.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0026.png new file mode 100644 index 0000000..6251fa6 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0026.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0027.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0027.png new file mode 100644 index 0000000..ab31088 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0027.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0028.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0028.png new file mode 100644 index 0000000..caa4407 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0028.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0029.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0029.png new file mode 100644 index 0000000..5359932 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0029.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0030.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0030.png new file mode 100644 index 0000000..6c66155 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0030.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0031.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0031.png new file mode 100644 index 0000000..7752b4b Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0031.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0032.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0032.png new file mode 100644 index 0000000..d7b9ae7 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0032.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0033.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0033.png new file mode 100644 index 0000000..ba7884e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0033.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0034.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0034.png new file mode 100644 index 0000000..b1272fc Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0034.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0035.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0035.png new file mode 100644 index 0000000..68cef13 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0035.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0036.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0036.png new file mode 100644 index 0000000..ceeb7d0 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0036.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0037.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0037.png new file mode 100644 index 0000000..39ad520 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0037.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0038.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0038.png new file mode 100644 index 0000000..46fc7f9 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0038.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0039.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0039.png new file mode 100644 index 0000000..6494b81 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0039.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0040.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0040.png new file mode 100644 index 0000000..17bc61b Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0040.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0041.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0041.png new file mode 100644 index 0000000..7809523 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0041.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0042.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0042.png new file mode 100644 index 0000000..27922d4 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0042.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0043.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0043.png new file mode 100644 index 0000000..c135c97 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0043.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0044.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0044.png new file mode 100644 index 0000000..2f08312 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0044.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0045.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0045.png new file mode 100644 index 0000000..638d074 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0045.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0046.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0046.png new file mode 100644 index 0000000..a570e40 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0046.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0047.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0047.png new file mode 100644 index 0000000..417ce7e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0047.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0048.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0048.png new file mode 100644 index 0000000..f9bb925 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0048.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0049.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0049.png new file mode 100644 index 0000000..09d3e11 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0049.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0050.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0050.png new file mode 100644 index 0000000..59ad106 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0050.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0051.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0051.png new file mode 100644 index 0000000..e029abd Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0051.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0052.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0052.png new file mode 100644 index 0000000..3dbd076 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0052.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0053.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0053.png new file mode 100644 index 0000000..0f033bd Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0053.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0054.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0054.png new file mode 100644 index 0000000..4db19ac Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0054.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0055.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0055.png new file mode 100644 index 0000000..af93111 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0055.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0056.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0056.png new file mode 100644 index 0000000..e47f295 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0056.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/face/face-0057.png b/TaikoWebUI/wwwroot/images/Costumes/face/face-0057.png new file mode 100644 index 0000000..986d8a8 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/face/face-0057.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0000.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0000.png new file mode 100644 index 0000000..35edd58 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0000.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0001.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0001.png new file mode 100644 index 0000000..04af396 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0001.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0002.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0002.png new file mode 100644 index 0000000..7312775 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0002.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0003.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0003.png new file mode 100644 index 0000000..cf40988 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0003.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0004.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0004.png new file mode 100644 index 0000000..392e33d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0004.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0005.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0005.png new file mode 100644 index 0000000..f0d685e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0005.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0006.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0006.png new file mode 100644 index 0000000..717aa95 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0006.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0007.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0007.png new file mode 100644 index 0000000..64883f4 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0007.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0008.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0008.png new file mode 100644 index 0000000..9122620 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0008.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0009.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0009.png new file mode 100644 index 0000000..6b969bf Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0009.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0010.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0010.png new file mode 100644 index 0000000..6a014b4 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0010.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0011.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0011.png new file mode 100644 index 0000000..6a0543d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0011.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0012.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0012.png new file mode 100644 index 0000000..0c1c595 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0012.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0013.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0013.png new file mode 100644 index 0000000..2efff04 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0013.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0014.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0014.png new file mode 100644 index 0000000..faa9ea8 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0014.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0015.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0015.png new file mode 100644 index 0000000..6cb3e01 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0015.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0016.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0016.png new file mode 100644 index 0000000..14d5091 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0016.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0017.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0017.png new file mode 100644 index 0000000..f8e8f30 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0017.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0018.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0018.png new file mode 100644 index 0000000..a9afe96 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0018.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0019.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0019.png new file mode 100644 index 0000000..1f3c98e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0019.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0020.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0020.png new file mode 100644 index 0000000..e94e3fa Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0020.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0021.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0021.png new file mode 100644 index 0000000..d8fc688 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0021.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0022.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0022.png new file mode 100644 index 0000000..fe0395f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0022.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0023.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0023.png new file mode 100644 index 0000000..a83d731 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0023.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0024.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0024.png new file mode 100644 index 0000000..4c5382b Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0024.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0025.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0025.png new file mode 100644 index 0000000..d32e9c6 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0025.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0026.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0026.png new file mode 100644 index 0000000..f5a9fbd Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0026.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0027.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0027.png new file mode 100644 index 0000000..37c5af9 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0027.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0028.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0028.png new file mode 100644 index 0000000..bbd63d8 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0028.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0029.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0029.png new file mode 100644 index 0000000..3c42f8d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0029.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0030.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0030.png new file mode 100644 index 0000000..9ae56c7 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0030.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0031.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0031.png new file mode 100644 index 0000000..6dbec6f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0031.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0032.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0032.png new file mode 100644 index 0000000..137072e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0032.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0033.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0033.png new file mode 100644 index 0000000..11cdbb4 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0033.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0034.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0034.png new file mode 100644 index 0000000..b3eb492 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0034.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0035.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0035.png new file mode 100644 index 0000000..0a67309 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0035.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0036.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0036.png new file mode 100644 index 0000000..4651db0 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0036.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0037.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0037.png new file mode 100644 index 0000000..dd5c97d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0037.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0038.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0038.png new file mode 100644 index 0000000..c337d67 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0038.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0039.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0039.png new file mode 100644 index 0000000..3153e0f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0039.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0040.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0040.png new file mode 100644 index 0000000..d2c22f6 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0040.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0041.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0041.png new file mode 100644 index 0000000..63d2113 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0041.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0042.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0042.png new file mode 100644 index 0000000..6c5d2e8 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0042.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0043.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0043.png new file mode 100644 index 0000000..e73ea7b Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0043.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0044.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0044.png new file mode 100644 index 0000000..b142e2d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0044.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0045.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0045.png new file mode 100644 index 0000000..0da4a85 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0045.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0046.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0046.png new file mode 100644 index 0000000..9a33b6f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0046.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0047.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0047.png new file mode 100644 index 0000000..ec3859c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0047.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0048.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0048.png new file mode 100644 index 0000000..301af65 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0048.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0049.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0049.png new file mode 100644 index 0000000..ef39add Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0049.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0050.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0050.png new file mode 100644 index 0000000..d72cf5c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0050.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0051.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0051.png new file mode 100644 index 0000000..120c5e8 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0051.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0052.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0052.png new file mode 100644 index 0000000..ace4d0e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0052.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0053.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0053.png new file mode 100644 index 0000000..7168f5d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0053.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0054.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0054.png new file mode 100644 index 0000000..a26bd60 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0054.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0055.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0055.png new file mode 100644 index 0000000..9a4124f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0055.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0056.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0056.png new file mode 100644 index 0000000..d287d64 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0056.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0057.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0057.png new file mode 100644 index 0000000..8d12a77 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0057.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0058.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0058.png new file mode 100644 index 0000000..19e53e0 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0058.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0059.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0059.png new file mode 100644 index 0000000..f1f8bee Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0059.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0060.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0060.png new file mode 100644 index 0000000..ac8ccce Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0060.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0061.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0061.png new file mode 100644 index 0000000..3585bfa Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0061.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0062.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0062.png new file mode 100644 index 0000000..8054590 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0062.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0063.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0063.png new file mode 100644 index 0000000..74357d3 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0063.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0064.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0064.png new file mode 100644 index 0000000..cddbbde Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0064.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0065.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0065.png new file mode 100644 index 0000000..fff0551 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0065.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0066.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0066.png new file mode 100644 index 0000000..e36bdf4 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0066.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0067.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0067.png new file mode 100644 index 0000000..fbbfae8 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0067.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0068.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0068.png new file mode 100644 index 0000000..c4f8366 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0068.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0069.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0069.png new file mode 100644 index 0000000..43ecc65 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0069.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0070.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0070.png new file mode 100644 index 0000000..6e3f707 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0070.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0071.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0071.png new file mode 100644 index 0000000..759f0af Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0071.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0072.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0072.png new file mode 100644 index 0000000..133a3c0 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0072.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0073.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0073.png new file mode 100644 index 0000000..a8f70cc Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0073.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0074.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0074.png new file mode 100644 index 0000000..bc1d9af Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0074.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0075.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0075.png new file mode 100644 index 0000000..e70fba8 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0075.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0076.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0076.png new file mode 100644 index 0000000..5e5cdf5 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0076.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0077.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0077.png new file mode 100644 index 0000000..38443e5 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0077.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0078.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0078.png new file mode 100644 index 0000000..70748ce Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0078.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0079.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0079.png new file mode 100644 index 0000000..8b9548a Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0079.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0080.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0080.png new file mode 100644 index 0000000..cb08181 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0080.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0081.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0081.png new file mode 100644 index 0000000..f92e3f1 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0081.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0082.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0082.png new file mode 100644 index 0000000..e256f1b Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0082.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0083.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0083.png new file mode 100644 index 0000000..b3f7c11 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0083.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0084.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0084.png new file mode 100644 index 0000000..44829d9 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0084.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0085.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0085.png new file mode 100644 index 0000000..f0f8b18 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0085.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0086.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0086.png new file mode 100644 index 0000000..e2e5ed4 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0086.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0087.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0087.png new file mode 100644 index 0000000..7a44178 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0087.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0088.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0088.png new file mode 100644 index 0000000..318ad3d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0088.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0089.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0089.png new file mode 100644 index 0000000..f276123 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0089.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0090.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0090.png new file mode 100644 index 0000000..14446a1 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0090.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0091.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0091.png new file mode 100644 index 0000000..fa5a239 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0091.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0092.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0092.png new file mode 100644 index 0000000..089b5e2 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0092.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0093.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0093.png new file mode 100644 index 0000000..bb88b40 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0093.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0094.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0094.png new file mode 100644 index 0000000..eb160bc Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0094.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0095.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0095.png new file mode 100644 index 0000000..2804db0 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0095.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0096.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0096.png new file mode 100644 index 0000000..da2fc6f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0096.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0097.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0097.png new file mode 100644 index 0000000..efe617e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0097.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0098.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0098.png new file mode 100644 index 0000000..c5d90db Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0098.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0099.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0099.png new file mode 100644 index 0000000..db7d254 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0099.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0100.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0100.png new file mode 100644 index 0000000..542c0a1 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0100.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0101.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0101.png new file mode 100644 index 0000000..d2d952d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0101.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0102.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0102.png new file mode 100644 index 0000000..d66e74c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0102.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0103.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0103.png new file mode 100644 index 0000000..9189a13 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0103.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0104.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0104.png new file mode 100644 index 0000000..9dbed28 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0104.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0105.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0105.png new file mode 100644 index 0000000..395c2d8 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0105.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0106.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0106.png new file mode 100644 index 0000000..2729469 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0106.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0107.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0107.png new file mode 100644 index 0000000..485526f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0107.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0108.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0108.png new file mode 100644 index 0000000..6fe17c6 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0108.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0109.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0109.png new file mode 100644 index 0000000..1a4c74d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0109.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0110.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0110.png new file mode 100644 index 0000000..28b5a5f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0110.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0111.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0111.png new file mode 100644 index 0000000..6f94194 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0111.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0112.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0112.png new file mode 100644 index 0000000..c54d7d7 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0112.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0113.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0113.png new file mode 100644 index 0000000..b6ace15 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0113.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0114.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0114.png new file mode 100644 index 0000000..31dcddb Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0114.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0115.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0115.png new file mode 100644 index 0000000..f43b068 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0115.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0116.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0116.png new file mode 100644 index 0000000..85589ba Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0116.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0117.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0117.png new file mode 100644 index 0000000..164e9e3 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0117.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0118.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0118.png new file mode 100644 index 0000000..6851915 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0118.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0119.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0119.png new file mode 100644 index 0000000..4f94a07 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0119.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0120.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0120.png new file mode 100644 index 0000000..1d54b72 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0120.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0121.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0121.png new file mode 100644 index 0000000..cfc0ef8 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0121.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0122.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0122.png new file mode 100644 index 0000000..a4dc40d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0122.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0123.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0123.png new file mode 100644 index 0000000..2ffbb43 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0123.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0124.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0124.png new file mode 100644 index 0000000..c061e2c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0124.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0125.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0125.png new file mode 100644 index 0000000..ce80dd3 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0125.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0126.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0126.png new file mode 100644 index 0000000..57ae229 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0126.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0127.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0127.png new file mode 100644 index 0000000..12b46b5 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0127.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0128.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0128.png new file mode 100644 index 0000000..b385baa Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0128.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0129.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0129.png new file mode 100644 index 0000000..1e222da Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0129.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0130.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0130.png new file mode 100644 index 0000000..8aad5c8 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0130.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0131.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0131.png new file mode 100644 index 0000000..0d33e3a Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0131.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0132.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0132.png new file mode 100644 index 0000000..0572990 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0132.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0133.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0133.png new file mode 100644 index 0000000..015919a Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0133.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0134.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0134.png new file mode 100644 index 0000000..fc0cff7 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0134.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0135.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0135.png new file mode 100644 index 0000000..2127aec Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0135.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0136.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0136.png new file mode 100644 index 0000000..1143621 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0136.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0137.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0137.png new file mode 100644 index 0000000..393ccfe Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0137.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0138.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0138.png new file mode 100644 index 0000000..2f65d52 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0138.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/head/Head-0139.png b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0139.png new file mode 100644 index 0000000..8e87f79 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/head/Head-0139.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0000.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0000.png new file mode 100644 index 0000000..092dc88 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0000.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0001.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0001.png new file mode 100644 index 0000000..16c3172 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0001.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0002.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0002.png new file mode 100644 index 0000000..8f19148 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0002.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0003.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0003.png new file mode 100644 index 0000000..cc80a48 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0003.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0004.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0004.png new file mode 100644 index 0000000..5b87c83 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0004.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0005.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0005.png new file mode 100644 index 0000000..311977b Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0005.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0006.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0006.png new file mode 100644 index 0000000..575c142 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0006.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0007.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0007.png new file mode 100644 index 0000000..c74778f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0007.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0008.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0008.png new file mode 100644 index 0000000..f119c8b Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0008.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0009.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0009.png new file mode 100644 index 0000000..dec1982 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0009.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0010.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0010.png new file mode 100644 index 0000000..e7cce7a Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0010.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0011.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0011.png new file mode 100644 index 0000000..890cf29 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0011.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0012.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0012.png new file mode 100644 index 0000000..e288e92 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0012.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0013.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0013.png new file mode 100644 index 0000000..82e7a22 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0013.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0014.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0014.png new file mode 100644 index 0000000..1500c3c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0014.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0015.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0015.png new file mode 100644 index 0000000..0e60783 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0015.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0016.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0016.png new file mode 100644 index 0000000..ecf8553 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0016.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0017.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0017.png new file mode 100644 index 0000000..aa2f457 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0017.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0018.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0018.png new file mode 100644 index 0000000..320896d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0018.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0019.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0019.png new file mode 100644 index 0000000..e85bb25 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0019.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0020.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0020.png new file mode 100644 index 0000000..371b51e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0020.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0021.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0021.png new file mode 100644 index 0000000..cbfd412 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0021.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0022.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0022.png new file mode 100644 index 0000000..9cb58b2 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0022.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0023.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0023.png new file mode 100644 index 0000000..010b479 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0023.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0024.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0024.png new file mode 100644 index 0000000..caad0e8 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0024.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0025.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0025.png new file mode 100644 index 0000000..954341b Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0025.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0026.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0026.png new file mode 100644 index 0000000..c9ff51c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0026.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0027.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0027.png new file mode 100644 index 0000000..ef2dd73 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0027.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0028.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0028.png new file mode 100644 index 0000000..1b64dab Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0028.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0029.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0029.png new file mode 100644 index 0000000..a9eb8d1 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0029.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0030.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0030.png new file mode 100644 index 0000000..5bfc898 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0030.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0031.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0031.png new file mode 100644 index 0000000..ba7f123 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0031.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0032.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0032.png new file mode 100644 index 0000000..dfa3537 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0032.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0033.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0033.png new file mode 100644 index 0000000..48bf3f9 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0033.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0034.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0034.png new file mode 100644 index 0000000..817001d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0034.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0035.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0035.png new file mode 100644 index 0000000..a6b455d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0035.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0036.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0036.png new file mode 100644 index 0000000..bf5ac9a Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0036.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0037.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0037.png new file mode 100644 index 0000000..0c503d9 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0037.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0038.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0038.png new file mode 100644 index 0000000..f7b4747 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0038.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0039.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0039.png new file mode 100644 index 0000000..bb870d6 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0039.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0040.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0040.png new file mode 100644 index 0000000..092dc88 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0040.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0041.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0041.png new file mode 100644 index 0000000..ff112d4 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0041.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0042.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0042.png new file mode 100644 index 0000000..68b61ab Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0042.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0043.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0043.png new file mode 100644 index 0000000..63ca8a1 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0043.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0044.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0044.png new file mode 100644 index 0000000..bd921f0 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0044.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0045.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0045.png new file mode 100644 index 0000000..15291dc Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0045.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0046.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0046.png new file mode 100644 index 0000000..dedf62f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0046.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0047.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0047.png new file mode 100644 index 0000000..f21ccd1 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0047.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0048.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0048.png new file mode 100644 index 0000000..2d55ad8 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0048.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0049.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0049.png new file mode 100644 index 0000000..50c8def Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0049.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0050.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0050.png new file mode 100644 index 0000000..86294f2 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0050.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0051.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0051.png new file mode 100644 index 0000000..126e95c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0051.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0052.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0052.png new file mode 100644 index 0000000..d09c4b9 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0052.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0053.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0053.png new file mode 100644 index 0000000..27dd9cd Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0053.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0054.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0054.png new file mode 100644 index 0000000..865587e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0054.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0055.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0055.png new file mode 100644 index 0000000..669ada5 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0055.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0056.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0056.png new file mode 100644 index 0000000..5ec7fb3 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0056.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0057.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0057.png new file mode 100644 index 0000000..19056ab Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0057.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0058.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0058.png new file mode 100644 index 0000000..f720927 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0058.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0059.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0059.png new file mode 100644 index 0000000..45157c3 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0059.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0060.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0060.png new file mode 100644 index 0000000..86988f0 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0060.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0061.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0061.png new file mode 100644 index 0000000..72f4fc1 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0061.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0062.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0062.png new file mode 100644 index 0000000..a96f9c1 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0062.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0063.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0063.png new file mode 100644 index 0000000..5d789de Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0063.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0064.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0064.png new file mode 100644 index 0000000..299ff73 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0064.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0065.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0065.png new file mode 100644 index 0000000..94a84c6 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0065.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0066.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0066.png new file mode 100644 index 0000000..fccb43d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0066.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0067.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0067.png new file mode 100644 index 0000000..28eb653 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0067.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0068.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0068.png new file mode 100644 index 0000000..28a7373 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0068.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0069.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0069.png new file mode 100644 index 0000000..2aaa9fe Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0069.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0070.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0070.png new file mode 100644 index 0000000..061148f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0070.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0071.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0071.png new file mode 100644 index 0000000..0610601 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0071.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0072.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0072.png new file mode 100644 index 0000000..632a99b Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0072.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0073.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0073.png new file mode 100644 index 0000000..d3337ff Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0073.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0074.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0074.png new file mode 100644 index 0000000..cbf4b56 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0074.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0075.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0075.png new file mode 100644 index 0000000..3cd2ded Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0075.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0076.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0076.png new file mode 100644 index 0000000..0d62523 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0076.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0077.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0077.png new file mode 100644 index 0000000..c417b2b Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0077.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0078.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0078.png new file mode 100644 index 0000000..030f434 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0078.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0079.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0079.png new file mode 100644 index 0000000..78e5dcd Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0079.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0080.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0080.png new file mode 100644 index 0000000..0ecba32 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0080.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0081.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0081.png new file mode 100644 index 0000000..2de996d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0081.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0082.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0082.png new file mode 100644 index 0000000..3c6b6f4 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0082.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0083.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0083.png new file mode 100644 index 0000000..e906e91 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0083.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0084.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0084.png new file mode 100644 index 0000000..1dbc9f6 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0084.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0085.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0085.png new file mode 100644 index 0000000..ddac592 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0085.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0086.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0086.png new file mode 100644 index 0000000..c8beb09 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0086.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0087.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0087.png new file mode 100644 index 0000000..ed9ff5c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0087.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0088.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0088.png new file mode 100644 index 0000000..3bdfc8f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0088.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0089.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0089.png new file mode 100644 index 0000000..28e0e86 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0089.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0090.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0090.png new file mode 100644 index 0000000..0111648 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0090.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0091.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0091.png new file mode 100644 index 0000000..b278ce9 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0091.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0092.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0092.png new file mode 100644 index 0000000..c1663f9 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0092.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0093.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0093.png new file mode 100644 index 0000000..c9b214e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0093.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0094.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0094.png new file mode 100644 index 0000000..b09d9eb Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0094.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0095.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0095.png new file mode 100644 index 0000000..04105c1 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0095.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0096.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0096.png new file mode 100644 index 0000000..77c67a0 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0096.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0097.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0097.png new file mode 100644 index 0000000..b1799bc Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0097.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0098.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0098.png new file mode 100644 index 0000000..7292cca Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0098.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0099.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0099.png new file mode 100644 index 0000000..f9a70c8 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0099.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0100.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0100.png new file mode 100644 index 0000000..d9ef7fc Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0100.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0101.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0101.png new file mode 100644 index 0000000..25896fe Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0101.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0102.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0102.png new file mode 100644 index 0000000..56d43d4 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0102.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0103.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0103.png new file mode 100644 index 0000000..092dc88 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0103.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0104.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0104.png new file mode 100644 index 0000000..092dc88 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0104.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0105.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0105.png new file mode 100644 index 0000000..0ed5f0f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0105.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0106.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0106.png new file mode 100644 index 0000000..2f752ce Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0106.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0107.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0107.png new file mode 100644 index 0000000..7c53083 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0107.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0108.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0108.png new file mode 100644 index 0000000..9f6b87d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0108.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0109.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0109.png new file mode 100644 index 0000000..4373fef Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0109.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0110.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0110.png new file mode 100644 index 0000000..d12667a Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0110.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0111.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0111.png new file mode 100644 index 0000000..b26e39b Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0111.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0112.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0112.png new file mode 100644 index 0000000..6db599a Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0112.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0113.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0113.png new file mode 100644 index 0000000..8c72876 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0113.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0114.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0114.png new file mode 100644 index 0000000..2b9f229 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0114.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0115.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0115.png new file mode 100644 index 0000000..e2d1e82 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0115.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0116.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0116.png new file mode 100644 index 0000000..256908d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0116.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0117.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0117.png new file mode 100644 index 0000000..c944c11 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0117.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0118.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0118.png new file mode 100644 index 0000000..051efc7 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0118.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0119.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0119.png new file mode 100644 index 0000000..92b4ba5 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0119.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0120.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0120.png new file mode 100644 index 0000000..0285b8e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0120.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0121.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0121.png new file mode 100644 index 0000000..616ae04 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0121.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0122.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0122.png new file mode 100644 index 0000000..c0abd19 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0122.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0123.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0123.png new file mode 100644 index 0000000..1e5553c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0123.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0124.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0124.png new file mode 100644 index 0000000..e548dae Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0124.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0125.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0125.png new file mode 100644 index 0000000..2bed0a5 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0125.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0126.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0126.png new file mode 100644 index 0000000..8a66578 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0126.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0127.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0127.png new file mode 100644 index 0000000..1e3e925 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0127.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0128.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0128.png new file mode 100644 index 0000000..140ff89 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0128.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0129.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0129.png new file mode 100644 index 0000000..ed688fe Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0129.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0130.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0130.png new file mode 100644 index 0000000..8ee25ea Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0130.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0131.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0131.png new file mode 100644 index 0000000..bf10fc0 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0131.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0132.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0132.png new file mode 100644 index 0000000..bad1dc8 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0132.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0133.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0133.png new file mode 100644 index 0000000..c606d4d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0133.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0134.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0134.png new file mode 100644 index 0000000..35ba53d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0134.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0135.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0135.png new file mode 100644 index 0000000..a675314 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0135.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0136.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0136.png new file mode 100644 index 0000000..bac2ffe Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0136.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0137.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0137.png new file mode 100644 index 0000000..614c484 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0137.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0138.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0138.png new file mode 100644 index 0000000..0175e6f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0138.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0139.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0139.png new file mode 100644 index 0000000..7e8f71a Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0139.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0140.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0140.png new file mode 100644 index 0000000..ddc18bd Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0140.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0141.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0141.png new file mode 100644 index 0000000..79d3c39 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0141.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0142.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0142.png new file mode 100644 index 0000000..71116dc Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0142.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0143.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0143.png new file mode 100644 index 0000000..709a17d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0143.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0144.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0144.png new file mode 100644 index 0000000..060ffae Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0144.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0145.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0145.png new file mode 100644 index 0000000..67aba55 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0145.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0146.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0146.png new file mode 100644 index 0000000..cfa1fd3 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0146.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0147.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0147.png new file mode 100644 index 0000000..91425c3 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0147.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0148.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0148.png new file mode 100644 index 0000000..b481dc8 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0148.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0149.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0149.png new file mode 100644 index 0000000..ae83ac8 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0149.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0150.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0150.png new file mode 100644 index 0000000..c34281c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0150.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0151.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0151.png new file mode 100644 index 0000000..96f42d1 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0151.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0152.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0152.png new file mode 100644 index 0000000..47bab89 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0152.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0153.png b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0153.png new file mode 100644 index 0000000..9ad4896 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/kigurumi/kigurumi-0153.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/Head-bodymask-0113.png b/TaikoWebUI/wwwroot/images/Costumes/masks/Head-bodymask-0113.png new file mode 100644 index 0000000..4bcc2fa Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/Head-bodymask-0113.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/Head-bodymask-0138.png b/TaikoWebUI/wwwroot/images/Costumes/masks/Head-bodymask-0138.png new file mode 100644 index 0000000..2139c3e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/Head-bodymask-0138.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/Head-facemask-0003.png b/TaikoWebUI/wwwroot/images/Costumes/masks/Head-facemask-0003.png new file mode 100644 index 0000000..586db45 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/Head-facemask-0003.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/Head-facemask-0113.png b/TaikoWebUI/wwwroot/images/Costumes/masks/Head-facemask-0113.png new file mode 100644 index 0000000..5987525 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/Head-facemask-0113.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/Head-facemask-0137.png b/TaikoWebUI/wwwroot/images/Costumes/masks/Head-facemask-0137.png new file mode 100644 index 0000000..eafbc05 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/Head-facemask-0137.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/Head-facemask-0138.png b/TaikoWebUI/wwwroot/images/Costumes/masks/Head-facemask-0138.png new file mode 100644 index 0000000..ed7f130 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/Head-facemask-0138.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0000.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0000.png new file mode 100644 index 0000000..9701f49 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0000.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0005.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0005.png new file mode 100644 index 0000000..465a34c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0005.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0019.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0019.png new file mode 100644 index 0000000..0bfe634 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0019.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0030.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0030.png new file mode 100644 index 0000000..da3fbd6 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0030.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0063.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0063.png new file mode 100644 index 0000000..ed1c6f5 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0063.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0064.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0064.png new file mode 100644 index 0000000..5e0e6bd Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0064.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0065.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0065.png new file mode 100644 index 0000000..a77d7d4 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0065.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0070.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0070.png new file mode 100644 index 0000000..994228c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0070.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0092.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0092.png new file mode 100644 index 0000000..8766b52 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0092.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0121.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0121.png new file mode 100644 index 0000000..0a79ea3 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0121.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0123.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0123.png new file mode 100644 index 0000000..b628ec9 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0123.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0127.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0127.png new file mode 100644 index 0000000..d3167b9 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0127.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0136.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0136.png new file mode 100644 index 0000000..bc735c5 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0136.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0153.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0153.png new file mode 100644 index 0000000..eda00cd Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-bodymask-0153.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0000.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0000.png new file mode 100644 index 0000000..728f0bd Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0000.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0005.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0005.png new file mode 100644 index 0000000..cacdcc5 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0005.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0015.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0015.png new file mode 100644 index 0000000..2330857 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0015.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0030.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0030.png new file mode 100644 index 0000000..83c0792 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0030.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0064.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0064.png new file mode 100644 index 0000000..6d90cd6 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0064.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0065.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0065.png new file mode 100644 index 0000000..e866082 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0065.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0069.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0069.png new file mode 100644 index 0000000..76d7e5f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0069.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0090.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0090.png new file mode 100644 index 0000000..0468f6d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0090.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0092.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0092.png new file mode 100644 index 0000000..5e8eeba Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0092.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0136.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0136.png new file mode 100644 index 0000000..dbf7bce Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0136.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0151.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0151.png new file mode 100644 index 0000000..5971623 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0151.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0152.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0152.png new file mode 100644 index 0000000..3652977 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0152.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0153.png b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0153.png new file mode 100644 index 0000000..a0a86e8 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/body-facemask-0153.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-bodymask-0052.png b/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-bodymask-0052.png new file mode 100644 index 0000000..e81651c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-bodymask-0052.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-bodymask-0109.png b/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-bodymask-0109.png new file mode 100644 index 0000000..1a6bbd2 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-bodymask-0109.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-bodymask-0110.png b/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-bodymask-0110.png new file mode 100644 index 0000000..63d0c6f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-bodymask-0110.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-bodymask-0115.png b/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-bodymask-0115.png new file mode 100644 index 0000000..1ebfab5 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-bodymask-0115.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-bodymask-0123.png b/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-bodymask-0123.png new file mode 100644 index 0000000..e396011 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-bodymask-0123.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-facemask-0052.png b/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-facemask-0052.png new file mode 100644 index 0000000..d4b2ebf Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-facemask-0052.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-facemask-0109.png b/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-facemask-0109.png new file mode 100644 index 0000000..1f28551 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-facemask-0109.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-facemask-0110.png b/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-facemask-0110.png new file mode 100644 index 0000000..922083f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-facemask-0110.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-facemask-0115.png b/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-facemask-0115.png new file mode 100644 index 0000000..498786e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-facemask-0115.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-facemask-0123.png b/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-facemask-0123.png new file mode 100644 index 0000000..df536e2 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/masks/kigurumi-facemask-0123.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0000.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0000.png new file mode 100644 index 0000000..422cec7 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0000.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0001.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0001.png new file mode 100644 index 0000000..f0ec8ec Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0001.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0002.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0002.png new file mode 100644 index 0000000..fa82391 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0002.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0003.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0003.png new file mode 100644 index 0000000..b7673d5 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0003.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0004.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0004.png new file mode 100644 index 0000000..3e35882 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0004.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0005.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0005.png new file mode 100644 index 0000000..73255c9 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0005.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0006.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0006.png new file mode 100644 index 0000000..380d3d5 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0006.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0007.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0007.png new file mode 100644 index 0000000..425fe23 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0007.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0008.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0008.png new file mode 100644 index 0000000..751d523 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0008.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0009.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0009.png new file mode 100644 index 0000000..a1c4f2b Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0009.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0010.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0010.png new file mode 100644 index 0000000..ce5390a Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0010.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0011.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0011.png new file mode 100644 index 0000000..0e9bab7 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0011.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0012.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0012.png new file mode 100644 index 0000000..7b03011 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0012.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0013.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0013.png new file mode 100644 index 0000000..7b2de05 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0013.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0014.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0014.png new file mode 100644 index 0000000..1a5c671 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0014.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0015.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0015.png new file mode 100644 index 0000000..c76b895 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0015.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0016.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0016.png new file mode 100644 index 0000000..995f842 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0016.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0017.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0017.png new file mode 100644 index 0000000..9575c04 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0017.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0018.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0018.png new file mode 100644 index 0000000..72c9f21 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0018.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0019.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0019.png new file mode 100644 index 0000000..118eedb Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0019.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0020.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0020.png new file mode 100644 index 0000000..45127a8 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0020.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0021.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0021.png new file mode 100644 index 0000000..bd44864 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0021.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0022.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0022.png new file mode 100644 index 0000000..576de36 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0022.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0023.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0023.png new file mode 100644 index 0000000..215ef82 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0023.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0024.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0024.png new file mode 100644 index 0000000..e7ca9ca Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0024.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0025.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0025.png new file mode 100644 index 0000000..6ec1095 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0025.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0026.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0026.png new file mode 100644 index 0000000..c5dd0f8 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0026.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0027.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0027.png new file mode 100644 index 0000000..9eaa93e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0027.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0028.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0028.png new file mode 100644 index 0000000..6254266 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0028.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0029.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0029.png new file mode 100644 index 0000000..b55e09a Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0029.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0030.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0030.png new file mode 100644 index 0000000..f4c0a1c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0030.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0031.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0031.png new file mode 100644 index 0000000..62fe1a1 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0031.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0032.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0032.png new file mode 100644 index 0000000..fd4cd1e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0032.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0033.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0033.png new file mode 100644 index 0000000..e742059 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0033.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0034.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0034.png new file mode 100644 index 0000000..2805014 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0034.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0035.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0035.png new file mode 100644 index 0000000..e07a91e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0035.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0036.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0036.png new file mode 100644 index 0000000..46360ca Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0036.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0037.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0037.png new file mode 100644 index 0000000..b5dba6a Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0037.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0038.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0038.png new file mode 100644 index 0000000..286893b Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0038.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0039.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0039.png new file mode 100644 index 0000000..fc8dfbb Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0039.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0040.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0040.png new file mode 100644 index 0000000..36ee7cf Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0040.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0041.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0041.png new file mode 100644 index 0000000..e957c0c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0041.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0042.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0042.png new file mode 100644 index 0000000..fa78b65 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0042.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0043.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0043.png new file mode 100644 index 0000000..cf02010 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0043.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0044.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0044.png new file mode 100644 index 0000000..fb6becd Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0044.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0045.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0045.png new file mode 100644 index 0000000..18e417e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0045.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0046.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0046.png new file mode 100644 index 0000000..2d20f10 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0046.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0047.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0047.png new file mode 100644 index 0000000..41dd618 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0047.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0048.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0048.png new file mode 100644 index 0000000..54a1426 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0048.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0049.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0049.png new file mode 100644 index 0000000..4eeb404 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0049.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0050.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0050.png new file mode 100644 index 0000000..5960779 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0050.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0051.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0051.png new file mode 100644 index 0000000..f80bd0b Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0051.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0052.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0052.png new file mode 100644 index 0000000..83d16af Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0052.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0053.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0053.png new file mode 100644 index 0000000..34b0e39 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0053.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0054.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0054.png new file mode 100644 index 0000000..d775ce9 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0054.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0055.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0055.png new file mode 100644 index 0000000..492c327 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0055.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0056.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0056.png new file mode 100644 index 0000000..d9affe7 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0056.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0057.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0057.png new file mode 100644 index 0000000..6a728f3 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0057.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0058.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0058.png new file mode 100644 index 0000000..f33d804 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0058.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0059.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0059.png new file mode 100644 index 0000000..4e2c173 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0059.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0060.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0060.png new file mode 100644 index 0000000..b3789b5 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0060.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0061.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0061.png new file mode 100644 index 0000000..7b6a747 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0061.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0062.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0062.png new file mode 100644 index 0000000..c39fe06 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0062.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0063.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0063.png new file mode 100644 index 0000000..e0429c2 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0063.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0064.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0064.png new file mode 100644 index 0000000..07b64fe Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0064.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0065.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0065.png new file mode 100644 index 0000000..90382ac Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0065.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0066.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0066.png new file mode 100644 index 0000000..130219d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0066.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0067.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0067.png new file mode 100644 index 0000000..7853fca Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0067.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0068.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0068.png new file mode 100644 index 0000000..e17f48d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0068.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0069.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0069.png new file mode 100644 index 0000000..29fb0b4 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0069.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0070.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0070.png new file mode 100644 index 0000000..9724a9f Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0070.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0071.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0071.png new file mode 100644 index 0000000..834e696 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0071.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0072.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0072.png new file mode 100644 index 0000000..df16984 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0072.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0073.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0073.png new file mode 100644 index 0000000..9cb7f57 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0073.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0074.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0074.png new file mode 100644 index 0000000..0d584e3 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0074.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0075.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0075.png new file mode 100644 index 0000000..c27a44b Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0075.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0076.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0076.png new file mode 100644 index 0000000..7463613 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0076.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0077.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0077.png new file mode 100644 index 0000000..a783d13 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0077.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0078.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0078.png new file mode 100644 index 0000000..b5466e5 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0078.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0079.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0079.png new file mode 100644 index 0000000..80ef64a Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0079.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0080.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0080.png new file mode 100644 index 0000000..f9f2ade Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0080.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0081.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0081.png new file mode 100644 index 0000000..65e2a2d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0081.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0082.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0082.png new file mode 100644 index 0000000..9b470cf Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0082.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0083.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0083.png new file mode 100644 index 0000000..e8aa7b1 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0083.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0084.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0084.png new file mode 100644 index 0000000..73920ce Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0084.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0085.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0085.png new file mode 100644 index 0000000..e42b456 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0085.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0086.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0086.png new file mode 100644 index 0000000..fafc5d9 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0086.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0087.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0087.png new file mode 100644 index 0000000..993422a Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0087.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0088.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0088.png new file mode 100644 index 0000000..98b82f3 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0088.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0089.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0089.png new file mode 100644 index 0000000..7d8c69e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0089.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0090.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0090.png new file mode 100644 index 0000000..2b479fc Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0090.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0091.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0091.png new file mode 100644 index 0000000..72fb836 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0091.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0092.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0092.png new file mode 100644 index 0000000..baddced Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0092.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0093.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0093.png new file mode 100644 index 0000000..827caf9 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0093.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0094.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0094.png new file mode 100644 index 0000000..6a04977 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0094.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0095.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0095.png new file mode 100644 index 0000000..44f8f1a Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0095.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0096.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0096.png new file mode 100644 index 0000000..fdc7835 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0096.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0097.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0097.png new file mode 100644 index 0000000..15d6491 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0097.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0098.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0098.png new file mode 100644 index 0000000..898505e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0098.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0099.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0099.png new file mode 100644 index 0000000..b3603f6 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0099.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0100.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0100.png new file mode 100644 index 0000000..f1cd881 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0100.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0101.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0101.png new file mode 100644 index 0000000..e762593 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0101.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0102.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0102.png new file mode 100644 index 0000000..dd81403 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0102.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0103.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0103.png new file mode 100644 index 0000000..a89063e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0103.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0104.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0104.png new file mode 100644 index 0000000..217f502 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0104.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0105.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0105.png new file mode 100644 index 0000000..415b5b4 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0105.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0106.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0106.png new file mode 100644 index 0000000..857d19e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0106.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0107.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0107.png new file mode 100644 index 0000000..41817b8 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0107.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0108.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0108.png new file mode 100644 index 0000000..a26bfda Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0108.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0109.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0109.png new file mode 100644 index 0000000..129e82e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0109.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0110.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0110.png new file mode 100644 index 0000000..0b29bc3 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0110.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0111.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0111.png new file mode 100644 index 0000000..5f48079 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0111.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0112.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0112.png new file mode 100644 index 0000000..94050c1 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0112.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0113.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0113.png new file mode 100644 index 0000000..3fd6ddb Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0113.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0114.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0114.png new file mode 100644 index 0000000..9276a82 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0114.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0115.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0115.png new file mode 100644 index 0000000..3c8b455 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0115.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0116.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0116.png new file mode 100644 index 0000000..8267dff Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0116.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0117.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0117.png new file mode 100644 index 0000000..f2d7fd0 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0117.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0118.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0118.png new file mode 100644 index 0000000..86ecb89 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0118.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0119.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0119.png new file mode 100644 index 0000000..189625a Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0119.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0120.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0120.png new file mode 100644 index 0000000..2abd72e Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0120.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0121.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0121.png new file mode 100644 index 0000000..27417ad Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0121.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0122.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0122.png new file mode 100644 index 0000000..98ec11b Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0122.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0123.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0123.png new file mode 100644 index 0000000..9a24af6 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0123.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0124.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0124.png new file mode 100644 index 0000000..2394e8d Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0124.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0125.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0125.png new file mode 100644 index 0000000..4ab4c12 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0125.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0126.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0126.png new file mode 100644 index 0000000..21228e9 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0126.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0127.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0127.png new file mode 100644 index 0000000..fa4e678 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0127.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0128.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0128.png new file mode 100644 index 0000000..63de7ac Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0128.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0129.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0129.png new file mode 100644 index 0000000..e8d9676 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0129.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0130.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0130.png new file mode 100644 index 0000000..42467cd Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0130.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0131.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0131.png new file mode 100644 index 0000000..e57eea3 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0131.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0132.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0132.png new file mode 100644 index 0000000..e8a9a33 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0132.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0133.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0133.png new file mode 100644 index 0000000..f0619c4 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0133.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0134.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0134.png new file mode 100644 index 0000000..e1a96ac Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0134.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0135.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0135.png new file mode 100644 index 0000000..2f7ab19 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0135.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0136.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0136.png new file mode 100644 index 0000000..ae7abe6 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0136.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0137.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0137.png new file mode 100644 index 0000000..176fc65 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0137.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0138.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0138.png new file mode 100644 index 0000000..c9db399 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0138.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0139.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0139.png new file mode 100644 index 0000000..6440870 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0139.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0140.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0140.png new file mode 100644 index 0000000..30e61df Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0140.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0141.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0141.png new file mode 100644 index 0000000..b588f55 Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0141.png differ diff --git a/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0142.png b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0142.png new file mode 100644 index 0000000..d186d3c Binary files /dev/null and b/TaikoWebUI/wwwroot/images/Costumes/puchi/puchi-0142.png differ diff --git a/TaikoWebUI/wwwroot/index.html b/TaikoWebUI/wwwroot/index.html index 17a13c8..567bbd7 100644 --- a/TaikoWebUI/wwwroot/index.html +++ b/TaikoWebUI/wwwroot/index.html @@ -7,12 +7,20 @@ <title>TaikoWebUI + + -
Loading...
+
+ + + + +
+
An unhandled error has occurred. diff --git a/TaikoWebUI/wwwroot/style.overrides.css b/TaikoWebUI/wwwroot/style.overrides.css index e1a5915..2db0f6d 100644 --- a/TaikoWebUI/wwwroot/style.overrides.css +++ b/TaikoWebUI/wwwroot/style.overrides.css @@ -44,6 +44,11 @@ display: none; } +.dialog-user-qr-code svg { + /* makes the qr code render with no subpixels */ + transform: scale(1.1); +} + @media only screen and (min-width: 600px) { .ai-battle-td { display: revert;