gitextract_33r_salu/ ├── .appveyor.yml ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── README.md ├── _config.yml ├── bintray-dev.json ├── conanfile.txt ├── libShabal/ │ └── shabal.dll.lib ├── resources/ │ ├── cmSettings.sln │ ├── frontail.json │ ├── gitignore │ ├── install.sh │ ├── install_deps_conan.bat │ ├── install_deps_conan.sh │ ├── install_deps_conan_mint.sh │ ├── public/ │ │ ├── block.html │ │ ├── index.html │ │ ├── js/ │ │ │ ├── block.js │ │ │ ├── general.js │ │ │ ├── plotfiles.js │ │ │ └── settings.js │ │ ├── login.html │ │ ├── plotfiles.html │ │ └── settings.html │ ├── run.sh │ ├── screen.sh │ └── settingsui/ │ ├── App.xaml │ ├── App.xaml.cs │ ├── ConfigEditor.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Models/ │ │ └── Base.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── app.config │ └── packages.config ├── src/ │ ├── Declarations.cpp │ ├── Declarations.hpp │ ├── MinerUtil.cpp │ ├── MinerUtil.hpp │ ├── extlibs/ │ │ └── json.hpp │ ├── gpu/ │ │ ├── algorithm/ │ │ │ └── gpu_algorithm_atomic.hpp │ │ ├── gpu_algorithm_shell.hpp │ │ ├── gpu_declarations.hpp │ │ ├── gpu_shell.hpp │ │ └── impl/ │ │ ├── gpu_cuda_impl.cpp │ │ ├── gpu_cuda_impl.hpp │ │ ├── gpu_opencl_impl.cpp │ │ └── gpu_opencl_impl.hpp │ ├── logging/ │ │ ├── Console.cpp │ │ ├── Console.hpp │ │ ├── Message.cpp │ │ ├── Message.hpp │ │ ├── MinerLogger.cpp │ │ ├── MinerLogger.hpp │ │ ├── Output.cpp │ │ ├── Output.hpp │ │ ├── ProgressPrinter.cpp │ │ ├── ProgressPrinter.hpp │ │ └── channels/ │ │ ├── ColoredPriorityConsoleChannel.cpp │ │ ├── ColoredPriorityConsoleChannel.hpp │ │ ├── MinerDataChannel.cpp │ │ └── MinerDataChannel.hpp │ ├── main.cpp │ ├── mining/ │ │ ├── Deadline.cpp │ │ ├── Deadline.hpp │ │ ├── Miner.cpp │ │ ├── Miner.hpp │ │ ├── MinerCL.cpp │ │ ├── MinerCL.hpp │ │ ├── MinerConfig.cpp │ │ ├── MinerConfig.hpp │ │ ├── MinerData.cpp │ │ ├── MinerData.hpp │ │ └── WorkerList.hpp │ ├── network/ │ │ ├── NonceSubmitter.cpp │ │ ├── NonceSubmitter.hpp │ │ ├── Request.cpp │ │ ├── Request.hpp │ │ ├── Response.cpp │ │ ├── Response.hpp │ │ ├── Url.cpp │ │ └── Url.hpp │ ├── nxt/ │ │ ├── nxt_address.cpp │ │ └── nxt_address.h │ ├── plots/ │ │ ├── Plot.cpp │ │ ├── Plot.hpp │ │ ├── PlotGenerator.cpp │ │ ├── PlotGenerator.hpp │ │ ├── PlotReader.cpp │ │ ├── PlotReader.hpp │ │ ├── PlotSizes.cpp │ │ ├── PlotSizes.hpp │ │ ├── PlotVerifier.cpp │ │ ├── PlotVerifier.hpp │ │ └── libShabal.h │ ├── resources.rc │ ├── shabal/ │ │ ├── MinerShabal.cpp │ │ ├── MinerShabal.hpp │ │ ├── cuda/ │ │ │ ├── Shabal.cu │ │ │ └── Shabal.hpp │ │ ├── impl/ │ │ │ ├── mshabal_avx2_impl.hpp │ │ │ ├── mshabal_avx_impl.hpp │ │ │ ├── mshabal_sse4_impl.hpp │ │ │ └── sphlib_impl.hpp │ │ ├── mshabal/ │ │ │ ├── mshabal.h │ │ │ ├── mshabal_avx1.cpp │ │ │ ├── mshabal_avx2.cpp │ │ │ └── mshabal_sse4.cpp │ │ ├── opencl/ │ │ │ └── mining.cl │ │ └── sphlib/ │ │ ├── sph_shabal.cpp │ │ ├── sph_shabal.h │ │ └── sph_types.h │ ├── wallet/ │ │ ├── Account.cpp │ │ ├── Account.hpp │ │ ├── Wallet.cpp │ │ └── Wallet.hpp │ └── webserver/ │ ├── MinerServer.cpp │ ├── MinerServer.hpp │ ├── RequestHandler.cpp │ └── RequestHandler.hpp └── version.id