gitextract_kdttnkap/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ └── bug_report.md │ ├── dependabot.yml │ └── workflows/ │ └── dotnet-desktop.yml ├── .gitignore ├── Directory.Build.props ├── LICENSE ├── README.md ├── RaidCrawler.Core/ │ ├── Connection/ │ │ └── ConnectionWrapper.cs │ ├── Discord/ │ │ └── NotificationHandler.cs │ ├── Extensions/ │ │ ├── EncounterExtensions.cs │ │ └── RaidExtensions.cs │ ├── Interfaces/ │ │ ├── IDateAdvanceConfig.cs │ │ └── IWebhookConfig.cs │ ├── RaidCrawler.Core.csproj │ ├── Resources/ │ │ ├── Base/ │ │ │ ├── den_locations_base.json │ │ │ ├── raid_fixed_reward_item_array.json │ │ │ └── raid_lottery_reward_item_array.json │ │ ├── Blueberry/ │ │ │ └── den_locations_blueberry.json │ │ └── Kitakami/ │ │ └── den_locations_kitakami.json │ ├── Schemas/ │ │ └── raids.fbs │ └── Structures/ │ ├── Areas.cs │ ├── FlatBufferStructures/ │ │ ├── DeliveryRaidFixedRewardItem.cs │ │ ├── DeliveryRaidLotteryRewardItem.cs │ │ ├── PokeDataBattle.cs │ │ ├── RaidBossData.cs │ │ ├── RaidBossSizeData.cs │ │ ├── RaidEnemyInfo.cs │ │ └── RaidSerializationFormat.cs │ ├── FlatbufferDumper.cs │ ├── ITeraRaid.cs │ ├── MapMagic.cs │ ├── Offsets.cs │ ├── Raid.cs │ ├── RaidBlock.cs │ ├── RaidContainer.cs │ ├── RaidFilter.cs │ ├── RaidRewards.cs │ ├── TeraDistribution.cs │ ├── TeraEncounter.cs │ └── Utils.cs ├── RaidCrawler.Tests/ │ ├── Blocks/ │ │ ├── anubis_Might_cleared_VL/ │ │ │ ├── base │ │ │ ├── fixed_reward_item_array │ │ │ ├── lottery_reward_item_array │ │ │ ├── raid_enemy_array │ │ │ └── raid_priority_array │ │ ├── buddy_12_Distro_noMight_VL/ │ │ │ ├── base │ │ │ ├── fixed_reward_item_array │ │ │ ├── lottery_reward_item_array │ │ │ ├── raid_enemy_array │ │ │ └── raid_priority_array │ │ ├── chaos_12_Distro_noMight_VL/ │ │ │ ├── base │ │ │ ├── fixed_reward_item_array │ │ │ ├── lottery_reward_item_array │ │ │ ├── raid_enemy_array │ │ │ └── raid_priority_array │ │ ├── lisa_30_449_Gentle_21_31_25_21_8_31_SL/ │ │ │ ├── base │ │ │ ├── fixed_reward_item_array │ │ │ ├── lottery_reward_item_array │ │ │ ├── raid_enemy_array │ │ │ └── raid_priority_array │ │ ├── newt_56_761_Calm_4_7_4_3_31_25_VL/ │ │ │ ├── base │ │ │ ├── fixed_reward_item_array │ │ │ ├── lottery_reward_item_array │ │ │ ├── raid_enemy_array │ │ │ └── raid_priority_array │ │ ├── senna_9_132_Modest_31_0_31_31_31_31_SL/ │ │ │ ├── base │ │ │ ├── fixed_reward_item_array │ │ │ ├── lottery_reward_item_array │ │ │ ├── raid_enemy_array │ │ │ └── raid_priority_array │ │ └── zyro_Inteleon_IL_VL/ │ │ ├── base │ │ ├── fixed_reward_item_array │ │ ├── lottery_reward_item_array │ │ ├── raid_enemy_array │ │ └── raid_priority_array │ ├── FilterTests.cs │ ├── Filters/ │ │ ├── BounsweetShiny.json │ │ ├── Ditto0Atk.json │ │ ├── Ditto0Spe.json │ │ └── IVControl.json │ ├── RaidCrawler.Tests.csproj │ ├── RaidReadTests.cs │ ├── RaidStatTests.cs │ └── TestUtil.cs ├── RaidCrawler.WinForms/ │ ├── App.config │ ├── Config.cs │ ├── ErrorHandler/ │ │ └── ErrorHandler.cs │ ├── MainWindow.Designer.cs │ ├── MainWindow.cs │ ├── MainWindow.resx │ ├── Program.cs │ ├── Properties/ │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── RaidCrawler.WinForms.csproj │ └── SubForms/ │ ├── ConfigWindow.Designer.cs │ ├── ConfigWindow.cs │ ├── ConfigWindow.resx │ ├── EmojiConfig.Designer.cs │ ├── EmojiConfig.cs │ ├── EmojiConfig.resx │ ├── FilterSettings.Designer.cs │ ├── FilterSettings.cs │ ├── FilterSettings.resx │ ├── ItemIDs.Designer.cs │ ├── ItemIDs.cs │ ├── ItemIDs.resx │ ├── MapView.Designer.cs │ ├── MapView.cs │ ├── MapView.resx │ ├── RaidBlockViewer.Designer.cs │ ├── RaidBlockViewer.cs │ ├── RaidBlockViewer.resx │ ├── RewardsView.Designer.cs │ ├── RewardsView.cs │ ├── RewardsView.resx │ ├── TeraRaidView.Designer.cs │ ├── TeraRaidView.cs │ ├── TeraRaidView.resx │ ├── TickModifier.Designer.cs │ ├── TickModifier.cs │ ├── TickModifier.resx │ ├── UpdateNotifPopup.Designer.cs │ ├── UpdateNotifPopup.cs │ └── UpdateNotifPopup.resx └── RaidCrawler.sln