gitextract_7ffcgm84/ ├── .github/ │ └── workflows/ │ └── dotnet.yml ├── .gitignore ├── ChiaPlotStatus.csproj ├── ChiaPlotStatus.sln ├── ChiaPlotStatusCli/ │ ├── CLI/ │ │ ├── CLI.cs │ │ └── CliOptions.cs │ └── ChiaPlotStatusCli.csproj ├── ChiaPlotStatusGUI/ │ ├── ChiaPlotStatusGUI.csproj │ ├── ChiaPlotStatusGUI.csproj.user │ ├── Directory.Build.props │ ├── GUI/ │ │ ├── App.axaml │ │ ├── App.axaml.cs │ │ ├── Assets/ │ │ │ └── en.yaml │ │ ├── Models/ │ │ │ ├── HighlightedText.cs │ │ │ ├── PlotCounts.cs │ │ │ └── Translation.cs │ │ ├── Program.cs │ │ ├── Utils/ │ │ │ └── Utils.cs │ │ ├── ViewLocator.cs │ │ ├── ViewModels/ │ │ │ ├── MainWindowViewModel.cs │ │ │ └── ViewModelBase.cs │ │ ├── Views/ │ │ │ ├── ChiaPlotterDialog.axaml │ │ │ ├── ChiaPlotterDialog.axaml.cs │ │ │ ├── DonationDialog.axaml │ │ │ ├── DonationDialog.axaml.cs │ │ │ ├── HarvestDialog.axaml │ │ │ ├── HarvestDialog.axaml.cs │ │ │ ├── MainWindow.axaml │ │ │ ├── MainWindow.axaml.cs │ │ │ ├── MarkOfDeathDialog.axaml │ │ │ ├── MarkOfDeathDialog.axaml.cs │ │ │ ├── NoteDialog.axaml │ │ │ ├── NoteDialog.axaml.cs │ │ │ ├── StatisticsDialog.axaml │ │ │ ├── StatisticsDialog.axaml.cs │ │ │ ├── UpdateDialog.axaml │ │ │ └── UpdateDialog.axaml.cs │ │ └── nuget.config │ └── chia-plot-status.desktop ├── ChiaPlotStatusLib/ │ ├── ChiaPlotStatusLib.csproj │ └── Logic/ │ ├── ChiaPlotStatus.cs │ ├── Models/ │ │ ├── CPPlotLog.cs │ │ ├── CPPlotLogReadable.cs │ │ ├── Columns.cs │ │ ├── Filter.cs │ │ ├── Health.cs │ │ ├── MarkOfDeath.cs │ │ ├── Note.cs │ │ ├── PlotLog.cs │ │ ├── PlotLogReadable.cs │ │ └── Settings.cs │ ├── Parser/ │ │ ├── CPPlotLogFileParser.cs │ │ ├── PlotLogFileParser.cs │ │ ├── PlotParserCache.cs │ │ └── TailLineEmitter.cs │ ├── Statistics/ │ │ ├── CPPlottingStatistics.cs │ │ ├── Harvest/ │ │ │ ├── Harvest.cs │ │ │ ├── HarvestParser.cs │ │ │ ├── HarvestSummary.cs │ │ │ └── HarvestSummeryReadable.cs │ │ ├── PlottingStatistics.cs │ │ ├── PlottingStatisticsDay.cs │ │ ├── PlottingStatisticsDayReadable.cs │ │ ├── PlottingStatisticsFull.cs │ │ ├── PlottingStatisticsFullReadable.cs │ │ ├── PlottingStatisticsHolder.cs │ │ ├── PlottingStatisticsID.cs │ │ └── PlottingStatisticsIdRelevanceWeights.cs │ └── Utils/ │ ├── Exporter.cs │ ├── Formatter.cs │ ├── SearchFilter.cs │ └── Sorter.cs ├── Directory.Build.props ├── InstallerConfig.ifp ├── LICENSE ├── Logo/ │ └── Icon - Readme.txt ├── NuGet.Config ├── Properties/ │ ├── PublishProfiles/ │ │ ├── FolderProfile.pubxml │ │ └── FolderProfile.pubxml.user │ ├── Resources.Designer.cs │ └── Resources.resx ├── README.md ├── grayfallstown.pfx ├── next-minor.ps1 ├── next-patch.ps1 └── release.ps1