├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── SteamAccCreator.sln ├── SteamAccCreator ├── App.config ├── Defaults │ ├── Mail.cs │ └── Web.cs ├── Enums │ ├── CaptchaService.cs │ ├── ProxyStatus.cs │ └── ProxyType.cs ├── File │ ├── FileManager.cs │ └── SaveType.cs ├── Firefox │ ├── AccessibleHandler.dll │ ├── AccessibleMarshal.dll │ ├── IA2Marshal.dll │ ├── breakpadinjector.dll │ ├── d3dcompiler_47.dll │ ├── freebl3.dll │ ├── lgpllibs.dll │ ├── libEGL.dll │ ├── libGLESv2.dll │ ├── mozavcodec.dll │ ├── mozavutil.dll │ ├── mozglue.dll │ ├── nss3.dll │ ├── nssckbi.dll │ ├── nssdbm3.dll │ ├── omni.ja │ ├── plugin-container.exe │ ├── plugin-hang-ui.exe │ ├── qipcap.dll │ ├── softokn3.dll │ └── xul.dll ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Gui │ ├── AccountCreator.cs │ ├── AddGameDialog.Designer.cs │ ├── AddGameDialog.cs │ ├── AddGameDialog.resx │ ├── CaptchaDialog.Designer.cs │ ├── CaptchaDialog.cs │ ├── CaptchaDialog.resx │ ├── InputDialog.Designer.cs │ ├── InputDialog.cs │ ├── InputDialog.resx │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── ReCaptchaDialog.Designer.cs │ ├── ReCaptchaDialog.cs │ └── ReCaptchaDialog.resx ├── Interfaces │ └── ICaptchaDialog.cs ├── Logger.cs ├── Models │ ├── CaptchaSolutionsConfig.cs │ ├── CaptchaSolvingConfig.cs │ ├── Configuration.cs │ ├── CredentialConfig.cs │ ├── GameInfo.cs │ ├── GamesConfig.cs │ ├── MailConfig.cs │ ├── OutputConfig.cs │ ├── ProfileConfig.cs │ ├── ProxyConfig.cs │ ├── ProxyItem.cs │ ├── RuCaptchaConfig.cs │ └── Steam │ │ ├── CaptchaResponse.cs │ │ └── UploadProfileImage.cs ├── NLog.config ├── Pathes.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── DataSources │ │ ├── SteamAccCreator.Models.ProfileConfig.datasource │ │ └── SteamAccCreator.Models.ProxyItem.datasource │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SteamAccCreator.csproj ├── Utility.cs ├── Web │ ├── Captcha │ │ └── CaptchaSolution.cs │ ├── Error.cs │ ├── HttpHandler.cs │ ├── MailHandler.cs │ ├── ProxyManager.cs │ └── Updater │ │ ├── Enums │ │ └── UpdateChannelEnum.cs │ │ ├── Models │ │ ├── DownloadLinks.cs │ │ ├── Misc.cs │ │ ├── Updates.cs │ │ └── VersionInfo.cs │ │ ├── UpdateInfo.cs │ │ └── UpdaterHandler.cs ├── packages.config └── photo_2018-12-26_15-38-43.ico └── appveyor.yml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/README.md -------------------------------------------------------------------------------- /SteamAccCreator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator.sln -------------------------------------------------------------------------------- /SteamAccCreator/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/App.config -------------------------------------------------------------------------------- /SteamAccCreator/Defaults/Mail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Defaults/Mail.cs -------------------------------------------------------------------------------- /SteamAccCreator/Defaults/Web.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Defaults/Web.cs -------------------------------------------------------------------------------- /SteamAccCreator/Enums/CaptchaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Enums/CaptchaService.cs -------------------------------------------------------------------------------- /SteamAccCreator/Enums/ProxyStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Enums/ProxyStatus.cs -------------------------------------------------------------------------------- /SteamAccCreator/Enums/ProxyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Enums/ProxyType.cs -------------------------------------------------------------------------------- /SteamAccCreator/File/FileManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/File/FileManager.cs -------------------------------------------------------------------------------- /SteamAccCreator/File/SaveType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/File/SaveType.cs -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/AccessibleHandler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/AccessibleHandler.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/AccessibleMarshal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/AccessibleMarshal.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/IA2Marshal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/IA2Marshal.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/breakpadinjector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/breakpadinjector.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/d3dcompiler_47.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/d3dcompiler_47.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/freebl3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/freebl3.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/lgpllibs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/lgpllibs.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/libEGL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/libEGL.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/libGLESv2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/libGLESv2.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/mozavcodec.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/mozavcodec.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/mozavutil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/mozavutil.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/mozglue.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/mozglue.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/nss3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/nss3.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/nssckbi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/nssckbi.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/nssdbm3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/nssdbm3.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/omni.ja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/omni.ja -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/plugin-container.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/plugin-container.exe -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/plugin-hang-ui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/plugin-hang-ui.exe -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/qipcap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/qipcap.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/softokn3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/softokn3.dll -------------------------------------------------------------------------------- /SteamAccCreator/Firefox/xul.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Firefox/xul.dll -------------------------------------------------------------------------------- /SteamAccCreator/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/FodyWeavers.xml -------------------------------------------------------------------------------- /SteamAccCreator/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/FodyWeavers.xsd -------------------------------------------------------------------------------- /SteamAccCreator/Gui/AccountCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/AccountCreator.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/AddGameDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/AddGameDialog.Designer.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/AddGameDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/AddGameDialog.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/AddGameDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/AddGameDialog.resx -------------------------------------------------------------------------------- /SteamAccCreator/Gui/CaptchaDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/CaptchaDialog.Designer.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/CaptchaDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/CaptchaDialog.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/CaptchaDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/CaptchaDialog.resx -------------------------------------------------------------------------------- /SteamAccCreator/Gui/InputDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/InputDialog.Designer.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/InputDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/InputDialog.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/InputDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/InputDialog.resx -------------------------------------------------------------------------------- /SteamAccCreator/Gui/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/MainForm.Designer.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/MainForm.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/MainForm.resx -------------------------------------------------------------------------------- /SteamAccCreator/Gui/ReCaptchaDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/ReCaptchaDialog.Designer.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/ReCaptchaDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/ReCaptchaDialog.cs -------------------------------------------------------------------------------- /SteamAccCreator/Gui/ReCaptchaDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Gui/ReCaptchaDialog.resx -------------------------------------------------------------------------------- /SteamAccCreator/Interfaces/ICaptchaDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Interfaces/ICaptchaDialog.cs -------------------------------------------------------------------------------- /SteamAccCreator/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Logger.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/CaptchaSolutionsConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Models/CaptchaSolutionsConfig.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/CaptchaSolvingConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Models/CaptchaSolvingConfig.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Models/Configuration.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/CredentialConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Models/CredentialConfig.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/GameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Models/GameInfo.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/GamesConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Models/GamesConfig.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/MailConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Models/MailConfig.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/OutputConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Models/OutputConfig.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/ProfileConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Models/ProfileConfig.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/ProxyConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Models/ProxyConfig.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/ProxyItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Models/ProxyItem.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/RuCaptchaConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Models/RuCaptchaConfig.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/Steam/CaptchaResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Models/Steam/CaptchaResponse.cs -------------------------------------------------------------------------------- /SteamAccCreator/Models/Steam/UploadProfileImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Models/Steam/UploadProfileImage.cs -------------------------------------------------------------------------------- /SteamAccCreator/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/NLog.config -------------------------------------------------------------------------------- /SteamAccCreator/Pathes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Pathes.cs -------------------------------------------------------------------------------- /SteamAccCreator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Program.cs -------------------------------------------------------------------------------- /SteamAccCreator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SteamAccCreator/Properties/DataSources/SteamAccCreator.Models.ProfileConfig.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Properties/DataSources/SteamAccCreator.Models.ProfileConfig.datasource -------------------------------------------------------------------------------- /SteamAccCreator/Properties/DataSources/SteamAccCreator.Models.ProxyItem.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Properties/DataSources/SteamAccCreator.Models.ProxyItem.datasource -------------------------------------------------------------------------------- /SteamAccCreator/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SteamAccCreator/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Properties/Resources.resx -------------------------------------------------------------------------------- /SteamAccCreator/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SteamAccCreator/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Properties/Settings.settings -------------------------------------------------------------------------------- /SteamAccCreator/SteamAccCreator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/SteamAccCreator.csproj -------------------------------------------------------------------------------- /SteamAccCreator/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Utility.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/Captcha/CaptchaSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Web/Captcha/CaptchaSolution.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Web/Error.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/HttpHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Web/HttpHandler.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/MailHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Web/MailHandler.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/ProxyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Web/ProxyManager.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/Updater/Enums/UpdateChannelEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Web/Updater/Enums/UpdateChannelEnum.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/Updater/Models/DownloadLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Web/Updater/Models/DownloadLinks.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/Updater/Models/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Web/Updater/Models/Misc.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/Updater/Models/Updates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Web/Updater/Models/Updates.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/Updater/Models/VersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Web/Updater/Models/VersionInfo.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/Updater/UpdateInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Web/Updater/UpdateInfo.cs -------------------------------------------------------------------------------- /SteamAccCreator/Web/Updater/UpdaterHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/Web/Updater/UpdaterHandler.cs -------------------------------------------------------------------------------- /SteamAccCreator/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/packages.config -------------------------------------------------------------------------------- /SteamAccCreator/photo_2018-12-26_15-38-43.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/SteamAccCreator/photo_2018-12-26_15-38-43.ico -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steam-account-creator/Steam-Account-Generator/HEAD/appveyor.yml --------------------------------------------------------------------------------