├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── Bubbles.json ├── InnoSetup ├── HourBoostr.iss ├── build │ └── HourBoostr_Setup.exe ├── icon.ico ├── license.txt ├── postinstall.txt └── preinstall.txt ├── LICENSE ├── README.md ├── Source - OLD ├── .vs │ └── project │ │ └── project-colors.json ├── HourBoostr.Settings │ ├── App.config │ ├── Core │ │ ├── Network.cs │ │ └── Xmlc.cs │ ├── HourBoostr.Settings.csproj │ ├── Objects │ │ └── Config.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ └── loading.gif │ ├── Ui │ │ ├── AppGames.Designer.cs │ │ ├── AppGames.cs │ │ ├── AppGames.resx │ │ ├── AppHome.Designer.cs │ │ ├── AppHome.cs │ │ └── AppHome.resx │ ├── icon.ico │ ├── media │ │ ├── Settings-icon.png │ │ ├── icon.ico │ │ ├── icon.png │ │ ├── icon.psd │ │ └── loading.gif │ └── packages.config ├── HourBoostr │ ├── App.config │ ├── Core │ │ ├── Bot.cs │ │ ├── ConcurrentEnumerator.cs │ │ ├── ConcurrentHashSet.cs │ │ ├── ExtraHandler.cs │ │ ├── GlobalDB.cs │ │ ├── InMemoryServerListProvider.cs │ │ ├── Log.cs │ │ ├── Session.cs │ │ ├── Settings.cs │ │ ├── SteamWeb.cs │ │ └── Utils.cs │ ├── Enums │ │ ├── BotState.cs │ │ └── ChatMessageData.cs │ ├── HourBoostr.csproj │ ├── Objects │ │ ├── Config.cs │ │ └── Steam.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Resources │ │ └── icon.ico │ ├── icon.ico │ ├── media │ │ ├── icon.ico │ │ ├── icon.png │ │ └── icon.psd │ └── packages.config ├── SingleBoostr.Core │ ├── Enums │ │ ├── LogLevel.cs │ │ ├── Messages.cs │ │ ├── Session.cs │ │ └── WindowPanel.cs │ ├── Misc │ │ ├── AppBackgroundWorker.cs │ │ ├── Const.cs │ │ ├── Log.cs │ │ ├── NativeMethods.cs │ │ ├── SteamWeb.cs │ │ ├── StringCipher.cs │ │ ├── UpdateCheck.cs │ │ └── Utils.cs │ ├── Objects │ │ ├── AccountDetails.cs │ │ ├── AccountSettings.cs │ │ ├── DiscordServer.cs │ │ ├── Friend.cs │ │ ├── SessionInfo.cs │ │ ├── Steam.cs │ │ ├── SteamApp.cs │ │ ├── SteamGroup.cs │ │ ├── TradingCard.cs │ │ └── UpdateHolder.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SingleBoostr.Core.csproj │ ├── app.config │ └── packages.config ├── SingleBoostr.Game │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SingleBoostr.Game.csproj │ ├── SingleBoostr.Game.csproj.user │ ├── icon.ico │ └── packages.config ├── SingleBoostr │ ├── App.config │ ├── Enums │ │ ├── Session.cs │ │ └── WindowPanel.cs │ ├── Localization │ │ └── TermsOfService.cs │ ├── Media │ │ └── Interface │ │ │ ├── Idle.psd │ │ │ ├── LoadL.psd │ │ │ ├── Media │ │ │ ├── Active-Selected.png │ │ │ ├── Active.png │ │ │ ├── Adobe After Effects Auto-Save │ │ │ │ └── heart_anim auto-save 1.aep │ │ │ ├── Back-Selected.png │ │ │ ├── Back.png │ │ │ ├── Background.png │ │ │ ├── Block-Selected.png │ │ │ ├── Block.png │ │ │ ├── Button-Selected.png │ │ │ ├── Button-SelectedL.png │ │ │ ├── Button.png │ │ │ ├── ButtonL.png │ │ │ ├── Cards-Selected.png │ │ │ ├── Cards.png │ │ │ ├── Chat.png │ │ │ ├── Donate-Selected.png │ │ │ ├── Donate.png │ │ │ ├── Exit-Selected.png │ │ │ ├── Exit.png │ │ │ ├── Icon-Transparent.png │ │ │ ├── Icon.ico │ │ │ ├── Icon.png │ │ │ ├── Idle-Selected.png │ │ │ ├── Idle-SelectedL.png │ │ │ ├── Idle.png │ │ │ ├── IdleL.png │ │ │ ├── Load.png │ │ │ ├── LoadL.png │ │ │ ├── Min-Selected.png │ │ │ ├── Min.png │ │ │ ├── Settings-Selected.png │ │ │ ├── Settings.png │ │ │ ├── animation.gif │ │ │ ├── animation_tmp10198 │ │ │ ├── discord-logo.png │ │ │ ├── don_bitcoin.png │ │ │ ├── donate_bitcoin.png │ │ │ ├── donate_paypal.png │ │ │ ├── github-logo.png │ │ │ ├── header.jpg │ │ │ ├── heart_anim.aep │ │ │ └── steam-logo.png │ │ │ ├── UX.psd │ │ │ ├── UXBackground.psd │ │ │ ├── UXIdle Hours Started.psd │ │ │ ├── UXIdle Hours.psd │ │ │ ├── UXLoading.psd │ │ │ ├── UXStart screen.psd │ │ │ ├── UXTerms of Service.psd │ │ │ ├── UXTrading Cards Started.psd │ │ │ ├── UXTrading Cards.psd │ │ │ └── icon.psd │ ├── Misc │ │ └── Utils.cs │ ├── Objects │ │ ├── App.cs │ │ ├── Applist.cs │ │ ├── Bubble.cs │ │ ├── ChatBubbles.cs │ │ ├── Settings.cs │ │ ├── SteamApps.cs │ │ └── Store.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── SingleBoostr.csproj │ ├── Sound │ │ └── storms.wav │ ├── Ui │ │ ├── AppDonate.Designer.cs │ │ ├── AppDonate.cs │ │ ├── AppDonate.resx │ │ ├── AppHome.Designer.cs │ │ ├── AppHome.cs │ │ ├── AppHome.resx │ │ ├── AppMessageBox.Designer.cs │ │ ├── AppMessageBox.cs │ │ ├── AppMessageBox.resx │ │ ├── AppQueue.Designer.cs │ │ ├── AppQueue.cs │ │ ├── AppQueue.resx │ │ ├── AppSettings.Designer.cs │ │ ├── AppSettings.cs │ │ ├── AppSettings.resx │ │ ├── AppWebBrowser.Designer.cs │ │ ├── AppWebBrowser.cs │ │ └── AppWebBrowser.resx │ ├── icon.ico │ └── packages.config ├── Steam4Intermediate │ ├── Generator.cs │ ├── INode.cs │ ├── INodeBehavior.cs │ ├── NodeBehavior │ │ ├── ConstIdentBehavior.cs │ │ ├── FunctionLayerBehavior.cs │ │ ├── LinkBehavior.cs │ │ ├── PointerLayerBehavior.cs │ │ └── TypeLayerBehavior.cs │ ├── Nodes │ │ ├── ArrayTypeNode.cs │ │ ├── BaseNode.cs │ │ ├── CXXConstructorNode.cs │ │ ├── CXXDestructorNode.cs │ │ ├── CXXMethodNode.cs │ │ ├── CXXRecordNode.cs │ │ ├── CvQualifedTypeNode.cs │ │ ├── ElaboratedType.cs │ │ ├── EnumConstantNode.cs │ │ ├── EnumNode.cs │ │ ├── FieldNode.cs │ │ ├── FileNode.cs │ │ ├── FunctionNode.cs │ │ ├── FunctionTypeNode.cs │ │ ├── FundamentalTypeNode.cs │ │ ├── LinkageSpecNode.cs │ │ ├── ParmVarNode.cs │ │ ├── PointerTypeNode.cs │ │ ├── RecordNode.cs │ │ ├── ReferenceType.cs │ │ ├── TemplateNode.cs │ │ ├── TranslationUnitNode.cs │ │ ├── TypedefNode.cs │ │ └── VarNode.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Steam4Intermediate.csproj │ └── Steam4Intermediate.sln ├── Steam4NET │ ├── CGameID.cs │ ├── CSteamID.cs │ ├── CallbackDispatcher.cs │ ├── CallbackIdentities.cs │ ├── GameID_t.cs │ ├── InterfaceVersions.cs │ ├── InteropHelp.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Steam4NET.csproj │ ├── Steam4NET.sln │ ├── SteamID_t.cs │ ├── Steamworks.cs │ └── autogen │ │ ├── AppsCommon.cs │ │ ├── BillingCommon.cs │ │ ├── CGameID.cs │ │ ├── CSteamID.cs │ │ ├── ClientCommon.cs │ │ ├── ContentServerCommon.cs │ │ ├── ControllerCommon.cs │ │ ├── ECurrencyCode.cs │ │ ├── EResult.cs │ │ ├── ESteamAppUpdateStatsQueryType.cs │ │ ├── ESteamBufferMethod.cs │ │ ├── ESteamError.cs │ │ ├── ESteamFindFilter.cs │ │ ├── ESteamNotify.cs │ │ ├── ESteamPaymentCardType.cs │ │ ├── ESteamSeekMethod.cs │ │ ├── ESteamServerType.cs │ │ ├── ESteamSubscriptionBillingInfoType.cs │ │ ├── ESteamSubscriptionStatus.cs │ │ ├── EVoiceResult.cs │ │ ├── FriendGameInfo.cs │ │ ├── FriendsCommon.cs │ │ ├── GameCoordinatorCommon.cs │ │ ├── GameServerCommon.cs │ │ ├── GameServerStatsCommon.cs │ │ ├── GameStatsCommon.cs │ │ ├── HTTPCommon.cs │ │ ├── IClientAppManager.cs │ │ ├── IClientApps.cs │ │ ├── IClientAudio.cs │ │ ├── IClientBilling.cs │ │ ├── IClientConfigStore.cs │ │ ├── IClientContentServer.cs │ │ ├── IClientDepotBuilder.cs │ │ ├── IClientDeviceAuth.cs │ │ ├── IClientEngine.cs │ │ ├── IClientFriends.cs │ │ ├── IClientGameCoordinator.cs │ │ ├── IClientGameServer.cs │ │ ├── IClientGameServerStats.cs │ │ ├── IClientGameStats.cs │ │ ├── IClientHTTP.cs │ │ ├── IClientInventory.cs │ │ ├── IClientMasterServerUpdater.cs │ │ ├── IClientMatchmaking.cs │ │ ├── IClientMatchmakingServers.cs │ │ ├── IClientMusic.cs │ │ ├── IClientNetworkDeviceManager.cs │ │ ├── IClientNetworking.cs │ │ ├── IClientProductBuilder.cs │ │ ├── IClientRemoteStorage.cs │ │ ├── IClientScreenshots.cs │ │ ├── IClientShortcuts.cs │ │ ├── IClientStreamClient.cs │ │ ├── IClientStreamLauncher.cs │ │ ├── IClientUGC.cs │ │ ├── IClientUnifiedMessages.cs │ │ ├── IClientUser.cs │ │ ├── IClientUserStats.cs │ │ ├── IClientUtils.cs │ │ ├── ISteam003.cs │ │ ├── ISteam004.cs │ │ ├── ISteam005.cs │ │ ├── ISteam006.cs │ │ ├── ISteam2Bridge001.cs │ │ ├── ISteam2Bridge002.cs │ │ ├── ISteamAppList001.cs │ │ ├── ISteamAppTicket001.cs │ │ ├── ISteamApps001.cs │ │ ├── ISteamApps002.cs │ │ ├── ISteamApps003.cs │ │ ├── ISteamApps004.cs │ │ ├── ISteamApps005.cs │ │ ├── ISteamApps006.cs │ │ ├── ISteamBilling001.cs │ │ ├── ISteamBilling002.cs │ │ ├── ISteamClient006.cs │ │ ├── ISteamClient007.cs │ │ ├── ISteamClient008.cs │ │ ├── ISteamClient009.cs │ │ ├── ISteamClient010.cs │ │ ├── ISteamClient011.cs │ │ ├── ISteamClient012.cs │ │ ├── ISteamClient013.cs │ │ ├── ISteamClient014.cs │ │ ├── ISteamClient015.cs │ │ ├── ISteamClient016.cs │ │ ├── ISteamClient017.cs │ │ ├── ISteamContentServer001.cs │ │ ├── ISteamContentServer002.cs │ │ ├── ISteamController001.cs │ │ ├── ISteamFriends001.cs │ │ ├── ISteamFriends002.cs │ │ ├── ISteamFriends003.cs │ │ ├── ISteamFriends004.cs │ │ ├── ISteamFriends005.cs │ │ ├── ISteamFriends006.cs │ │ ├── ISteamFriends007.cs │ │ ├── ISteamFriends008.cs │ │ ├── ISteamFriends009.cs │ │ ├── ISteamFriends010.cs │ │ ├── ISteamFriends011.cs │ │ ├── ISteamFriends012.cs │ │ ├── ISteamFriends013.cs │ │ ├── ISteamFriends014.cs │ │ ├── ISteamFriends015.cs │ │ ├── ISteamGameCoordinator001.cs │ │ ├── ISteamGameServer002.cs │ │ ├── ISteamGameServer003.cs │ │ ├── ISteamGameServer004.cs │ │ ├── ISteamGameServer005.cs │ │ ├── ISteamGameServer006.cs │ │ ├── ISteamGameServer007.cs │ │ ├── ISteamGameServer008.cs │ │ ├── ISteamGameServer009.cs │ │ ├── ISteamGameServer010.cs │ │ ├── ISteamGameServer011.cs │ │ ├── ISteamGameServer012.cs │ │ ├── ISteamGameServerStats001.cs │ │ ├── ISteamGameStats001.cs │ │ ├── ISteamHTTP001.cs │ │ ├── ISteamHTTP002.cs │ │ ├── ISteamInventory001.cs │ │ ├── ISteamMasterServerUpdater001.cs │ │ ├── ISteamMatchmaking001.cs │ │ ├── ISteamMatchmaking002.cs │ │ ├── ISteamMatchmaking003.cs │ │ ├── ISteamMatchmaking004.cs │ │ ├── ISteamMatchmaking005.cs │ │ ├── ISteamMatchmaking006.cs │ │ ├── ISteamMatchmaking007.cs │ │ ├── ISteamMatchmaking008.cs │ │ ├── ISteamMatchmaking009.cs │ │ ├── ISteamMatchmakingServers001.cs │ │ ├── ISteamMatchmakingServers002.cs │ │ ├── ISteamMusic001.cs │ │ ├── ISteamNetworking001.cs │ │ ├── ISteamNetworking002.cs │ │ ├── ISteamNetworking003.cs │ │ ├── ISteamNetworking004.cs │ │ ├── ISteamNetworking005.cs │ │ ├── ISteamOAuth001.cs │ │ ├── ISteamRemoteStorage001.cs │ │ ├── ISteamRemoteStorage002.cs │ │ ├── ISteamRemoteStorage003.cs │ │ ├── ISteamRemoteStorage004.cs │ │ ├── ISteamRemoteStorage005.cs │ │ ├── ISteamRemoteStorage006.cs │ │ ├── ISteamRemoteStorage007.cs │ │ ├── ISteamRemoteStorage008.cs │ │ ├── ISteamRemoteStorage009.cs │ │ ├── ISteamRemoteStorage010.cs │ │ ├── ISteamRemoteStorage011.cs │ │ ├── ISteamRemoteStorage012.cs │ │ ├── ISteamScreenshots001.cs │ │ ├── ISteamScreenshots002.cs │ │ ├── ISteamStreamLauncher001.cs │ │ ├── ISteamUGC001.cs │ │ ├── ISteamUGC002.cs │ │ ├── ISteamUGC003.cs │ │ ├── ISteamUnifiedMessages001.cs │ │ ├── ISteamUser004.cs │ │ ├── ISteamUser005.cs │ │ ├── ISteamUser006.cs │ │ ├── ISteamUser007.cs │ │ ├── ISteamUser008.cs │ │ ├── ISteamUser009.cs │ │ ├── ISteamUser010.cs │ │ ├── ISteamUser011.cs │ │ ├── ISteamUser012.cs │ │ ├── ISteamUser013.cs │ │ ├── ISteamUser014.cs │ │ ├── ISteamUser015.cs │ │ ├── ISteamUser016.cs │ │ ├── ISteamUser017.cs │ │ ├── ISteamUserStats001.cs │ │ ├── ISteamUserStats002.cs │ │ ├── ISteamUserStats003.cs │ │ ├── ISteamUserStats004.cs │ │ ├── ISteamUserStats005.cs │ │ ├── ISteamUserStats006.cs │ │ ├── ISteamUserStats007.cs │ │ ├── ISteamUserStats008.cs │ │ ├── ISteamUserStats009.cs │ │ ├── ISteamUserStats010.cs │ │ ├── ISteamUserStats011.cs │ │ ├── ISteamUtils001.cs │ │ ├── ISteamUtils002.cs │ │ ├── ISteamUtils003.cs │ │ ├── ISteamUtils004.cs │ │ ├── ISteamUtils005.cs │ │ ├── ISteamUtils006.cs │ │ ├── ISteamUtils007.cs │ │ ├── InventoryCommon.cs │ │ ├── MatchMakingKeyValuePair.cs │ │ ├── MatchmakingCommon.cs │ │ ├── MatchmakingServersCommon.cs │ │ ├── MusicCommon.cs │ │ ├── NetworkingCommon.cs │ │ ├── RemoteStorageCommon.cs │ │ ├── ScreenshotsCommon.cs │ │ ├── SteamSalt.cs │ │ ├── SteamTypes.cs │ │ ├── Steamclient.cs │ │ ├── StreamLauncherCommon.cs │ │ ├── TSteamApp.cs │ │ ├── TSteamAppDependencyInfo.cs │ │ ├── TSteamAppLaunchOption.cs │ │ ├── TSteamAppStats.cs │ │ ├── TSteamAppVersion.cs │ │ ├── TSteamDiscountQualifier.cs │ │ ├── TSteamElemInfo.cs │ │ ├── TSteamError.cs │ │ ├── TSteamExternalBillingInfo.cs │ │ ├── TSteamGlobalUserID.cs │ │ ├── TSteamOfflineStatus.cs │ │ ├── TSteamPaymentCardInfo.cs │ │ ├── TSteamPaymentCardReceiptInfo.cs │ │ ├── TSteamPrepurchaseInfo.cs │ │ ├── TSteamPrepurchaseReceiptInfo.cs │ │ ├── TSteamProgress.cs │ │ ├── TSteamSplitLocalUserID.cs │ │ ├── TSteamSubscription.cs │ │ ├── TSteamSubscriptionBillingInfo.cs │ │ ├── TSteamSubscriptionDiscount.cs │ │ ├── TSteamSubscriptionReceipt.cs │ │ ├── TSteamSubscriptionStats.cs │ │ ├── TSteamUpdateStats.cs │ │ ├── UGCCommon.cs │ │ ├── UserCommon.cs │ │ ├── UserStatsCommon.cs │ │ ├── UtilsCommon.cs │ │ ├── gameserveritem.cs │ │ └── servernetadr.cs ├── Steam4Test │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Steam4Test.csproj │ └── app.config ├── build │ ├── AutoMapper.dll │ ├── HourBoostr.Settings.exe │ ├── HourBoostr.Settings.exe.config │ ├── HourBoostr.exe │ ├── HourBoostr.exe.config │ ├── HtmlAgilityPack.dll │ ├── MetroFramework.dll │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ ├── Microsoft.Extensions.DependencyInjection.dll │ ├── Microsoft.Extensions.Options.dll │ ├── Microsoft.Extensions.Primitives.dll │ ├── Microsoft.Win32.Registry.dll │ ├── Newtonsoft.Json.dll │ ├── Nito.AsyncEx.Context.dll │ ├── Nito.AsyncEx.Coordination.dll │ ├── Nito.AsyncEx.Interop.WaitHandles.dll │ ├── Nito.AsyncEx.Oop.dll │ ├── Nito.AsyncEx.Tasks.dll │ ├── Nito.Cancellation.dll │ ├── Nito.Collections.Deque.dll │ ├── Nito.Disposables.dll │ ├── RestSharp.dll │ ├── SingleBoostr.Core.dll │ ├── SingleBoostr.Core.dll.config │ ├── SingleBoostr.Game.exe │ ├── SingleBoostr.Game.exe.config │ ├── SingleBoostr.exe │ ├── SingleBoostr.exe.config │ ├── Steam.Models.dll │ ├── Steam4NET.dll │ ├── SteamKit2.dll │ ├── SteamWebAPI2.dll │ ├── System.Buffers.dll │ ├── System.Collections.Immutable.dll │ ├── System.Memory.dll │ ├── System.Numerics.Vectors.dll │ ├── System.Runtime.CompilerServices.Unsafe.dll │ ├── System.Security.AccessControl.dll │ ├── System.Security.Principal.Windows.dll │ ├── System.Threading.Tasks.Extensions.dll │ ├── System.ValueTuple.dll │ ├── protobuf-net.Core.dll │ └── protobuf-net.dll ├── packages │ ├── AutoMapper.7.0.1 │ │ ├── .signature.p7s │ │ ├── AutoMapper.7.0.1.nupkg │ │ └── lib │ │ │ ├── net45 │ │ │ ├── AutoMapper.dll │ │ │ └── AutoMapper.xml │ │ │ ├── netcoreapp2.0 │ │ │ ├── AutoMapper.dll │ │ │ └── AutoMapper.xml │ │ │ ├── netstandard1.3 │ │ │ ├── AutoMapper.dll │ │ │ └── AutoMapper.xml │ │ │ └── netstandard2.0 │ │ │ ├── AutoMapper.dll │ │ │ └── AutoMapper.xml │ ├── HtmlAgilityPack.1.11.37 │ │ ├── .signature.p7s │ │ ├── HtmlAgilityPack.1.11.37.nupkg │ │ └── lib │ │ │ ├── Net35 │ │ │ ├── HtmlAgilityPack.dll │ │ │ └── HtmlAgilityPack.xml │ │ │ ├── Net40-client │ │ │ ├── HtmlAgilityPack.dll │ │ │ └── HtmlAgilityPack.xml │ │ │ ├── Net40 │ │ │ ├── HtmlAgilityPack.XML │ │ │ └── HtmlAgilityPack.dll │ │ │ ├── Net45 │ │ │ ├── HtmlAgilityPack.XML │ │ │ └── HtmlAgilityPack.dll │ │ │ ├── NetCore45 │ │ │ ├── HtmlAgilityPack.XML │ │ │ └── HtmlAgilityPack.dll │ │ │ ├── netstandard1.3 │ │ │ ├── HtmlAgilityPack.deps.json │ │ │ ├── HtmlAgilityPack.dll │ │ │ └── HtmlAgilityPack.xml │ │ │ ├── netstandard1.6 │ │ │ ├── HtmlAgilityPack.deps.json │ │ │ ├── HtmlAgilityPack.dll │ │ │ └── HtmlAgilityPack.xml │ │ │ ├── netstandard2.0 │ │ │ ├── HtmlAgilityPack.deps.json │ │ │ ├── HtmlAgilityPack.dll │ │ │ └── HtmlAgilityPack.xml │ │ │ ├── portable-net45+netcore45+wp8+MonoAndroid+MonoTouch │ │ │ ├── HtmlAgilityPack.XML │ │ │ └── HtmlAgilityPack.dll │ │ │ ├── portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch │ │ │ ├── HtmlAgilityPack.XML │ │ │ └── HtmlAgilityPack.dll │ │ │ └── uap10.0 │ │ │ ├── HtmlAgilityPack.XML │ │ │ ├── HtmlAgilityPack.dll │ │ │ └── HtmlAgilityPack.pri │ ├── Microsoft.Bcl.AsyncInterfaces.5.0.0 │ │ ├── .signature.p7s │ │ ├── Icon.png │ │ ├── LICENSE.TXT │ │ ├── Microsoft.Bcl.AsyncInterfaces.5.0.0.nupkg │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ ├── lib │ │ │ ├── net461 │ │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ │ └── Microsoft.Bcl.AsyncInterfaces.xml │ │ │ ├── netstandard2.0 │ │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ │ └── Microsoft.Bcl.AsyncInterfaces.xml │ │ │ └── netstandard2.1 │ │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ │ └── Microsoft.Bcl.AsyncInterfaces.xml │ │ ├── useSharedDesignerContext.txt │ │ └── version.txt │ ├── Microsoft.Extensions.DependencyInjection.5.0.2 │ │ ├── .signature.p7s │ │ ├── Icon.png │ │ ├── LICENSE.TXT │ │ ├── Microsoft.Extensions.DependencyInjection.5.0.2.nupkg │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ ├── lib │ │ │ ├── net461 │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ │ └── Microsoft.Extensions.DependencyInjection.xml │ │ │ ├── net5.0 │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ │ └── Microsoft.Extensions.DependencyInjection.xml │ │ │ ├── netstandard2.0 │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ │ └── Microsoft.Extensions.DependencyInjection.xml │ │ │ └── netstandard2.1 │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ │ └── Microsoft.Extensions.DependencyInjection.xml │ │ ├── useSharedDesignerContext.txt │ │ └── version.txt │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.5.0.0 │ │ ├── .signature.p7s │ │ ├── Icon.png │ │ ├── LICENSE.TXT │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.5.0.0.nupkg │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ ├── lib │ │ │ ├── net461 │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ │ └── Microsoft.Extensions.DependencyInjection.Abstractions.xml │ │ │ └── netstandard2.0 │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ │ └── Microsoft.Extensions.DependencyInjection.Abstractions.xml │ │ ├── useSharedDesignerContext.txt │ │ └── version.txt │ ├── Microsoft.Extensions.Options.5.0.0 │ │ ├── .signature.p7s │ │ ├── Icon.png │ │ ├── LICENSE.TXT │ │ ├── Microsoft.Extensions.Options.5.0.0.nupkg │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ ├── lib │ │ │ ├── net461 │ │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ │ └── Microsoft.Extensions.Options.xml │ │ │ ├── net5.0 │ │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ │ └── Microsoft.Extensions.Options.xml │ │ │ └── netstandard2.0 │ │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ │ └── Microsoft.Extensions.Options.xml │ │ ├── useSharedDesignerContext.txt │ │ └── version.txt │ ├── Microsoft.Extensions.Primitives.5.0.1 │ │ ├── .signature.p7s │ │ ├── Icon.png │ │ ├── LICENSE.TXT │ │ ├── Microsoft.Extensions.Primitives.5.0.1.nupkg │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ ├── lib │ │ │ ├── net461 │ │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ │ └── Microsoft.Extensions.Primitives.xml │ │ │ ├── netcoreapp3.0 │ │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ │ └── Microsoft.Extensions.Primitives.xml │ │ │ └── netstandard2.0 │ │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ │ └── Microsoft.Extensions.Primitives.xml │ │ ├── useSharedDesignerContext.txt │ │ └── version.txt │ ├── Microsoft.Win32.Registry.5.0.0 │ │ ├── .signature.p7s │ │ ├── Icon.png │ │ ├── LICENSE.TXT │ │ ├── Microsoft.Win32.Registry.5.0.0.nupkg │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ ├── lib │ │ │ ├── net46 │ │ │ │ └── Microsoft.Win32.Registry.dll │ │ │ ├── net461 │ │ │ │ ├── Microsoft.Win32.Registry.dll │ │ │ │ └── Microsoft.Win32.Registry.xml │ │ │ ├── netstandard1.3 │ │ │ │ └── Microsoft.Win32.Registry.dll │ │ │ └── netstandard2.0 │ │ │ │ ├── Microsoft.Win32.Registry.dll │ │ │ │ └── Microsoft.Win32.Registry.xml │ │ ├── ref │ │ │ ├── net46 │ │ │ │ └── Microsoft.Win32.Registry.dll │ │ │ ├── net461 │ │ │ │ ├── Microsoft.Win32.Registry.dll │ │ │ │ └── Microsoft.Win32.Registry.xml │ │ │ ├── netstandard1.3 │ │ │ │ ├── Microsoft.Win32.Registry.dll │ │ │ │ ├── Microsoft.Win32.Registry.xml │ │ │ │ ├── de │ │ │ │ │ └── Microsoft.Win32.Registry.xml │ │ │ │ ├── es │ │ │ │ │ └── Microsoft.Win32.Registry.xml │ │ │ │ ├── fr │ │ │ │ │ └── Microsoft.Win32.Registry.xml │ │ │ │ ├── it │ │ │ │ │ └── Microsoft.Win32.Registry.xml │ │ │ │ ├── ja │ │ │ │ │ └── Microsoft.Win32.Registry.xml │ │ │ │ ├── ko │ │ │ │ │ └── Microsoft.Win32.Registry.xml │ │ │ │ ├── ru │ │ │ │ │ └── Microsoft.Win32.Registry.xml │ │ │ │ ├── zh-hans │ │ │ │ │ └── Microsoft.Win32.Registry.xml │ │ │ │ └── zh-hant │ │ │ │ │ └── Microsoft.Win32.Registry.xml │ │ │ └── netstandard2.0 │ │ │ │ ├── Microsoft.Win32.Registry.dll │ │ │ │ └── Microsoft.Win32.Registry.xml │ │ ├── runtimes │ │ │ └── win │ │ │ │ └── lib │ │ │ │ ├── net46 │ │ │ │ └── Microsoft.Win32.Registry.dll │ │ │ │ ├── net461 │ │ │ │ ├── Microsoft.Win32.Registry.dll │ │ │ │ └── Microsoft.Win32.Registry.xml │ │ │ │ ├── netstandard1.3 │ │ │ │ └── Microsoft.Win32.Registry.dll │ │ │ │ └── netstandard2.0 │ │ │ │ ├── Microsoft.Win32.Registry.dll │ │ │ │ └── Microsoft.Win32.Registry.xml │ │ ├── useSharedDesignerContext.txt │ │ └── version.txt │ ├── Newtonsoft.Json.13.0.1 │ │ ├── .signature.p7s │ │ ├── LICENSE.md │ │ ├── Newtonsoft.Json.13.0.1.nupkg │ │ ├── lib │ │ │ ├── net20 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── net35 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── net40 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── net45 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── netstandard1.0 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ ├── netstandard1.3 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ │ └── netstandard2.0 │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ └── Newtonsoft.Json.xml │ │ └── packageIcon.png │ ├── Nito.AsyncEx.5.1.2 │ │ ├── .signature.p7s │ │ ├── Nito.AsyncEx.5.1.2.nupkg │ │ └── icon.png │ ├── Nito.AsyncEx.Context.5.1.2 │ │ ├── .signature.p7s │ │ ├── Nito.AsyncEx.Context.5.1.2.nupkg │ │ ├── icon.png │ │ └── lib │ │ │ ├── net461 │ │ │ ├── Nito.AsyncEx.Context.dll │ │ │ └── Nito.AsyncEx.Context.xml │ │ │ ├── netstandard1.3 │ │ │ ├── Nito.AsyncEx.Context.dll │ │ │ └── Nito.AsyncEx.Context.xml │ │ │ └── netstandard2.0 │ │ │ ├── Nito.AsyncEx.Context.dll │ │ │ └── Nito.AsyncEx.Context.xml │ ├── Nito.AsyncEx.Coordination.5.1.2 │ │ ├── .signature.p7s │ │ ├── Nito.AsyncEx.Coordination.5.1.2.nupkg │ │ ├── icon.png │ │ └── lib │ │ │ ├── net461 │ │ │ ├── Nito.AsyncEx.Coordination.dll │ │ │ └── Nito.AsyncEx.Coordination.xml │ │ │ ├── netstandard1.3 │ │ │ ├── Nito.AsyncEx.Coordination.dll │ │ │ └── Nito.AsyncEx.Coordination.xml │ │ │ └── netstandard2.0 │ │ │ ├── Nito.AsyncEx.Coordination.dll │ │ │ └── Nito.AsyncEx.Coordination.xml │ ├── Nito.AsyncEx.Interop.WaitHandles.5.1.2 │ │ ├── .signature.p7s │ │ ├── Nito.AsyncEx.Interop.WaitHandles.5.1.2.nupkg │ │ ├── icon.png │ │ └── lib │ │ │ ├── net461 │ │ │ ├── Nito.AsyncEx.Interop.WaitHandles.dll │ │ │ └── Nito.AsyncEx.Interop.WaitHandles.xml │ │ │ ├── netstandard1.3 │ │ │ ├── Nito.AsyncEx.Interop.WaitHandles.dll │ │ │ └── Nito.AsyncEx.Interop.WaitHandles.xml │ │ │ └── netstandard2.0 │ │ │ ├── Nito.AsyncEx.Interop.WaitHandles.dll │ │ │ └── Nito.AsyncEx.Interop.WaitHandles.xml │ ├── Nito.AsyncEx.Oop.5.1.2 │ │ ├── .signature.p7s │ │ ├── Nito.AsyncEx.Oop.5.1.2.nupkg │ │ ├── icon.png │ │ └── lib │ │ │ ├── net461 │ │ │ ├── Nito.AsyncEx.Oop.dll │ │ │ └── Nito.AsyncEx.Oop.xml │ │ │ ├── netstandard1.3 │ │ │ ├── Nito.AsyncEx.Oop.dll │ │ │ └── Nito.AsyncEx.Oop.xml │ │ │ └── netstandard2.0 │ │ │ ├── Nito.AsyncEx.Oop.dll │ │ │ └── Nito.AsyncEx.Oop.xml │ ├── Nito.AsyncEx.Tasks.5.1.2 │ │ ├── .signature.p7s │ │ ├── Nito.AsyncEx.Tasks.5.1.2.nupkg │ │ ├── icon.png │ │ └── lib │ │ │ ├── net461 │ │ │ ├── Nito.AsyncEx.Tasks.dll │ │ │ └── Nito.AsyncEx.Tasks.xml │ │ │ ├── netstandard1.3 │ │ │ ├── Nito.AsyncEx.Tasks.dll │ │ │ └── Nito.AsyncEx.Tasks.xml │ │ │ └── netstandard2.0 │ │ │ ├── Nito.AsyncEx.Tasks.dll │ │ │ └── Nito.AsyncEx.Tasks.xml │ ├── Nito.Cancellation.1.1.2 │ │ ├── .signature.p7s │ │ ├── Nito.Cancellation.1.1.2.nupkg │ │ ├── icon.png │ │ └── lib │ │ │ ├── net461 │ │ │ ├── Nito.Cancellation.dll │ │ │ └── Nito.Cancellation.xml │ │ │ ├── netstandard1.0 │ │ │ ├── Nito.Cancellation.dll │ │ │ └── Nito.Cancellation.xml │ │ │ └── netstandard2.0 │ │ │ ├── Nito.Cancellation.dll │ │ │ └── Nito.Cancellation.xml │ ├── Nito.Collections.Deque.1.1.1 │ │ ├── .signature.p7s │ │ ├── Nito.Collections.Deque.1.1.1.nupkg │ │ ├── icon.png │ │ └── lib │ │ │ ├── net461 │ │ │ ├── Nito.Collections.Deque.dll │ │ │ └── Nito.Collections.Deque.xml │ │ │ ├── netstandard1.0 │ │ │ ├── Nito.Collections.Deque.dll │ │ │ └── Nito.Collections.Deque.xml │ │ │ └── netstandard2.0 │ │ │ ├── Nito.Collections.Deque.dll │ │ │ └── Nito.Collections.Deque.xml │ ├── Nito.Disposables.2.2.1 │ │ ├── .signature.p7s │ │ ├── Nito.Disposables.2.2.1.nupkg │ │ ├── icon.png │ │ └── lib │ │ │ ├── net461 │ │ │ ├── Nito.Disposables.dll │ │ │ └── Nito.Disposables.xml │ │ │ ├── netstandard1.0 │ │ │ ├── Nito.Disposables.dll │ │ │ └── Nito.Disposables.xml │ │ │ ├── netstandard2.0 │ │ │ ├── Nito.Disposables.dll │ │ │ └── Nito.Disposables.xml │ │ │ └── netstandard2.1 │ │ │ ├── Nito.Disposables.dll │ │ │ └── Nito.Disposables.xml │ ├── RestSharp.106.12.0 │ │ ├── .signature.p7s │ │ ├── RestSharp.106.12.0.nupkg │ │ ├── lib │ │ │ ├── net452 │ │ │ │ ├── RestSharp.dll │ │ │ │ └── RestSharp.xml │ │ │ └── netstandard2.0 │ │ │ │ ├── RestSharp.dll │ │ │ │ └── RestSharp.xml │ │ └── restsharp.png │ ├── Steam.Models.3.0.10 │ │ ├── .signature.p7s │ │ ├── Steam.Models.3.0.10.nupkg │ │ └── lib │ │ │ └── netstandard2.0 │ │ │ └── Steam.Models.dll │ ├── SteamKit2.2.3.0 │ │ ├── .signature.p7s │ │ ├── 3rd party.txt │ │ ├── SteamKit2.2.3.0.nupkg │ │ ├── lib │ │ │ └── netstandard2.0 │ │ │ │ ├── SteamKit2.dll │ │ │ │ └── SteamKit2.xml │ │ ├── license.txt │ │ ├── readme.txt │ │ └── steamkit_logo_128.png │ ├── SteamWebAPI2.4.0.8 │ │ ├── .signature.p7s │ │ ├── SteamWebAPI2.4.0.8.nupkg │ │ └── lib │ │ │ └── netstandard2.0 │ │ │ └── SteamWebAPI2.dll │ ├── System.Buffers.4.5.1 │ │ ├── .signature.p7s │ │ ├── LICENSE.TXT │ │ ├── System.Buffers.4.5.1.nupkg │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ ├── lib │ │ │ ├── net461 │ │ │ │ ├── System.Buffers.dll │ │ │ │ └── System.Buffers.xml │ │ │ ├── netcoreapp2.0 │ │ │ │ └── _._ │ │ │ ├── netstandard1.1 │ │ │ │ ├── System.Buffers.dll │ │ │ │ └── System.Buffers.xml │ │ │ ├── netstandard2.0 │ │ │ │ ├── System.Buffers.dll │ │ │ │ └── System.Buffers.xml │ │ │ └── uap10.0.16299 │ │ │ │ └── _._ │ │ ├── ref │ │ │ ├── net45 │ │ │ │ ├── System.Buffers.dll │ │ │ │ └── System.Buffers.xml │ │ │ ├── netcoreapp2.0 │ │ │ │ └── _._ │ │ │ ├── netstandard1.1 │ │ │ │ ├── System.Buffers.dll │ │ │ │ └── System.Buffers.xml │ │ │ ├── netstandard2.0 │ │ │ │ ├── System.Buffers.dll │ │ │ │ └── System.Buffers.xml │ │ │ └── uap10.0.16299 │ │ │ │ └── _._ │ │ ├── useSharedDesignerContext.txt │ │ └── version.txt │ ├── System.Collections.Immutable.5.0.0 │ │ ├── .signature.p7s │ │ ├── Icon.png │ │ ├── LICENSE.TXT │ │ ├── System.Collections.Immutable.5.0.0.nupkg │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ ├── lib │ │ │ ├── net461 │ │ │ │ ├── System.Collections.Immutable.dll │ │ │ │ └── System.Collections.Immutable.xml │ │ │ ├── netstandard1.0 │ │ │ │ ├── System.Collections.Immutable.dll │ │ │ │ └── System.Collections.Immutable.xml │ │ │ ├── netstandard1.3 │ │ │ │ ├── System.Collections.Immutable.dll │ │ │ │ └── System.Collections.Immutable.xml │ │ │ ├── netstandard2.0 │ │ │ │ ├── System.Collections.Immutable.dll │ │ │ │ └── System.Collections.Immutable.xml │ │ │ └── portable-net45+win8+wp8+wpa81 │ │ │ │ ├── System.Collections.Immutable.dll │ │ │ │ └── System.Collections.Immutable.xml │ │ ├── useSharedDesignerContext.txt │ │ └── version.txt │ ├── System.Memory.4.5.4 │ │ ├── .signature.p7s │ │ ├── LICENSE.TXT │ │ ├── System.Memory.4.5.4.nupkg │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ ├── lib │ │ │ ├── net461 │ │ │ │ ├── System.Memory.dll │ │ │ │ └── System.Memory.xml │ │ │ ├── netcoreapp2.1 │ │ │ │ └── _._ │ │ │ ├── netstandard1.1 │ │ │ │ ├── System.Memory.dll │ │ │ │ └── System.Memory.xml │ │ │ └── netstandard2.0 │ │ │ │ ├── System.Memory.dll │ │ │ │ └── System.Memory.xml │ │ ├── ref │ │ │ └── netcoreapp2.1 │ │ │ │ └── _._ │ │ ├── useSharedDesignerContext.txt │ │ └── version.txt │ ├── System.Numerics.Vectors.4.5.0 │ │ ├── .signature.p7s │ │ ├── LICENSE.TXT │ │ ├── System.Numerics.Vectors.4.5.0.nupkg │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ ├── lib │ │ │ ├── MonoAndroid10 │ │ │ │ └── _._ │ │ │ ├── MonoTouch10 │ │ │ │ └── _._ │ │ │ ├── net46 │ │ │ │ ├── System.Numerics.Vectors.dll │ │ │ │ └── System.Numerics.Vectors.xml │ │ │ ├── netcoreapp2.0 │ │ │ │ └── _._ │ │ │ ├── netstandard1.0 │ │ │ │ ├── System.Numerics.Vectors.dll │ │ │ │ └── System.Numerics.Vectors.xml │ │ │ ├── netstandard2.0 │ │ │ │ ├── System.Numerics.Vectors.dll │ │ │ │ └── System.Numerics.Vectors.xml │ │ │ ├── portable-net45+win8+wp8+wpa81 │ │ │ │ ├── System.Numerics.Vectors.dll │ │ │ │ └── System.Numerics.Vectors.xml │ │ │ ├── uap10.0.16299 │ │ │ │ └── _._ │ │ │ ├── xamarinios10 │ │ │ │ └── _._ │ │ │ ├── xamarinmac20 │ │ │ │ └── _._ │ │ │ ├── xamarintvos10 │ │ │ │ └── _._ │ │ │ └── xamarinwatchos10 │ │ │ │ └── _._ │ │ ├── ref │ │ │ ├── MonoAndroid10 │ │ │ │ └── _._ │ │ │ ├── MonoTouch10 │ │ │ │ └── _._ │ │ │ ├── net45 │ │ │ │ ├── System.Numerics.Vectors.dll │ │ │ │ └── System.Numerics.Vectors.xml │ │ │ ├── net46 │ │ │ │ ├── System.Numerics.Vectors.dll │ │ │ │ └── System.Numerics.Vectors.xml │ │ │ ├── netcoreapp2.0 │ │ │ │ └── _._ │ │ │ ├── netstandard1.0 │ │ │ │ ├── System.Numerics.Vectors.dll │ │ │ │ └── System.Numerics.Vectors.xml │ │ │ ├── netstandard2.0 │ │ │ │ ├── System.Numerics.Vectors.dll │ │ │ │ └── System.Numerics.Vectors.xml │ │ │ ├── uap10.0.16299 │ │ │ │ └── _._ │ │ │ ├── xamarinios10 │ │ │ │ └── _._ │ │ │ ├── xamarinmac20 │ │ │ │ └── _._ │ │ │ ├── xamarintvos10 │ │ │ │ └── _._ │ │ │ └── xamarinwatchos10 │ │ │ │ └── _._ │ │ ├── useSharedDesignerContext.txt │ │ └── version.txt │ ├── System.Runtime.CompilerServices.Unsafe.5.0.0 │ │ ├── .signature.p7s │ │ ├── Icon.png │ │ ├── LICENSE.TXT │ │ ├── System.Runtime.CompilerServices.Unsafe.5.0.0.nupkg │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ ├── lib │ │ │ ├── net45 │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ │ │ ├── netcoreapp2.0 │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ │ │ ├── netstandard1.0 │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ │ │ └── netstandard2.0 │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ │ ├── ref │ │ │ ├── net461 │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ │ │ ├── netstandard1.0 │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ │ │ ├── netstandard2.0 │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ │ │ └── netstandard2.1 │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ │ └── System.Runtime.CompilerServices.Unsafe.xml │ │ ├── useSharedDesignerContext.txt │ │ └── version.txt │ ├── System.Security.AccessControl.5.0.0 │ │ ├── .signature.p7s │ │ ├── Icon.png │ │ ├── LICENSE.TXT │ │ ├── System.Security.AccessControl.5.0.0.nupkg │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ ├── lib │ │ │ ├── net46 │ │ │ │ └── System.Security.AccessControl.dll │ │ │ ├── net461 │ │ │ │ ├── System.Security.AccessControl.dll │ │ │ │ └── System.Security.AccessControl.xml │ │ │ ├── netstandard1.3 │ │ │ │ └── System.Security.AccessControl.dll │ │ │ ├── netstandard2.0 │ │ │ │ ├── System.Security.AccessControl.dll │ │ │ │ └── System.Security.AccessControl.xml │ │ │ └── uap10.0.16299 │ │ │ │ └── _._ │ │ ├── ref │ │ │ ├── net46 │ │ │ │ └── System.Security.AccessControl.dll │ │ │ ├── net461 │ │ │ │ ├── System.Security.AccessControl.dll │ │ │ │ └── System.Security.AccessControl.xml │ │ │ ├── netstandard1.3 │ │ │ │ ├── System.Security.AccessControl.dll │ │ │ │ ├── System.Security.AccessControl.xml │ │ │ │ ├── de │ │ │ │ │ └── System.Security.AccessControl.xml │ │ │ │ ├── es │ │ │ │ │ └── System.Security.AccessControl.xml │ │ │ │ ├── fr │ │ │ │ │ └── System.Security.AccessControl.xml │ │ │ │ ├── it │ │ │ │ │ └── System.Security.AccessControl.xml │ │ │ │ ├── ja │ │ │ │ │ └── System.Security.AccessControl.xml │ │ │ │ ├── ko │ │ │ │ │ └── System.Security.AccessControl.xml │ │ │ │ ├── ru │ │ │ │ │ └── System.Security.AccessControl.xml │ │ │ │ ├── zh-hans │ │ │ │ │ └── System.Security.AccessControl.xml │ │ │ │ └── zh-hant │ │ │ │ │ └── System.Security.AccessControl.xml │ │ │ ├── netstandard2.0 │ │ │ │ ├── System.Security.AccessControl.dll │ │ │ │ └── System.Security.AccessControl.xml │ │ │ └── uap10.0.16299 │ │ │ │ └── _._ │ │ ├── runtimes │ │ │ └── win │ │ │ │ └── lib │ │ │ │ ├── net46 │ │ │ │ └── System.Security.AccessControl.dll │ │ │ │ ├── net461 │ │ │ │ ├── System.Security.AccessControl.dll │ │ │ │ └── System.Security.AccessControl.xml │ │ │ │ ├── netcoreapp2.0 │ │ │ │ ├── System.Security.AccessControl.dll │ │ │ │ └── System.Security.AccessControl.xml │ │ │ │ ├── netstandard1.3 │ │ │ │ └── System.Security.AccessControl.dll │ │ │ │ └── uap10.0.16299 │ │ │ │ └── _._ │ │ ├── useSharedDesignerContext.txt │ │ └── version.txt │ ├── System.Security.Principal.Windows.5.0.0 │ │ ├── .signature.p7s │ │ ├── Icon.png │ │ ├── LICENSE.TXT │ │ ├── System.Security.Principal.Windows.5.0.0.nupkg │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ ├── lib │ │ │ ├── net46 │ │ │ │ └── System.Security.Principal.Windows.dll │ │ │ ├── net461 │ │ │ │ ├── System.Security.Principal.Windows.dll │ │ │ │ └── System.Security.Principal.Windows.xml │ │ │ ├── netstandard1.3 │ │ │ │ └── System.Security.Principal.Windows.dll │ │ │ ├── netstandard2.0 │ │ │ │ ├── System.Security.Principal.Windows.dll │ │ │ │ └── System.Security.Principal.Windows.xml │ │ │ └── uap10.0.16299 │ │ │ │ └── _._ │ │ ├── ref │ │ │ ├── net46 │ │ │ │ └── System.Security.Principal.Windows.dll │ │ │ ├── net461 │ │ │ │ ├── System.Security.Principal.Windows.dll │ │ │ │ └── System.Security.Principal.Windows.xml │ │ │ ├── netcoreapp3.0 │ │ │ │ ├── System.Security.Principal.Windows.dll │ │ │ │ └── System.Security.Principal.Windows.xml │ │ │ ├── netstandard1.3 │ │ │ │ ├── System.Security.Principal.Windows.dll │ │ │ │ ├── System.Security.Principal.Windows.xml │ │ │ │ ├── de │ │ │ │ │ └── System.Security.Principal.Windows.xml │ │ │ │ ├── es │ │ │ │ │ └── System.Security.Principal.Windows.xml │ │ │ │ ├── fr │ │ │ │ │ └── System.Security.Principal.Windows.xml │ │ │ │ ├── it │ │ │ │ │ └── System.Security.Principal.Windows.xml │ │ │ │ ├── ja │ │ │ │ │ └── System.Security.Principal.Windows.xml │ │ │ │ ├── ko │ │ │ │ │ └── System.Security.Principal.Windows.xml │ │ │ │ ├── ru │ │ │ │ │ └── System.Security.Principal.Windows.xml │ │ │ │ ├── zh-hans │ │ │ │ │ └── System.Security.Principal.Windows.xml │ │ │ │ └── zh-hant │ │ │ │ │ └── System.Security.Principal.Windows.xml │ │ │ ├── netstandard2.0 │ │ │ │ ├── System.Security.Principal.Windows.dll │ │ │ │ └── System.Security.Principal.Windows.xml │ │ │ └── uap10.0.16299 │ │ │ │ └── _._ │ │ ├── runtimes │ │ │ ├── unix │ │ │ │ └── lib │ │ │ │ │ ├── netcoreapp2.0 │ │ │ │ │ ├── System.Security.Principal.Windows.dll │ │ │ │ │ └── System.Security.Principal.Windows.xml │ │ │ │ │ └── netcoreapp2.1 │ │ │ │ │ ├── System.Security.Principal.Windows.dll │ │ │ │ │ └── System.Security.Principal.Windows.xml │ │ │ └── win │ │ │ │ └── lib │ │ │ │ ├── net46 │ │ │ │ └── System.Security.Principal.Windows.dll │ │ │ │ ├── net461 │ │ │ │ ├── System.Security.Principal.Windows.dll │ │ │ │ └── System.Security.Principal.Windows.xml │ │ │ │ ├── netcoreapp2.0 │ │ │ │ ├── System.Security.Principal.Windows.dll │ │ │ │ └── System.Security.Principal.Windows.xml │ │ │ │ ├── netcoreapp2.1 │ │ │ │ ├── System.Security.Principal.Windows.dll │ │ │ │ └── System.Security.Principal.Windows.xml │ │ │ │ ├── netstandard1.3 │ │ │ │ └── System.Security.Principal.Windows.dll │ │ │ │ └── uap10.0.16299 │ │ │ │ └── _._ │ │ ├── useSharedDesignerContext.txt │ │ └── version.txt │ ├── System.Threading.Tasks.Extensions.4.5.4 │ │ ├── .signature.p7s │ │ ├── LICENSE.TXT │ │ ├── System.Threading.Tasks.Extensions.4.5.4.nupkg │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ ├── lib │ │ │ ├── MonoAndroid10 │ │ │ │ └── _._ │ │ │ ├── MonoTouch10 │ │ │ │ └── _._ │ │ │ ├── net461 │ │ │ │ ├── System.Threading.Tasks.Extensions.dll │ │ │ │ └── System.Threading.Tasks.Extensions.xml │ │ │ ├── netcoreapp2.1 │ │ │ │ └── _._ │ │ │ ├── netstandard1.0 │ │ │ │ ├── System.Threading.Tasks.Extensions.dll │ │ │ │ └── System.Threading.Tasks.Extensions.xml │ │ │ ├── netstandard2.0 │ │ │ │ ├── System.Threading.Tasks.Extensions.dll │ │ │ │ └── System.Threading.Tasks.Extensions.xml │ │ │ ├── portable-net45+win8+wp8+wpa81 │ │ │ │ ├── System.Threading.Tasks.Extensions.dll │ │ │ │ └── System.Threading.Tasks.Extensions.xml │ │ │ ├── xamarinios10 │ │ │ │ └── _._ │ │ │ ├── xamarinmac20 │ │ │ │ └── _._ │ │ │ ├── xamarintvos10 │ │ │ │ └── _._ │ │ │ └── xamarinwatchos10 │ │ │ │ └── _._ │ │ ├── ref │ │ │ ├── MonoAndroid10 │ │ │ │ └── _._ │ │ │ ├── MonoTouch10 │ │ │ │ └── _._ │ │ │ ├── netcoreapp2.1 │ │ │ │ └── _._ │ │ │ ├── xamarinios10 │ │ │ │ └── _._ │ │ │ ├── xamarinmac20 │ │ │ │ └── _._ │ │ │ ├── xamarintvos10 │ │ │ │ └── _._ │ │ │ └── xamarinwatchos10 │ │ │ │ └── _._ │ │ ├── useSharedDesignerContext.txt │ │ └── version.txt │ ├── System.ValueTuple.4.5.0 │ │ ├── .signature.p7s │ │ ├── LICENSE.TXT │ │ ├── System.ValueTuple.4.5.0.nupkg │ │ ├── THIRD-PARTY-NOTICES.TXT │ │ ├── lib │ │ │ ├── MonoAndroid10 │ │ │ │ └── _._ │ │ │ ├── MonoTouch10 │ │ │ │ └── _._ │ │ │ ├── net461 │ │ │ │ ├── System.ValueTuple.dll │ │ │ │ └── System.ValueTuple.xml │ │ │ ├── net47 │ │ │ │ ├── System.ValueTuple.dll │ │ │ │ └── System.ValueTuple.xml │ │ │ ├── netcoreapp2.0 │ │ │ │ └── _._ │ │ │ ├── netstandard1.0 │ │ │ │ ├── System.ValueTuple.dll │ │ │ │ └── System.ValueTuple.xml │ │ │ ├── netstandard2.0 │ │ │ │ └── _._ │ │ │ ├── portable-net40+sl4+win8+wp8 │ │ │ │ ├── System.ValueTuple.dll │ │ │ │ └── System.ValueTuple.xml │ │ │ ├── uap10.0.16299 │ │ │ │ └── _._ │ │ │ ├── xamarinios10 │ │ │ │ └── _._ │ │ │ ├── xamarinmac20 │ │ │ │ └── _._ │ │ │ ├── xamarintvos10 │ │ │ │ └── _._ │ │ │ └── xamarinwatchos10 │ │ │ │ └── _._ │ │ ├── ref │ │ │ ├── MonoAndroid10 │ │ │ │ └── _._ │ │ │ ├── MonoTouch10 │ │ │ │ └── _._ │ │ │ ├── net461 │ │ │ │ └── System.ValueTuple.dll │ │ │ ├── net47 │ │ │ │ └── System.ValueTuple.dll │ │ │ ├── netcoreapp2.0 │ │ │ │ └── _._ │ │ │ ├── netstandard2.0 │ │ │ │ └── _._ │ │ │ ├── portable-net40+sl4+win8+wp8 │ │ │ │ └── System.ValueTuple.dll │ │ │ ├── uap10.0.16299 │ │ │ │ └── _._ │ │ │ ├── xamarinios10 │ │ │ │ └── _._ │ │ │ ├── xamarinmac20 │ │ │ │ └── _._ │ │ │ ├── xamarintvos10 │ │ │ │ └── _._ │ │ │ └── xamarinwatchos10 │ │ │ │ └── _._ │ │ ├── useSharedDesignerContext.txt │ │ └── version.txt │ ├── protobuf-net.3.0.101 │ │ ├── .signature.p7s │ │ ├── lib │ │ │ ├── net461 │ │ │ │ ├── protobuf-net.dll │ │ │ │ └── protobuf-net.xml │ │ │ ├── net5.0 │ │ │ │ ├── protobuf-net.dll │ │ │ │ └── protobuf-net.xml │ │ │ ├── netcoreapp3.1 │ │ │ │ ├── protobuf-net.dll │ │ │ │ └── protobuf-net.xml │ │ │ ├── netstandard2.0 │ │ │ │ ├── protobuf-net.dll │ │ │ │ └── protobuf-net.xml │ │ │ └── netstandard2.1 │ │ │ │ ├── protobuf-net.dll │ │ │ │ └── protobuf-net.xml │ │ ├── protobuf-net.3.0.101.nupkg │ │ └── protobuf-net.png │ └── protobuf-net.Core.3.0.101 │ │ ├── .signature.p7s │ │ ├── lib │ │ ├── net461 │ │ │ ├── protobuf-net.Core.dll │ │ │ └── protobuf-net.Core.xml │ │ ├── net5.0 │ │ │ ├── protobuf-net.Core.dll │ │ │ └── protobuf-net.Core.xml │ │ ├── netcoreapp3.1 │ │ │ ├── protobuf-net.Core.dll │ │ │ └── protobuf-net.Core.xml │ │ ├── netstandard2.0 │ │ │ ├── protobuf-net.Core.dll │ │ │ └── protobuf-net.Core.xml │ │ └── netstandard2.1 │ │ │ ├── protobuf-net.Core.dll │ │ │ └── protobuf-net.Core.xml │ │ ├── protobuf-net.Core.3.0.101.nupkg │ │ └── protobuf-net.png └── project.sln ├── Source ├── .vs │ └── project │ │ └── project-colors.json ├── HourBoostr-Beta │ ├── App.config │ ├── Core │ │ ├── MultiBoostr │ │ │ ├── BoostrAccount.cs │ │ │ ├── Config.cs │ │ │ └── Instance.cs │ │ ├── ProgramArguments.cs │ │ ├── ProgramAssembly.cs │ │ ├── ProgramConfig.cs │ │ ├── SingleBoostr │ │ │ ├── Config.cs │ │ │ └── Instance.cs │ │ └── Utils.cs │ ├── Embedded │ │ ├── Assemblies │ │ │ ├── Bunifu.Licensing.dll │ │ │ ├── Bunifu.UI.WinForms.1.5.3.dll │ │ │ ├── Bunifu.UI.WinForms.BunifuButton.dll │ │ │ ├── Bunifu.UI.WinForms.BunifuDropdown.dll │ │ │ ├── Bunifu.UI.WinForms.BunifuGradientPanel.dll │ │ │ ├── Bunifu.UI.WinForms.BunifuImageButton.dll │ │ │ ├── Bunifu.UI.WinForms.BunifuLabel.dll │ │ │ ├── Bunifu.UI.WinForms.BunifuPages.dll │ │ │ ├── Bunifu.UI.WinForms.BunifuPanel.dll │ │ │ ├── Bunifu.UI.WinForms.BunifuPictureBox.dll │ │ │ ├── Bunifu.UI.WinForms.BunifuTextBox.dll │ │ │ └── Newtonsoft.Json.dll │ │ └── Resources │ │ │ ├── Icons │ │ │ ├── iconMultinew.ico │ │ │ └── iconSingleNew.ico │ │ │ ├── Images │ │ │ ├── Back-Hovered.png │ │ │ ├── Back.png │ │ │ ├── Background.png │ │ │ ├── Donate-Hovered.png │ │ │ ├── Donate.png │ │ │ ├── Exit-Hovered.png │ │ │ ├── Exit.png │ │ │ ├── Hourboostrbanner.png │ │ │ ├── IdleButton-Hovered.png │ │ │ ├── IdleButton.png │ │ │ ├── Min-Hovered.png │ │ │ ├── Min.png │ │ │ ├── MultiBoostrSelection.png │ │ │ ├── OldImages │ │ │ │ ├── Back.png │ │ │ │ ├── IdleButton-Hovered.png │ │ │ │ ├── IdleButton.png │ │ │ │ ├── Min-Hovered.png │ │ │ │ ├── MultiBoostrSelectionOLD.png │ │ │ │ ├── SingleBoostrSelectionOLD.png │ │ │ │ ├── iconMulti.ico │ │ │ │ └── iconSingle.ico │ │ │ ├── Settings-Hovered.png │ │ │ ├── Settings.png │ │ │ ├── SingleBoostrSelection.png │ │ │ ├── SplashScreen.png │ │ │ ├── StartIdler.png │ │ │ ├── TradingCardsButton-Hovered.png │ │ │ ├── TradingCardsButton.png │ │ │ └── github-logo.png │ │ │ └── PSD │ │ │ ├── Back.psd │ │ │ ├── MultiBoostrSelection.psd │ │ │ ├── Single&Multy.psd │ │ │ ├── StartIdler.psd │ │ │ ├── TradingCardsButton-Hovered.psd │ │ │ └── icon.psd │ ├── HourBoostr-Beta.csproj │ ├── HourBoostr-Beta.csproj.user │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ ├── app.manifest │ │ └── licenses.licx │ ├── Ui │ │ ├── BoostrSelectionScreen.Designer.cs │ │ ├── BoostrSelectionScreen.cs │ │ ├── BoostrSelectionScreen.resx │ │ ├── MultiBoostr │ │ │ ├── MultiBoostr.Designer.cs │ │ │ ├── MultiBoostr.cs │ │ │ └── MultiBoostr.resx │ │ ├── SingleBoostr │ │ │ ├── GameLibrary.Designer.cs │ │ │ ├── GameLibrary.cs │ │ │ ├── GameLibrary.resx │ │ │ ├── SingleBoostr.Designer.cs │ │ │ ├── SingleBoostr.cs │ │ │ └── SingleBoostr.resx │ │ ├── SplashScreen.Designer.cs │ │ ├── SplashScreen.cs │ │ └── SplashScreen.resx │ ├── icon.ico │ ├── iconnew.ico │ └── packages.config ├── HourBoostr.Idler │ ├── App.config │ ├── Core │ │ ├── InteropHelp.cs │ │ ├── ProgramArguments.cs │ │ ├── ProgramAssembly.cs │ │ └── Utils.cs │ ├── Embedded │ │ └── Assemblies │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── System.Buffers.dll │ │ │ ├── System.Collections.Immutable.dll │ │ │ ├── System.Memory.dll │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ ├── System.Threading.Tasks.Extensions.dll │ │ │ └── System.ValueTuple.dll │ ├── HourBoostr.Idler.csproj │ ├── HourBoostr.Idler.csproj.user │ ├── Interfaces │ │ ├── ISteamApps.cs │ │ └── ISteamClient.cs │ ├── Objects │ │ └── SteamApp.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── VTables │ │ ├── ISteamAppsVTable.cs │ │ └── ISteamClientVTable.cs │ ├── icon.ico │ └── packages.config ├── build-beta │ ├── Bunifu.Licensing.dll │ ├── Bunifu.UI.WinForms.1.5.3.dll │ ├── Bunifu.UI.WinForms.BunifuButton.dll │ ├── Bunifu.UI.WinForms.BunifuCircleProgress.dll │ ├── Bunifu.UI.WinForms.BunifuDropdown.dll │ ├── Bunifu.UI.WinForms.BunifuGradientPanel.dll │ ├── Bunifu.UI.WinForms.BunifuImageButton.dll │ ├── Bunifu.UI.WinForms.BunifuLabel.dll │ ├── Bunifu.UI.WinForms.BunifuPages.dll │ ├── Bunifu.UI.WinForms.BunifuPanel.dll │ ├── Bunifu.UI.WinForms.BunifuPictureBox.dll │ ├── Bunifu.UI.WinForms.BunifuScrollBar.dll │ ├── Bunifu.UI.WinForms.BunifuTextBox.dll │ ├── HourBoostr-Beta.exe │ ├── HourBoostr-Beta.exe.config │ ├── HourBoostr.Idler.exe │ └── HourBoostr.Idler.exe.config └── project.sln ├── donation.json ├── gameList.xml └── version.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | github: [ Ni1kko ] 3 | custom: paypal.me/Ni1kko 4 | -------------------------------------------------------------------------------- /Bubbles.json: -------------------------------------------------------------------------------- 1 | { 2 | "bubbles": [ 3 | { 4 | "title": "Hello {STEAM_USER}!", 5 | "text": "Thanks for using {PROJECT_ONE_NAME}. Click here if you experience any issues and let us know.", 6 | "url": "{PROJECT_ISSUE_URL}", 7 | "id": 0 8 | } 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /InnoSetup/build/HourBoostr_Setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/InnoSetup/build/HourBoostr_Setup.exe -------------------------------------------------------------------------------- /InnoSetup/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/InnoSetup/icon.ico -------------------------------------------------------------------------------- /InnoSetup/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/InnoSetup/license.txt -------------------------------------------------------------------------------- /InnoSetup/postinstall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/InnoSetup/postinstall.txt -------------------------------------------------------------------------------- /InnoSetup/preinstall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/InnoSetup/preinstall.txt -------------------------------------------------------------------------------- /Source - OLD/HourBoostr.Settings/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Source - OLD/HourBoostr.Settings/Resources/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/HourBoostr.Settings/Resources/loading.gif -------------------------------------------------------------------------------- /Source - OLD/HourBoostr.Settings/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/HourBoostr.Settings/icon.ico -------------------------------------------------------------------------------- /Source - OLD/HourBoostr.Settings/media/Settings-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/HourBoostr.Settings/media/Settings-icon.png -------------------------------------------------------------------------------- /Source - OLD/HourBoostr.Settings/media/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/HourBoostr.Settings/media/icon.ico -------------------------------------------------------------------------------- /Source - OLD/HourBoostr.Settings/media/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/HourBoostr.Settings/media/icon.png -------------------------------------------------------------------------------- /Source - OLD/HourBoostr.Settings/media/icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/HourBoostr.Settings/media/icon.psd -------------------------------------------------------------------------------- /Source - OLD/HourBoostr.Settings/media/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/HourBoostr.Settings/media/loading.gif -------------------------------------------------------------------------------- /Source - OLD/HourBoostr/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/HourBoostr/Resources/icon.ico -------------------------------------------------------------------------------- /Source - OLD/HourBoostr/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/HourBoostr/icon.ico -------------------------------------------------------------------------------- /Source - OLD/HourBoostr/media/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/HourBoostr/media/icon.ico -------------------------------------------------------------------------------- /Source - OLD/HourBoostr/media/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/HourBoostr/media/icon.png -------------------------------------------------------------------------------- /Source - OLD/HourBoostr/media/icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/HourBoostr/media/icon.psd -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr.Core/Enums/LogLevel.cs: -------------------------------------------------------------------------------- 1 | namespace SingleBoostr.Core.Enums 2 | { 3 | public enum LogLevel 4 | { 5 | Debug, 6 | Info, 7 | Success, 8 | Warn, 9 | Text, 10 | Error 11 | } 12 | } -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr.Core/Enums/Messages.cs: -------------------------------------------------------------------------------- 1 | namespace SingleBoostr.Core.Enums 2 | { 3 | public enum Messages 4 | { 5 | EM_SETCUEBANNER = 0x1501 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr.Core/Enums/Session.cs: -------------------------------------------------------------------------------- 1 | namespace SingleBoostr.Core.Enums 2 | { 3 | public enum Session 4 | { 5 | None, Idle, Cards, CardsBatch 6 | } 7 | } -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr.Core/Enums/WindowPanel.cs: -------------------------------------------------------------------------------- 1 | namespace SingleBoostr.Core.Enums 2 | { 3 | public enum WindowPanel 4 | { 5 | Start, Loading, Tos, Idle, IdleStarted, Cards, CardsStarted 6 | } 7 | } -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr.Core/Objects/TradingCard.cs: -------------------------------------------------------------------------------- 1 | namespace SingleBoostr.Core.Objects 2 | { 3 | public class TradingCard 4 | { 5 | public double Minutesplayed { get; set; } 6 | public double Price { get; set; } 7 | public int Cardsremaining { get; set; } 8 | } 9 | } -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr.Game/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr.Game/icon.ico -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Enums/Session.cs: -------------------------------------------------------------------------------- 1 | namespace SingleBoostr.Enums 2 | { 3 | public enum Session 4 | { 5 | None, Idle, Cards, CardsBatch 6 | } 7 | } -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Enums/WindowPanel.cs: -------------------------------------------------------------------------------- 1 | namespace SingleBoostr.Enums 2 | { 3 | public enum WindowPanel 4 | { 5 | Start, Loading, Tos, Idle, IdleStarted, Cards, CardsStarted 6 | } 7 | } -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Idle.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Idle.psd -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/LoadL.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/LoadL.psd -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Active-Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Active-Selected.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Active.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Adobe After Effects Auto-Save/heart_anim auto-save 1.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Adobe After Effects Auto-Save/heart_anim auto-save 1.aep -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Back-Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Back-Selected.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Back.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Background.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Block-Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Block-Selected.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Block.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Button-Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Button-Selected.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Button-SelectedL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Button-SelectedL.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Button.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/ButtonL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/ButtonL.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Cards-Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Cards-Selected.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Cards.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Chat.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Donate-Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Donate-Selected.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Donate.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Exit-Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Exit-Selected.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Exit.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Icon-Transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Icon-Transparent.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Icon.ico -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Icon.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Idle-Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Idle-Selected.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Idle-SelectedL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Idle-SelectedL.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Idle.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/IdleL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/IdleL.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Load.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/LoadL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/LoadL.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Min-Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Min-Selected.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Min.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Settings-Selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Settings-Selected.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/Settings.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/animation.gif -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/animation_tmp10198: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/animation_tmp10198 -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/discord-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/discord-logo.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/don_bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/don_bitcoin.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/donate_bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/donate_bitcoin.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/donate_paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/donate_paypal.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/github-logo.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/header.jpg -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/heart_anim.aep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/heart_anim.aep -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/Media/steam-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/Media/steam-logo.png -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/UX.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/UX.psd -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/UXBackground.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/UXBackground.psd -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/UXIdle Hours Started.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/UXIdle Hours Started.psd -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/UXIdle Hours.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/UXIdle Hours.psd -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/UXLoading.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/UXLoading.psd -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/UXStart screen.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/UXStart screen.psd -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/UXTerms of Service.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/UXTerms of Service.psd -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/UXTrading Cards Started.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/UXTrading Cards Started.psd -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/UXTrading Cards.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/UXTrading Cards.psd -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Media/Interface/icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Media/Interface/icon.psd -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Objects/Applist.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace SingleBoostr.objects 4 | { 5 | public class Applist 6 | { 7 | public List apps { get; set; } 8 | } 9 | } -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Objects/Bubble.cs: -------------------------------------------------------------------------------- 1 | namespace SingleBoostr.objects 2 | { 3 | public class Bubble 4 | { 5 | public string title { get; set; } 6 | 7 | public string text { get; set; } 8 | 9 | public string url { get; set; } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Objects/ChatBubbles.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | 4 | namespace SingleBoostr.objects 5 | { 6 | public class ChatBubbles 7 | { 8 | public List bubbles { get; set; } = new List(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Objects/SteamApps.cs: -------------------------------------------------------------------------------- 1 | namespace SingleBoostr.objects 2 | { 3 | public class SteamApps 4 | { 5 | public Applist applist { get; set; } 6 | } 7 | } -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/Sound/storms.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/Sound/storms.wav -------------------------------------------------------------------------------- /Source - OLD/SingleBoostr/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/SingleBoostr/icon.ico -------------------------------------------------------------------------------- /Source - OLD/Steam4Intermediate/INodeBehavior.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Steam4Intermediate 4 | { 5 | interface INodeBehavior 6 | { 7 | void LinkNode( Generator generator ); 8 | 9 | string GetName(); 10 | string ResolveType( int depth, out INode type, out bool constness, out bool pointer ); 11 | 12 | void EmitCode( Generator generator, int depth, int ident ); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Source - OLD/Steam4Intermediate/Nodes/ArrayTypeNode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml; 3 | using Steam4Intermediate.NodeBehavior; 4 | 5 | namespace Steam4Intermediate.Nodes 6 | { 7 | class ArrayTypeNode : TypeLayerBehavior 8 | { 9 | public ArrayTypeNode(XmlAttributeCollection collection) 10 | : base(collection) 11 | { 12 | 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Source - OLD/Steam4Intermediate/Nodes/BaseNode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml; 3 | using Steam4Intermediate.NodeBehavior; 4 | 5 | namespace Steam4Intermediate.Nodes 6 | { 7 | class BaseNode : LinkBehavior 8 | { 9 | public BaseNode(XmlAttributeCollection collection) 10 | : base(collection) 11 | { 12 | 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Source - OLD/Steam4Intermediate/Nodes/CXXConstructorNode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml; 3 | using Steam4Intermediate.NodeBehavior; 4 | 5 | namespace Steam4Intermediate.Nodes 6 | { 7 | class CXXConstructorNode : LinkBehavior 8 | { 9 | public CXXConstructorNode(XmlAttributeCollection collection) 10 | : base(collection) 11 | { 12 | 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Source - OLD/Steam4Intermediate/Nodes/CXXDestructorNode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml; 3 | using Steam4Intermediate.NodeBehavior; 4 | 5 | namespace Steam4Intermediate.Nodes 6 | { 7 | class CXXDestructorNode : LinkBehavior 8 | { 9 | public CXXDestructorNode(XmlAttributeCollection collection) 10 | : base(collection) 11 | { 12 | 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Source - OLD/Steam4Intermediate/Nodes/CvQualifedTypeNode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml; 3 | using Steam4Intermediate.NodeBehavior; 4 | 5 | namespace Steam4Intermediate.Nodes 6 | { 7 | class CvQualifiedTypeNode : ConstIdentBehavior 8 | { 9 | public CvQualifiedTypeNode(XmlAttributeCollection collection) 10 | : base(collection) 11 | { 12 | 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Source - OLD/Steam4Intermediate/Nodes/ElaboratedType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml; 3 | using Steam4Intermediate.NodeBehavior; 4 | 5 | namespace Steam4Intermediate.Nodes 6 | { 7 | class ElaboratedTypeNode : LinkBehavior 8 | { 9 | public ElaboratedTypeNode(XmlAttributeCollection collection) 10 | : base(collection) 11 | { 12 | 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Source - OLD/Steam4Intermediate/Nodes/EnumConstantNode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml; 3 | using Steam4Intermediate.NodeBehavior; 4 | 5 | namespace Steam4Intermediate.Nodes 6 | { 7 | class EnumConstantNode : LinkBehavior 8 | { 9 | public EnumConstantNode(XmlAttributeCollection collection) 10 | : base(collection) 11 | { 12 | 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Source - OLD/Steam4Intermediate/Nodes/FieldNode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml; 3 | using Steam4Intermediate.NodeBehavior; 4 | 5 | namespace Steam4Intermediate.Nodes 6 | { 7 | class FieldNode : LinkBehavior 8 | { 9 | public FieldNode(XmlAttributeCollection collection) 10 | : base(collection) 11 | { 12 | 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Source - OLD/Steam4Intermediate/Nodes/FunctionNode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml; 3 | using Steam4Intermediate.NodeBehavior; 4 | 5 | namespace Steam4Intermediate.Nodes 6 | { 7 | class FunctionNode : LinkBehavior 8 | { 9 | public FunctionNode(XmlAttributeCollection collection) 10 | : base(collection) 11 | { 12 | 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Source - OLD/Steam4Intermediate/Nodes/FunctionTypeNode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml; 3 | using Steam4Intermediate.NodeBehavior; 4 | 5 | namespace Steam4Intermediate.Nodes 6 | { 7 | class FunctionTypeNode : FunctionLayerBehavior 8 | { 9 | public FunctionTypeNode(XmlAttributeCollection collection) 10 | : base(collection) 11 | { 12 | 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Source - OLD/Steam4Intermediate/Nodes/FundamentalTypeNode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml; 3 | using Steam4Intermediate.NodeBehavior; 4 | 5 | namespace Steam4Intermediate.Nodes 6 | { 7 | class FundamentalTypeNode : LinkBehavior 8 | { 9 | public FundamentalTypeNode(XmlAttributeCollection collection) 10 | : base(collection) 11 | { 12 | name = GetAttribute( "kind" ); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Source - OLD/Steam4Intermediate/Nodes/LinkageSpecNode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml; 3 | using Steam4Intermediate.NodeBehavior; 4 | 5 | namespace Steam4Intermediate.Nodes 6 | { 7 | class LinkageSpecNode : LinkBehavior 8 | { 9 | public LinkageSpecNode(XmlAttributeCollection collection) 10 | : base(collection) 11 | { 12 | 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Source - OLD/Steam4Intermediate/Nodes/ParmVarNode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml; 3 | using Steam4Intermediate.NodeBehavior; 4 | 5 | namespace Steam4Intermediate.Nodes 6 | { 7 | class ParmVarNode : LinkBehavior 8 | { 9 | public ParmVarNode(XmlAttributeCollection collection) 10 | : base(collection) 11 | { 12 | 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Source - OLD/Steam4Intermediate/Nodes/PointerTypeNode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml; 3 | using Steam4Intermediate.NodeBehavior; 4 | 5 | namespace Steam4Intermediate.Nodes 6 | { 7 | class PointerTypeNode : PointerLayerBehavior 8 | { 9 | public PointerTypeNode(XmlAttributeCollection collection) 10 | : base(collection) 11 | { 12 | 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Source - OLD/Steam4Intermediate/Nodes/RecordNode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml; 3 | using Steam4Intermediate.NodeBehavior; 4 | 5 | namespace Steam4Intermediate.Nodes 6 | { 7 | class RecordNode : LinkBehavior 8 | { 9 | public RecordNode(XmlAttributeCollection collection) 10 | : base(collection) 11 | { 12 | 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Source - OLD/Steam4Intermediate/Nodes/ReferenceType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml; 3 | using Steam4Intermediate.NodeBehavior; 4 | 5 | namespace Steam4Intermediate.Nodes 6 | { 7 | class ReferenceTypeNode : LinkBehavior 8 | { 9 | public ReferenceTypeNode(XmlAttributeCollection collection) 10 | : base(collection) 11 | { 12 | 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Source - OLD/Steam4Intermediate/Nodes/TemplateNode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml; 3 | using Steam4Intermediate.NodeBehavior; 4 | 5 | namespace Steam4Intermediate.Nodes 6 | { 7 | class TemplateNode : LinkBehavior 8 | { 9 | public TemplateNode(XmlAttributeCollection collection) 10 | : base(collection) 11 | { 12 | 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Source - OLD/Steam4Intermediate/Nodes/TranslationUnitNode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml; 3 | using Steam4Intermediate.NodeBehavior; 4 | 5 | namespace Steam4Intermediate.Nodes 6 | { 7 | class TranslationUnitNode : INode 8 | { 9 | public TranslationUnitNode(XmlAttributeCollection collection) 10 | : base(collection) 11 | { 12 | 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Source - OLD/Steam4Intermediate/Nodes/TypedefNode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml; 3 | using Steam4Intermediate.NodeBehavior; 4 | 5 | namespace Steam4Intermediate.Nodes 6 | { 7 | class TypedefNode : LinkBehavior //TypeLayerBehavior 8 | { 9 | public TypedefNode(XmlAttributeCollection collection) 10 | : base(collection) 11 | { 12 | 13 | } 14 | 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Source - OLD/Steam4Intermediate/Nodes/VarNode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Xml; 3 | using Steam4Intermediate.NodeBehavior; 4 | 5 | namespace Steam4Intermediate.Nodes 6 | { 7 | class VarNode : LinkBehavior 8 | { 9 | public VarNode(XmlAttributeCollection collection) 10 | : base(collection) 11 | { 12 | 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Source - OLD/Steam4NET/autogen/ClientCommon.cs: -------------------------------------------------------------------------------- 1 | // This file is automatically generated. 2 | using System; 3 | using System.Text; 4 | using System.Runtime.InteropServices; 5 | 6 | namespace Steam4NET 7 | { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /Source - OLD/Steam4NET/autogen/ESteamBufferMethod.cs: -------------------------------------------------------------------------------- 1 | // This file is automatically generated. 2 | using System; 3 | using System.Text; 4 | using System.Runtime.InteropServices; 5 | 6 | namespace Steam4NET 7 | { 8 | 9 | public enum ESteamBufferMethod : int 10 | { 11 | eSteamBufferMethodFBF = 0, 12 | eSteamBufferMethodNBF = 1, 13 | }; 14 | 15 | } 16 | -------------------------------------------------------------------------------- /Source - OLD/Steam4NET/autogen/ESteamFindFilter.cs: -------------------------------------------------------------------------------- 1 | // This file is automatically generated. 2 | using System; 3 | using System.Text; 4 | using System.Runtime.InteropServices; 5 | 6 | namespace Steam4NET 7 | { 8 | 9 | public enum ESteamFindFilter : int 10 | { 11 | eSteamFindLocalOnly = 0, 12 | eSteamFindRemoteOnly = 1, 13 | eSteamFindAll = 2, 14 | }; 15 | 16 | } 17 | -------------------------------------------------------------------------------- /Source - OLD/Steam4NET/autogen/ESteamPaymentCardType.cs: -------------------------------------------------------------------------------- 1 | // This file is automatically generated. 2 | using System; 3 | using System.Text; 4 | using System.Runtime.InteropServices; 5 | 6 | namespace Steam4NET 7 | { 8 | 9 | public enum ESteamPaymentCardType : int 10 | { 11 | eVisa = 1, 12 | eMaster = 2, 13 | eAmericanExpress = 3, 14 | eDiscover = 4, 15 | eDinnersClub = 5, 16 | eJCB = 6, 17 | }; 18 | 19 | } 20 | -------------------------------------------------------------------------------- /Source - OLD/Steam4NET/autogen/ESteamSeekMethod.cs: -------------------------------------------------------------------------------- 1 | // This file is automatically generated. 2 | using System; 3 | using System.Text; 4 | using System.Runtime.InteropServices; 5 | 6 | namespace Steam4NET 7 | { 8 | 9 | public enum ESteamSeekMethod : int 10 | { 11 | eSteamSeekMethodSet = 0, 12 | eSteamSeekMethodCur = 1, 13 | eSteamSeekMethodEnd = 2, 14 | }; 15 | 16 | } 17 | -------------------------------------------------------------------------------- /Source - OLD/Steam4NET/autogen/MusicCommon.cs: -------------------------------------------------------------------------------- 1 | // This file is automatically generated. 2 | using System; 3 | using System.Text; 4 | using System.Runtime.InteropServices; 5 | 6 | namespace Steam4NET 7 | { 8 | 9 | public enum AudioPlayback_Status : int 10 | { 11 | AudioPlayback_Undefined = 0, 12 | AudioPlayback_Playing = 1, 13 | AudioPlayback_Paused = 2, 14 | AudioPlayback_Idle = 3, 15 | }; 16 | 17 | } 18 | -------------------------------------------------------------------------------- /Source - OLD/Steam4NET/autogen/SteamSalt.cs: -------------------------------------------------------------------------------- 1 | // This file is automatically generated. 2 | using System; 3 | using System.Text; 4 | using System.Runtime.InteropServices; 5 | 6 | namespace Steam4NET 7 | { 8 | 9 | [StructLayout(LayoutKind.Sequential,Pack=8)] 10 | public struct SteamSalt 11 | { 12 | [MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)] 13 | public Byte[] uchSalt; 14 | }; 15 | 16 | } 17 | -------------------------------------------------------------------------------- /Source - OLD/Steam4NET/autogen/Steamclient.cs: -------------------------------------------------------------------------------- 1 | // This file is automatically generated. 2 | using System; 3 | using System.Text; 4 | using System.Runtime.InteropServices; 5 | 6 | namespace Steam4NET 7 | { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /Source - OLD/Steam4NET/autogen/StreamLauncherCommon.cs: -------------------------------------------------------------------------------- 1 | // This file is automatically generated. 2 | using System; 3 | using System.Text; 4 | using System.Runtime.InteropServices; 5 | 6 | namespace Steam4NET 7 | { 8 | 9 | public enum EStreamLauncherResult : int 10 | { 11 | }; 12 | 13 | } 14 | -------------------------------------------------------------------------------- /Source - OLD/Steam4NET/autogen/TSteamGlobalUserID.cs: -------------------------------------------------------------------------------- 1 | // This file is automatically generated. 2 | using System; 3 | using System.Text; 4 | using System.Runtime.InteropServices; 5 | 6 | namespace Steam4NET 7 | { 8 | 9 | [StructLayout(LayoutKind.Sequential,Pack=8)] 10 | public struct TSteamGlobalUserID 11 | { 12 | public UInt16 m_SteamInstanceID; 13 | }; 14 | 15 | } 16 | -------------------------------------------------------------------------------- /Source - OLD/Steam4NET/autogen/TSteamOfflineStatus.cs: -------------------------------------------------------------------------------- 1 | // This file is automatically generated. 2 | using System; 3 | using System.Text; 4 | using System.Runtime.InteropServices; 5 | 6 | namespace Steam4NET 7 | { 8 | 9 | [StructLayout(LayoutKind.Sequential,Pack=8)] 10 | public struct TSteamOfflineStatus 11 | { 12 | public Int32 eOfflineNow; 13 | public Int32 eOfflineNextSession; 14 | }; 15 | 16 | } 17 | -------------------------------------------------------------------------------- /Source - OLD/Steam4NET/autogen/TSteamSplitLocalUserID.cs: -------------------------------------------------------------------------------- 1 | // This file is automatically generated. 2 | using System; 3 | using System.Text; 4 | using System.Runtime.InteropServices; 5 | 6 | namespace Steam4NET 7 | { 8 | 9 | [StructLayout(LayoutKind.Sequential,Pack=8)] 10 | public struct TSteamSplitLocalUserID 11 | { 12 | public UInt32 Low32bits; 13 | public UInt32 High32bits; 14 | }; 15 | 16 | } 17 | -------------------------------------------------------------------------------- /Source - OLD/Steam4NET/autogen/TSteamSubscriptionBillingInfo.cs: -------------------------------------------------------------------------------- 1 | // This file is automatically generated. 2 | using System; 3 | using System.Text; 4 | using System.Runtime.InteropServices; 5 | 6 | namespace Steam4NET 7 | { 8 | 9 | [StructLayout(LayoutKind.Sequential,Pack=8)] 10 | public struct TSteamSubscriptionBillingInfo 11 | { 12 | public ESteamSubscriptionBillingInfoType eBillingInfoType; 13 | }; 14 | 15 | } 16 | -------------------------------------------------------------------------------- /Source - OLD/Steam4NET/autogen/TSteamSubscriptionStats.cs: -------------------------------------------------------------------------------- 1 | // This file is automatically generated. 2 | using System; 3 | using System.Text; 4 | using System.Runtime.InteropServices; 5 | 6 | namespace Steam4NET 7 | { 8 | 9 | [StructLayout(LayoutKind.Sequential,Pack=8)] 10 | public struct TSteamSubscriptionStats 11 | { 12 | public UInt32 uNumSubscriptions; 13 | public UInt32 uMaxNameChars; 14 | public UInt32 uMaxApps; 15 | }; 16 | 17 | } 18 | -------------------------------------------------------------------------------- /Source - OLD/Steam4NET/autogen/TSteamUpdateStats.cs: -------------------------------------------------------------------------------- 1 | // This file is automatically generated. 2 | using System; 3 | using System.Text; 4 | using System.Runtime.InteropServices; 5 | 6 | namespace Steam4NET 7 | { 8 | 9 | [StructLayout(LayoutKind.Sequential,Pack=8)] 10 | public struct TSteamUpdateStats 11 | { 12 | public UInt64 uBytesTotal; 13 | public UInt64 uBytesPresent; 14 | }; 15 | 16 | } 17 | -------------------------------------------------------------------------------- /Source - OLD/Steam4NET/autogen/servernetadr.cs: -------------------------------------------------------------------------------- 1 | // This file is automatically generated. 2 | using System; 3 | using System.Text; 4 | using System.Runtime.InteropServices; 5 | 6 | namespace Steam4NET 7 | { 8 | 9 | [StructLayout(LayoutKind.Sequential,Pack=8)] 10 | public struct servernetadr_t 11 | { 12 | public UInt16 m_usConnectionPort; 13 | public UInt16 m_usQueryPort; 14 | public UInt32 m_unIP; 15 | }; 16 | 17 | } 18 | -------------------------------------------------------------------------------- /Source - OLD/Steam4Test/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Source - OLD/build/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/AutoMapper.dll -------------------------------------------------------------------------------- /Source - OLD/build/HourBoostr.Settings.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/HourBoostr.Settings.exe -------------------------------------------------------------------------------- /Source - OLD/build/HourBoostr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/HourBoostr.exe -------------------------------------------------------------------------------- /Source - OLD/build/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /Source - OLD/build/MetroFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/MetroFramework.dll -------------------------------------------------------------------------------- /Source - OLD/build/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /Source - OLD/build/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /Source - OLD/build/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /Source - OLD/build/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /Source - OLD/build/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Source - OLD/build/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /Source - OLD/build/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Source - OLD/build/Nito.AsyncEx.Context.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/Nito.AsyncEx.Context.dll -------------------------------------------------------------------------------- /Source - OLD/build/Nito.AsyncEx.Coordination.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/Nito.AsyncEx.Coordination.dll -------------------------------------------------------------------------------- /Source - OLD/build/Nito.AsyncEx.Interop.WaitHandles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/Nito.AsyncEx.Interop.WaitHandles.dll -------------------------------------------------------------------------------- /Source - OLD/build/Nito.AsyncEx.Oop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/Nito.AsyncEx.Oop.dll -------------------------------------------------------------------------------- /Source - OLD/build/Nito.AsyncEx.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/Nito.AsyncEx.Tasks.dll -------------------------------------------------------------------------------- /Source - OLD/build/Nito.Cancellation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/Nito.Cancellation.dll -------------------------------------------------------------------------------- /Source - OLD/build/Nito.Collections.Deque.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/Nito.Collections.Deque.dll -------------------------------------------------------------------------------- /Source - OLD/build/Nito.Disposables.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/Nito.Disposables.dll -------------------------------------------------------------------------------- /Source - OLD/build/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/RestSharp.dll -------------------------------------------------------------------------------- /Source - OLD/build/SingleBoostr.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/SingleBoostr.Core.dll -------------------------------------------------------------------------------- /Source - OLD/build/SingleBoostr.Game.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/SingleBoostr.Game.exe -------------------------------------------------------------------------------- /Source - OLD/build/SingleBoostr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/SingleBoostr.exe -------------------------------------------------------------------------------- /Source - OLD/build/Steam.Models.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/Steam.Models.dll -------------------------------------------------------------------------------- /Source - OLD/build/Steam4NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/Steam4NET.dll -------------------------------------------------------------------------------- /Source - OLD/build/SteamKit2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/SteamKit2.dll -------------------------------------------------------------------------------- /Source - OLD/build/SteamWebAPI2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/SteamWebAPI2.dll -------------------------------------------------------------------------------- /Source - OLD/build/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/System.Buffers.dll -------------------------------------------------------------------------------- /Source - OLD/build/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /Source - OLD/build/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/System.Memory.dll -------------------------------------------------------------------------------- /Source - OLD/build/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /Source - OLD/build/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /Source - OLD/build/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Source - OLD/build/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Source - OLD/build/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /Source - OLD/build/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/System.ValueTuple.dll -------------------------------------------------------------------------------- /Source - OLD/build/protobuf-net.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/protobuf-net.Core.dll -------------------------------------------------------------------------------- /Source - OLD/build/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/build/protobuf-net.dll -------------------------------------------------------------------------------- /Source - OLD/packages/AutoMapper.7.0.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/AutoMapper.7.0.1/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/AutoMapper.7.0.1/AutoMapper.7.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/AutoMapper.7.0.1/AutoMapper.7.0.1.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/AutoMapper.7.0.1/lib/net45/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/AutoMapper.7.0.1/lib/net45/AutoMapper.dll -------------------------------------------------------------------------------- /Source - OLD/packages/AutoMapper.7.0.1/lib/netcoreapp2.0/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/AutoMapper.7.0.1/lib/netcoreapp2.0/AutoMapper.dll -------------------------------------------------------------------------------- /Source - OLD/packages/AutoMapper.7.0.1/lib/netstandard1.3/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/AutoMapper.7.0.1/lib/netstandard1.3/AutoMapper.dll -------------------------------------------------------------------------------- /Source - OLD/packages/AutoMapper.7.0.1/lib/netstandard2.0/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/AutoMapper.7.0.1/lib/netstandard2.0/AutoMapper.dll -------------------------------------------------------------------------------- /Source - OLD/packages/HtmlAgilityPack.1.11.37/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/HtmlAgilityPack.1.11.37/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/HtmlAgilityPack.1.11.37/HtmlAgilityPack.1.11.37.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/HtmlAgilityPack.1.11.37/HtmlAgilityPack.1.11.37.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/HtmlAgilityPack.1.11.37/lib/Net35/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/HtmlAgilityPack.1.11.37/lib/Net35/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /Source - OLD/packages/HtmlAgilityPack.1.11.37/lib/Net40-client/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/HtmlAgilityPack.1.11.37/lib/Net40-client/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /Source - OLD/packages/HtmlAgilityPack.1.11.37/lib/Net40/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/HtmlAgilityPack.1.11.37/lib/Net40/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /Source - OLD/packages/HtmlAgilityPack.1.11.37/lib/Net45/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/HtmlAgilityPack.1.11.37/lib/Net45/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /Source - OLD/packages/HtmlAgilityPack.1.11.37/lib/NetCore45/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/HtmlAgilityPack.1.11.37/lib/NetCore45/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /Source - OLD/packages/HtmlAgilityPack.1.11.37/lib/netstandard1.3/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/HtmlAgilityPack.1.11.37/lib/netstandard1.3/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /Source - OLD/packages/HtmlAgilityPack.1.11.37/lib/netstandard1.6/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/HtmlAgilityPack.1.11.37/lib/netstandard1.6/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /Source - OLD/packages/HtmlAgilityPack.1.11.37/lib/netstandard2.0/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/HtmlAgilityPack.1.11.37/lib/netstandard2.0/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /Source - OLD/packages/HtmlAgilityPack.1.11.37/lib/portable-net45+netcore45+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/HtmlAgilityPack.1.11.37/lib/portable-net45+netcore45+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /Source - OLD/packages/HtmlAgilityPack.1.11.37/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/HtmlAgilityPack.1.11.37/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /Source - OLD/packages/HtmlAgilityPack.1.11.37/lib/uap10.0/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/HtmlAgilityPack.1.11.37/lib/uap10.0/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /Source - OLD/packages/HtmlAgilityPack.1.11.37/lib/uap10.0/HtmlAgilityPack.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/HtmlAgilityPack.1.11.37/lib/uap10.0/HtmlAgilityPack.pri -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Bcl.AsyncInterfaces.5.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Bcl.AsyncInterfaces.5.0.0/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Bcl.AsyncInterfaces.5.0.0/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Bcl.AsyncInterfaces.5.0.0/Icon.png -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Bcl.AsyncInterfaces.5.0.0/Microsoft.Bcl.AsyncInterfaces.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Bcl.AsyncInterfaces.5.0.0/Microsoft.Bcl.AsyncInterfaces.5.0.0.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Bcl.AsyncInterfaces.5.0.0/lib/net461/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Bcl.AsyncInterfaces.5.0.0/lib/net461/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Bcl.AsyncInterfaces.5.0.0/lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Bcl.AsyncInterfaces.5.0.0/lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Bcl.AsyncInterfaces.5.0.0/lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Bcl.AsyncInterfaces.5.0.0/lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Bcl.AsyncInterfaces.5.0.0/lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.Bcl.AsyncInterfaces 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Bcl.AsyncInterfaces.5.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Bcl.AsyncInterfaces.5.0.0/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Bcl.AsyncInterfaces.5.0.0/version.txt: -------------------------------------------------------------------------------- 1 | cf258a14b70ad9069470a108f13765e0e5988f51 2 | -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.DependencyInjection.5.0.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.DependencyInjection.5.0.2/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.DependencyInjection.5.0.2/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.DependencyInjection.5.0.2/Icon.png -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.DependencyInjection.5.0.2/Microsoft.Extensions.DependencyInjection.5.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.DependencyInjection.5.0.2/Microsoft.Extensions.DependencyInjection.5.0.2.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.DependencyInjection.5.0.2/lib/net461/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.DependencyInjection.5.0.2/lib/net461/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.DependencyInjection.5.0.2/lib/net5.0/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.DependencyInjection.5.0.2/lib/net5.0/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.DependencyInjection.5.0.2/lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.DependencyInjection.5.0.2/lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.DependencyInjection.5.0.2/lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.DependencyInjection.5.0.2/lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.DependencyInjection.5.0.2/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.DependencyInjection.5.0.2/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.DependencyInjection.5.0.2/version.txt: -------------------------------------------------------------------------------- 1 | 35964c9215613d66a687ebcb2d7fcd9496390ee7 2 | -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.DependencyInjection.Abstractions.5.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.DependencyInjection.Abstractions.5.0.0/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.DependencyInjection.Abstractions.5.0.0/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.DependencyInjection.Abstractions.5.0.0/Icon.png -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.DependencyInjection.Abstractions.5.0.0/Microsoft.Extensions.DependencyInjection.Abstractions.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.DependencyInjection.Abstractions.5.0.0/Microsoft.Extensions.DependencyInjection.Abstractions.5.0.0.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.DependencyInjection.Abstractions.5.0.0/lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.DependencyInjection.Abstractions.5.0.0/lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.DependencyInjection.Abstractions.5.0.0/lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.DependencyInjection.Abstractions.5.0.0/lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.DependencyInjection.Abstractions.5.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.DependencyInjection.Abstractions.5.0.0/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.DependencyInjection.Abstractions.5.0.0/version.txt: -------------------------------------------------------------------------------- 1 | cf258a14b70ad9069470a108f13765e0e5988f51 2 | -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.Options.5.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.Options.5.0.0/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.Options.5.0.0/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.Options.5.0.0/Icon.png -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.Options.5.0.0/Microsoft.Extensions.Options.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.Options.5.0.0/Microsoft.Extensions.Options.5.0.0.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.Options.5.0.0/lib/net461/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.Options.5.0.0/lib/net461/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.Options.5.0.0/lib/net5.0/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.Options.5.0.0/lib/net5.0/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.Options.5.0.0/lib/netstandard2.0/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.Options.5.0.0/lib/netstandard2.0/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.Options.5.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.Options.5.0.0/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.Options.5.0.0/version.txt: -------------------------------------------------------------------------------- 1 | cf258a14b70ad9069470a108f13765e0e5988f51 2 | -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.Primitives.5.0.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.Primitives.5.0.1/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.Primitives.5.0.1/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.Primitives.5.0.1/Icon.png -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.Primitives.5.0.1/Microsoft.Extensions.Primitives.5.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.Primitives.5.0.1/Microsoft.Extensions.Primitives.5.0.1.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.Primitives.5.0.1/lib/net461/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.Primitives.5.0.1/lib/net461/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.Primitives.5.0.1/lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.Primitives.5.0.1/lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.Primitives.5.0.1/lib/netstandard2.0/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.Primitives.5.0.1/lib/netstandard2.0/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.Primitives.5.0.1/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Extensions.Primitives.5.0.1/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Extensions.Primitives.5.0.1/version.txt: -------------------------------------------------------------------------------- 1 | 2f740adc1457e8a28c1c072993b66f515977eb51 2 | -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/Icon.png -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/Microsoft.Win32.Registry.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/Microsoft.Win32.Registry.5.0.0.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/lib/net46/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/lib/net46/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/lib/net461/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/lib/net461/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/lib/netstandard1.3/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/lib/netstandard1.3/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/lib/netstandard2.0/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/lib/netstandard2.0/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/ref/net46/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/ref/net46/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/ref/net461/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/ref/net461/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/ref/netstandard1.3/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/ref/netstandard1.3/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/ref/netstandard2.0/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/ref/netstandard2.0/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/runtimes/win/lib/net46/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/runtimes/win/lib/net46/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/runtimes/win/lib/net461/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/runtimes/win/lib/net461/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /Source - OLD/packages/Microsoft.Win32.Registry.5.0.0/version.txt: -------------------------------------------------------------------------------- 1 | cf258a14b70ad9069470a108f13765e0e5988f51 2 | -------------------------------------------------------------------------------- /Source - OLD/packages/Newtonsoft.Json.13.0.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Newtonsoft.Json.13.0.1/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/Newtonsoft.Json.13.0.1/Newtonsoft.Json.13.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Newtonsoft.Json.13.0.1/Newtonsoft.Json.13.0.1.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/Newtonsoft.Json.13.0.1/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Newtonsoft.Json.13.0.1/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Newtonsoft.Json.13.0.1/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Newtonsoft.Json.13.0.1/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Newtonsoft.Json.13.0.1/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Newtonsoft.Json.13.0.1/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Newtonsoft.Json.13.0.1/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Newtonsoft.Json.13.0.1/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Newtonsoft.Json.13.0.1/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Newtonsoft.Json.13.0.1/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Newtonsoft.Json.13.0.1/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Newtonsoft.Json.13.0.1/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Newtonsoft.Json.13.0.1/lib/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Newtonsoft.Json.13.0.1/lib/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Newtonsoft.Json.13.0.1/packageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Newtonsoft.Json.13.0.1/packageIcon.png -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.5.1.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.5.1.2/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.5.1.2/Nito.AsyncEx.5.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.5.1.2/Nito.AsyncEx.5.1.2.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.5.1.2/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.5.1.2/icon.png -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Context.5.1.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Context.5.1.2/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Context.5.1.2/Nito.AsyncEx.Context.5.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Context.5.1.2/Nito.AsyncEx.Context.5.1.2.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Context.5.1.2/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Context.5.1.2/icon.png -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Context.5.1.2/lib/net461/Nito.AsyncEx.Context.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Context.5.1.2/lib/net461/Nito.AsyncEx.Context.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Context.5.1.2/lib/netstandard1.3/Nito.AsyncEx.Context.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Context.5.1.2/lib/netstandard1.3/Nito.AsyncEx.Context.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Context.5.1.2/lib/netstandard2.0/Nito.AsyncEx.Context.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Context.5.1.2/lib/netstandard2.0/Nito.AsyncEx.Context.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Coordination.5.1.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Coordination.5.1.2/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Coordination.5.1.2/Nito.AsyncEx.Coordination.5.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Coordination.5.1.2/Nito.AsyncEx.Coordination.5.1.2.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Coordination.5.1.2/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Coordination.5.1.2/icon.png -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Coordination.5.1.2/lib/net461/Nito.AsyncEx.Coordination.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Coordination.5.1.2/lib/net461/Nito.AsyncEx.Coordination.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Coordination.5.1.2/lib/netstandard1.3/Nito.AsyncEx.Coordination.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Coordination.5.1.2/lib/netstandard1.3/Nito.AsyncEx.Coordination.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Coordination.5.1.2/lib/netstandard2.0/Nito.AsyncEx.Coordination.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Coordination.5.1.2/lib/netstandard2.0/Nito.AsyncEx.Coordination.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Interop.WaitHandles.5.1.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Interop.WaitHandles.5.1.2/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Interop.WaitHandles.5.1.2/Nito.AsyncEx.Interop.WaitHandles.5.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Interop.WaitHandles.5.1.2/Nito.AsyncEx.Interop.WaitHandles.5.1.2.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Interop.WaitHandles.5.1.2/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Interop.WaitHandles.5.1.2/icon.png -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Interop.WaitHandles.5.1.2/lib/net461/Nito.AsyncEx.Interop.WaitHandles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Interop.WaitHandles.5.1.2/lib/net461/Nito.AsyncEx.Interop.WaitHandles.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Interop.WaitHandles.5.1.2/lib/netstandard1.3/Nito.AsyncEx.Interop.WaitHandles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Interop.WaitHandles.5.1.2/lib/netstandard1.3/Nito.AsyncEx.Interop.WaitHandles.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Interop.WaitHandles.5.1.2/lib/netstandard2.0/Nito.AsyncEx.Interop.WaitHandles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Interop.WaitHandles.5.1.2/lib/netstandard2.0/Nito.AsyncEx.Interop.WaitHandles.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Oop.5.1.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Oop.5.1.2/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Oop.5.1.2/Nito.AsyncEx.Oop.5.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Oop.5.1.2/Nito.AsyncEx.Oop.5.1.2.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Oop.5.1.2/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Oop.5.1.2/icon.png -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Oop.5.1.2/lib/net461/Nito.AsyncEx.Oop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Oop.5.1.2/lib/net461/Nito.AsyncEx.Oop.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Oop.5.1.2/lib/netstandard1.3/Nito.AsyncEx.Oop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Oop.5.1.2/lib/netstandard1.3/Nito.AsyncEx.Oop.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Oop.5.1.2/lib/netstandard2.0/Nito.AsyncEx.Oop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Oop.5.1.2/lib/netstandard2.0/Nito.AsyncEx.Oop.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Tasks.5.1.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Tasks.5.1.2/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Tasks.5.1.2/Nito.AsyncEx.Tasks.5.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Tasks.5.1.2/Nito.AsyncEx.Tasks.5.1.2.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Tasks.5.1.2/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Tasks.5.1.2/icon.png -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Tasks.5.1.2/lib/net461/Nito.AsyncEx.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Tasks.5.1.2/lib/net461/Nito.AsyncEx.Tasks.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Tasks.5.1.2/lib/netstandard1.3/Nito.AsyncEx.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Tasks.5.1.2/lib/netstandard1.3/Nito.AsyncEx.Tasks.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.AsyncEx.Tasks.5.1.2/lib/netstandard2.0/Nito.AsyncEx.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.AsyncEx.Tasks.5.1.2/lib/netstandard2.0/Nito.AsyncEx.Tasks.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.Cancellation.1.1.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.Cancellation.1.1.2/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.Cancellation.1.1.2/Nito.Cancellation.1.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.Cancellation.1.1.2/Nito.Cancellation.1.1.2.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.Cancellation.1.1.2/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.Cancellation.1.1.2/icon.png -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.Cancellation.1.1.2/lib/net461/Nito.Cancellation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.Cancellation.1.1.2/lib/net461/Nito.Cancellation.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.Cancellation.1.1.2/lib/netstandard1.0/Nito.Cancellation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.Cancellation.1.1.2/lib/netstandard1.0/Nito.Cancellation.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.Cancellation.1.1.2/lib/netstandard2.0/Nito.Cancellation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.Cancellation.1.1.2/lib/netstandard2.0/Nito.Cancellation.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.Collections.Deque.1.1.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.Collections.Deque.1.1.1/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.Collections.Deque.1.1.1/Nito.Collections.Deque.1.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.Collections.Deque.1.1.1/Nito.Collections.Deque.1.1.1.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.Collections.Deque.1.1.1/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.Collections.Deque.1.1.1/icon.png -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.Collections.Deque.1.1.1/lib/net461/Nito.Collections.Deque.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.Collections.Deque.1.1.1/lib/net461/Nito.Collections.Deque.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.Collections.Deque.1.1.1/lib/netstandard1.0/Nito.Collections.Deque.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.Collections.Deque.1.1.1/lib/netstandard1.0/Nito.Collections.Deque.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.Collections.Deque.1.1.1/lib/netstandard2.0/Nito.Collections.Deque.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.Collections.Deque.1.1.1/lib/netstandard2.0/Nito.Collections.Deque.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.Disposables.2.2.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.Disposables.2.2.1/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.Disposables.2.2.1/Nito.Disposables.2.2.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.Disposables.2.2.1/Nito.Disposables.2.2.1.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.Disposables.2.2.1/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.Disposables.2.2.1/icon.png -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.Disposables.2.2.1/lib/net461/Nito.Disposables.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.Disposables.2.2.1/lib/net461/Nito.Disposables.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.Disposables.2.2.1/lib/netstandard1.0/Nito.Disposables.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.Disposables.2.2.1/lib/netstandard1.0/Nito.Disposables.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.Disposables.2.2.1/lib/netstandard2.0/Nito.Disposables.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.Disposables.2.2.1/lib/netstandard2.0/Nito.Disposables.dll -------------------------------------------------------------------------------- /Source - OLD/packages/Nito.Disposables.2.2.1/lib/netstandard2.1/Nito.Disposables.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Nito.Disposables.2.2.1/lib/netstandard2.1/Nito.Disposables.dll -------------------------------------------------------------------------------- /Source - OLD/packages/RestSharp.106.12.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/RestSharp.106.12.0/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/RestSharp.106.12.0/RestSharp.106.12.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/RestSharp.106.12.0/RestSharp.106.12.0.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/RestSharp.106.12.0/lib/net452/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/RestSharp.106.12.0/lib/net452/RestSharp.dll -------------------------------------------------------------------------------- /Source - OLD/packages/RestSharp.106.12.0/lib/netstandard2.0/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/RestSharp.106.12.0/lib/netstandard2.0/RestSharp.dll -------------------------------------------------------------------------------- /Source - OLD/packages/RestSharp.106.12.0/restsharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/RestSharp.106.12.0/restsharp.png -------------------------------------------------------------------------------- /Source - OLD/packages/Steam.Models.3.0.10/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Steam.Models.3.0.10/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/Steam.Models.3.0.10/Steam.Models.3.0.10.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Steam.Models.3.0.10/Steam.Models.3.0.10.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/Steam.Models.3.0.10/lib/netstandard2.0/Steam.Models.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/Steam.Models.3.0.10/lib/netstandard2.0/Steam.Models.dll -------------------------------------------------------------------------------- /Source - OLD/packages/SteamKit2.2.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/SteamKit2.2.3.0/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/SteamKit2.2.3.0/3rd party.txt: -------------------------------------------------------------------------------- 1 | SteamKit2 makes use of the following libraries: 2 | 3 | protobuf-net by Marc Gravell (marc.gravell@gmail.com) licensed under Apache License 2.0 4 | License and source code available at https://github.com/mgravell/protobuf-net 5 | -------------------------------------------------------------------------------- /Source - OLD/packages/SteamKit2.2.3.0/SteamKit2.2.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/SteamKit2.2.3.0/SteamKit2.2.3.0.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/SteamKit2.2.3.0/lib/netstandard2.0/SteamKit2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/SteamKit2.2.3.0/lib/netstandard2.0/SteamKit2.dll -------------------------------------------------------------------------------- /Source - OLD/packages/SteamKit2.2.3.0/steamkit_logo_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/SteamKit2.2.3.0/steamkit_logo_128.png -------------------------------------------------------------------------------- /Source - OLD/packages/SteamWebAPI2.4.0.8/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/SteamWebAPI2.4.0.8/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/SteamWebAPI2.4.0.8/SteamWebAPI2.4.0.8.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/SteamWebAPI2.4.0.8/SteamWebAPI2.4.0.8.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/SteamWebAPI2.4.0.8/lib/netstandard2.0/SteamWebAPI2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/SteamWebAPI2.4.0.8/lib/netstandard2.0/SteamWebAPI2.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Buffers.4.5.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Buffers.4.5.1/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/System.Buffers.4.5.1/System.Buffers.4.5.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Buffers.4.5.1/System.Buffers.4.5.1.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/System.Buffers.4.5.1/lib/net461/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Buffers.4.5.1/lib/net461/System.Buffers.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Buffers.4.5.1/lib/netcoreapp2.0/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Buffers.4.5.1/lib/netcoreapp2.0/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Buffers.4.5.1/lib/netstandard1.1/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Buffers.4.5.1/lib/netstandard1.1/System.Buffers.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Buffers.4.5.1/lib/netstandard2.0/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Buffers.4.5.1/lib/netstandard2.0/System.Buffers.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Buffers.4.5.1/lib/uap10.0.16299/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Buffers.4.5.1/lib/uap10.0.16299/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Buffers.4.5.1/ref/net45/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Buffers.4.5.1/ref/net45/System.Buffers.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Buffers.4.5.1/ref/netcoreapp2.0/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Buffers.4.5.1/ref/netcoreapp2.0/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Buffers.4.5.1/ref/netstandard1.1/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Buffers.4.5.1/ref/netstandard1.1/System.Buffers.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Buffers.4.5.1/ref/netstandard2.0/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Buffers.4.5.1/ref/netstandard2.0/System.Buffers.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Buffers.4.5.1/ref/uap10.0.16299/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Buffers.4.5.1/ref/uap10.0.16299/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Buffers.4.5.1/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Buffers.4.5.1/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /Source - OLD/packages/System.Buffers.4.5.1/version.txt: -------------------------------------------------------------------------------- 1 | 7601f4f6225089ffb291dc7d58293c7bbf5c5d4f 2 | -------------------------------------------------------------------------------- /Source - OLD/packages/System.Collections.Immutable.5.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Collections.Immutable.5.0.0/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/System.Collections.Immutable.5.0.0/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Collections.Immutable.5.0.0/Icon.png -------------------------------------------------------------------------------- /Source - OLD/packages/System.Collections.Immutable.5.0.0/System.Collections.Immutable.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Collections.Immutable.5.0.0/System.Collections.Immutable.5.0.0.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/System.Collections.Immutable.5.0.0/lib/net461/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Collections.Immutable.5.0.0/lib/net461/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Collections.Immutable.5.0.0/lib/netstandard1.0/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Collections.Immutable.5.0.0/lib/netstandard1.0/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Collections.Immutable.5.0.0/lib/netstandard1.3/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Collections.Immutable.5.0.0/lib/netstandard1.3/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Collections.Immutable.5.0.0/lib/netstandard2.0/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Collections.Immutable.5.0.0/lib/netstandard2.0/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Collections.Immutable.5.0.0/lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Collections.Immutable.5.0.0/lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Collections.Immutable.5.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Collections.Immutable.5.0.0/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /Source - OLD/packages/System.Collections.Immutable.5.0.0/version.txt: -------------------------------------------------------------------------------- 1 | cf258a14b70ad9069470a108f13765e0e5988f51 2 | -------------------------------------------------------------------------------- /Source - OLD/packages/System.Memory.4.5.4/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Memory.4.5.4/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/System.Memory.4.5.4/System.Memory.4.5.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Memory.4.5.4/System.Memory.4.5.4.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/System.Memory.4.5.4/lib/net461/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Memory.4.5.4/lib/net461/System.Memory.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Memory.4.5.4/lib/netcoreapp2.1/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Memory.4.5.4/lib/netcoreapp2.1/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Memory.4.5.4/lib/netstandard1.1/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Memory.4.5.4/lib/netstandard1.1/System.Memory.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Memory.4.5.4/lib/netstandard2.0/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Memory.4.5.4/lib/netstandard2.0/System.Memory.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Memory.4.5.4/ref/netcoreapp2.1/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Memory.4.5.4/ref/netcoreapp2.1/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Memory.4.5.4/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Memory.4.5.4/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /Source - OLD/packages/System.Memory.4.5.4/version.txt: -------------------------------------------------------------------------------- 1 | 7601f4f6225089ffb291dc7d58293c7bbf5c5d4f 2 | -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/System.Numerics.Vectors.4.5.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/System.Numerics.Vectors.4.5.0.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/lib/MonoAndroid10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/lib/MonoTouch10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/lib/net46/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/lib/net46/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/lib/netcoreapp2.0/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/lib/netcoreapp2.0/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/lib/netstandard1.0/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/lib/netstandard1.0/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/lib/netstandard2.0/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/lib/netstandard2.0/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/lib/uap10.0.16299/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/lib/uap10.0.16299/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/lib/xamarinios10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/lib/xamarinmac20/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/lib/xamarintvos10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/lib/xamarinwatchos10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/ref/MonoAndroid10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/ref/MonoTouch10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/ref/net45/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/ref/net45/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/ref/net46/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/ref/net46/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/ref/netcoreapp2.0/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/ref/netcoreapp2.0/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/ref/netstandard1.0/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/ref/netstandard1.0/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/ref/netstandard2.0/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/ref/netstandard2.0/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/ref/uap10.0.16299/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/ref/uap10.0.16299/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/ref/xamarinios10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/ref/xamarinmac20/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/ref/xamarintvos10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/ref/xamarinwatchos10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Numerics.Vectors.4.5.0/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /Source - OLD/packages/System.Numerics.Vectors.4.5.0/version.txt: -------------------------------------------------------------------------------- 1 | 30ab651fcb4354552bd4891619a0bdd81e0ebdbf 2 | -------------------------------------------------------------------------------- /Source - OLD/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/Icon.png -------------------------------------------------------------------------------- /Source - OLD/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/System.Runtime.CompilerServices.Unsafe.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/System.Runtime.CompilerServices.Unsafe.5.0.0.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/lib/net45/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/lib/net45/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/ref/net461/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/ref/net461/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /Source - OLD/packages/System.Runtime.CompilerServices.Unsafe.5.0.0/version.txt: -------------------------------------------------------------------------------- 1 | cf258a14b70ad9069470a108f13765e0e5988f51 2 | -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.AccessControl.5.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.AccessControl.5.0.0/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.AccessControl.5.0.0/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.AccessControl.5.0.0/Icon.png -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.AccessControl.5.0.0/System.Security.AccessControl.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.AccessControl.5.0.0/System.Security.AccessControl.5.0.0.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.AccessControl.5.0.0/lib/net46/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.AccessControl.5.0.0/lib/net46/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.AccessControl.5.0.0/lib/net461/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.AccessControl.5.0.0/lib/net461/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.AccessControl.5.0.0/lib/netstandard1.3/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.AccessControl.5.0.0/lib/netstandard1.3/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.AccessControl.5.0.0/lib/netstandard2.0/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.AccessControl.5.0.0/lib/netstandard2.0/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.AccessControl.5.0.0/lib/uap10.0.16299/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.AccessControl.5.0.0/lib/uap10.0.16299/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.AccessControl.5.0.0/ref/net46/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.AccessControl.5.0.0/ref/net46/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.AccessControl.5.0.0/ref/net461/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.AccessControl.5.0.0/ref/net461/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.AccessControl.5.0.0/ref/netstandard1.3/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.AccessControl.5.0.0/ref/netstandard1.3/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.AccessControl.5.0.0/ref/netstandard2.0/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.AccessControl.5.0.0/ref/netstandard2.0/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.AccessControl.5.0.0/ref/uap10.0.16299/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.AccessControl.5.0.0/ref/uap10.0.16299/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.AccessControl.5.0.0/runtimes/win/lib/net46/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.AccessControl.5.0.0/runtimes/win/lib/net46/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.AccessControl.5.0.0/runtimes/win/lib/net461/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.AccessControl.5.0.0/runtimes/win/lib/net461/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.AccessControl.5.0.0/runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.AccessControl.5.0.0/runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.AccessControl.5.0.0/runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.AccessControl.5.0.0/runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.AccessControl.5.0.0/runtimes/win/lib/uap10.0.16299/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.AccessControl.5.0.0/runtimes/win/lib/uap10.0.16299/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.AccessControl.5.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.AccessControl.5.0.0/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.AccessControl.5.0.0/version.txt: -------------------------------------------------------------------------------- 1 | cf258a14b70ad9069470a108f13765e0e5988f51 2 | -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.Principal.Windows.5.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.Principal.Windows.5.0.0/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.Principal.Windows.5.0.0/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.Principal.Windows.5.0.0/Icon.png -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.Principal.Windows.5.0.0/System.Security.Principal.Windows.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.Principal.Windows.5.0.0/System.Security.Principal.Windows.5.0.0.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.Principal.Windows.5.0.0/lib/net46/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.Principal.Windows.5.0.0/lib/net46/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.Principal.Windows.5.0.0/lib/net461/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.Principal.Windows.5.0.0/lib/net461/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.Principal.Windows.5.0.0/lib/netstandard1.3/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.Principal.Windows.5.0.0/lib/netstandard1.3/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.Principal.Windows.5.0.0/lib/netstandard2.0/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.Principal.Windows.5.0.0/lib/netstandard2.0/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.Principal.Windows.5.0.0/lib/uap10.0.16299/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.Principal.Windows.5.0.0/lib/uap10.0.16299/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.Principal.Windows.5.0.0/ref/net46/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.Principal.Windows.5.0.0/ref/net46/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.Principal.Windows.5.0.0/ref/net461/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.Principal.Windows.5.0.0/ref/net461/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.Principal.Windows.5.0.0/ref/netcoreapp3.0/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.Principal.Windows.5.0.0/ref/netcoreapp3.0/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.Principal.Windows.5.0.0/ref/netstandard1.3/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.Principal.Windows.5.0.0/ref/netstandard1.3/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.Principal.Windows.5.0.0/ref/netstandard2.0/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.Principal.Windows.5.0.0/ref/netstandard2.0/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.Principal.Windows.5.0.0/ref/uap10.0.16299/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.Principal.Windows.5.0.0/ref/uap10.0.16299/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.Principal.Windows.5.0.0/runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.Principal.Windows.5.0.0/runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.Principal.Windows.5.0.0/runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.Principal.Windows.5.0.0/runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.Principal.Windows.5.0.0/runtimes/win/lib/net46/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.Principal.Windows.5.0.0/runtimes/win/lib/net46/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.Principal.Windows.5.0.0/runtimes/win/lib/net461/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.Principal.Windows.5.0.0/runtimes/win/lib/net461/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.Principal.Windows.5.0.0/runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.Principal.Windows.5.0.0/runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.Principal.Windows.5.0.0/runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.Principal.Windows.5.0.0/runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.Principal.Windows.5.0.0/runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.Principal.Windows.5.0.0/runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.Principal.Windows.5.0.0/runtimes/win/lib/uap10.0.16299/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.Principal.Windows.5.0.0/runtimes/win/lib/uap10.0.16299/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.Principal.Windows.5.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Security.Principal.Windows.5.0.0/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /Source - OLD/packages/System.Security.Principal.Windows.5.0.0/version.txt: -------------------------------------------------------------------------------- 1 | cf258a14b70ad9069470a108f13765e0e5988f51 2 | -------------------------------------------------------------------------------- /Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/System.Threading.Tasks.Extensions.4.5.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/System.Threading.Tasks.Extensions.4.5.4.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/MonoAndroid10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/MonoTouch10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/net461/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/net461/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/netcoreapp2.1/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/netcoreapp2.1/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/netstandard1.0/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/netstandard1.0/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/netstandard2.0/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/netstandard2.0/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/xamarinios10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/xamarinios10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/xamarinmac20/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/xamarintvos10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/lib/xamarinwatchos10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/ref/MonoAndroid10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/ref/MonoTouch10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/ref/netcoreapp2.1/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/ref/netcoreapp2.1/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/ref/xamarinios10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/ref/xamarinios10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/ref/xamarinmac20/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/ref/xamarintvos10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/ref/xamarinwatchos10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /Source - OLD/packages/System.Threading.Tasks.Extensions.4.5.4/version.txt: -------------------------------------------------------------------------------- 1 | 7601f4f6225089ffb291dc7d58293c7bbf5c5d4f 2 | -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/System.ValueTuple.4.5.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/System.ValueTuple.4.5.0.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/lib/MonoAndroid10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/lib/MonoTouch10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/lib/net461/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/lib/net461/System.ValueTuple.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/lib/net47/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/lib/net47/System.ValueTuple.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/lib/net47/System.ValueTuple.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.ValueTuple 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/lib/netcoreapp2.0/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/lib/netcoreapp2.0/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/lib/netstandard1.0/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/lib/netstandard1.0/System.ValueTuple.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/lib/netstandard2.0/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/lib/netstandard2.0/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/lib/uap10.0.16299/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/lib/uap10.0.16299/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/lib/xamarinios10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/lib/xamarinmac20/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/lib/xamarintvos10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/lib/xamarinwatchos10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/ref/MonoAndroid10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/ref/MonoTouch10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/ref/net461/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/ref/net461/System.ValueTuple.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/ref/net47/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/ref/net47/System.ValueTuple.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/ref/netcoreapp2.0/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/ref/netcoreapp2.0/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/ref/netstandard2.0/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/ref/netstandard2.0/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/ref/uap10.0.16299/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/ref/uap10.0.16299/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/ref/xamarinios10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/ref/xamarinmac20/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/ref/xamarintvos10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/ref/xamarinwatchos10/_._ -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/System.ValueTuple.4.5.0/useSharedDesignerContext.txt -------------------------------------------------------------------------------- /Source - OLD/packages/System.ValueTuple.4.5.0/version.txt: -------------------------------------------------------------------------------- 1 | 30ab651fcb4354552bd4891619a0bdd81e0ebdbf 2 | -------------------------------------------------------------------------------- /Source - OLD/packages/protobuf-net.3.0.101/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/protobuf-net.3.0.101/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/protobuf-net.3.0.101/lib/net461/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/protobuf-net.3.0.101/lib/net461/protobuf-net.dll -------------------------------------------------------------------------------- /Source - OLD/packages/protobuf-net.3.0.101/lib/net5.0/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/protobuf-net.3.0.101/lib/net5.0/protobuf-net.dll -------------------------------------------------------------------------------- /Source - OLD/packages/protobuf-net.3.0.101/lib/netcoreapp3.1/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/protobuf-net.3.0.101/lib/netcoreapp3.1/protobuf-net.dll -------------------------------------------------------------------------------- /Source - OLD/packages/protobuf-net.3.0.101/lib/netstandard2.0/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/protobuf-net.3.0.101/lib/netstandard2.0/protobuf-net.dll -------------------------------------------------------------------------------- /Source - OLD/packages/protobuf-net.3.0.101/lib/netstandard2.1/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/protobuf-net.3.0.101/lib/netstandard2.1/protobuf-net.dll -------------------------------------------------------------------------------- /Source - OLD/packages/protobuf-net.3.0.101/protobuf-net.3.0.101.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/protobuf-net.3.0.101/protobuf-net.3.0.101.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/protobuf-net.3.0.101/protobuf-net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/protobuf-net.3.0.101/protobuf-net.png -------------------------------------------------------------------------------- /Source - OLD/packages/protobuf-net.Core.3.0.101/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/protobuf-net.Core.3.0.101/.signature.p7s -------------------------------------------------------------------------------- /Source - OLD/packages/protobuf-net.Core.3.0.101/lib/net461/protobuf-net.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/protobuf-net.Core.3.0.101/lib/net461/protobuf-net.Core.dll -------------------------------------------------------------------------------- /Source - OLD/packages/protobuf-net.Core.3.0.101/lib/net5.0/protobuf-net.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/protobuf-net.Core.3.0.101/lib/net5.0/protobuf-net.Core.dll -------------------------------------------------------------------------------- /Source - OLD/packages/protobuf-net.Core.3.0.101/lib/netcoreapp3.1/protobuf-net.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/protobuf-net.Core.3.0.101/lib/netcoreapp3.1/protobuf-net.Core.dll -------------------------------------------------------------------------------- /Source - OLD/packages/protobuf-net.Core.3.0.101/lib/netstandard2.0/protobuf-net.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/protobuf-net.Core.3.0.101/lib/netstandard2.0/protobuf-net.Core.dll -------------------------------------------------------------------------------- /Source - OLD/packages/protobuf-net.Core.3.0.101/lib/netstandard2.1/protobuf-net.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/protobuf-net.Core.3.0.101/lib/netstandard2.1/protobuf-net.Core.dll -------------------------------------------------------------------------------- /Source - OLD/packages/protobuf-net.Core.3.0.101/protobuf-net.Core.3.0.101.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/protobuf-net.Core.3.0.101/protobuf-net.Core.3.0.101.nupkg -------------------------------------------------------------------------------- /Source - OLD/packages/protobuf-net.Core.3.0.101/protobuf-net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source - OLD/packages/protobuf-net.Core.3.0.101/protobuf-net.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Core/MultiBoostr/Instance.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace HourBoostr_Beta.Core.MultiBoostr 4 | { 5 | internal class Instance 6 | { 7 | internal int processID { get; init; } //property is Immutable and cannot be changed once object is created 8 | internal Instance(List accounts) 9 | { 10 | 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Core/ProgramConfig.cs: -------------------------------------------------------------------------------- 1 | namespace HourBoostr_Beta.Core 2 | { 3 | internal class ProgramConfig 4 | { 5 | internal ProgramConfig() 6 | { 7 | 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Core/SingleBoostr/Config.cs: -------------------------------------------------------------------------------- 1 | namespace HourBoostr_Beta.Core.SingleBoostr 2 | { 3 | internal class Config 4 | { 5 | internal Config() 6 | { 7 | 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Core/SingleBoostr/Instance.cs: -------------------------------------------------------------------------------- 1 | namespace HourBoostr_Beta.Core.SingleBoostr 2 | { 3 | internal class Instance 4 | { 5 | internal Instance() 6 | { 7 | 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Core/Utils.cs: -------------------------------------------------------------------------------- 1 | namespace HourBoostr_Beta.Core 2 | { 3 | internal class Utils 4 | { 5 | } 6 | } 7 | 8 | //Workaround: compiler throws error (Predefined type 'System.Runtime.CompilerServices.IsExternalInit' is not defined or imported) 9 | //because we're compiling .NET 5 features in .NET Framework 10 | namespace System.Runtime.CompilerServices 11 | { 12 | internal static class IsExternalInit { } 13 | } -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Assemblies/Bunifu.Licensing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Assemblies/Bunifu.Licensing.dll -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Assemblies/Bunifu.UI.WinForms.1.5.3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Assemblies/Bunifu.UI.WinForms.1.5.3.dll -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Assemblies/Bunifu.UI.WinForms.BunifuButton.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Assemblies/Bunifu.UI.WinForms.BunifuButton.dll -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Assemblies/Bunifu.UI.WinForms.BunifuDropdown.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Assemblies/Bunifu.UI.WinForms.BunifuDropdown.dll -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Assemblies/Bunifu.UI.WinForms.BunifuGradientPanel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Assemblies/Bunifu.UI.WinForms.BunifuGradientPanel.dll -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Assemblies/Bunifu.UI.WinForms.BunifuImageButton.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Assemblies/Bunifu.UI.WinForms.BunifuImageButton.dll -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Assemblies/Bunifu.UI.WinForms.BunifuLabel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Assemblies/Bunifu.UI.WinForms.BunifuLabel.dll -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Assemblies/Bunifu.UI.WinForms.BunifuPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Assemblies/Bunifu.UI.WinForms.BunifuPages.dll -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Assemblies/Bunifu.UI.WinForms.BunifuPanel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Assemblies/Bunifu.UI.WinForms.BunifuPanel.dll -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Assemblies/Bunifu.UI.WinForms.BunifuPictureBox.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Assemblies/Bunifu.UI.WinForms.BunifuPictureBox.dll -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Assemblies/Bunifu.UI.WinForms.BunifuTextBox.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Assemblies/Bunifu.UI.WinForms.BunifuTextBox.dll -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Assemblies/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Assemblies/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Icons/iconMultinew.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Icons/iconMultinew.ico -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Icons/iconSingleNew.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Icons/iconSingleNew.ico -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/Back-Hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/Back-Hovered.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/Back.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/Background.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/Donate-Hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/Donate-Hovered.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/Donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/Donate.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/Exit-Hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/Exit-Hovered.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/Exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/Exit.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/Hourboostrbanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/Hourboostrbanner.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/IdleButton-Hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/IdleButton-Hovered.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/IdleButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/IdleButton.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/Min-Hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/Min-Hovered.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/Min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/Min.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/MultiBoostrSelection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/MultiBoostrSelection.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/OldImages/Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/OldImages/Back.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/OldImages/IdleButton-Hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/OldImages/IdleButton-Hovered.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/OldImages/IdleButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/OldImages/IdleButton.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/OldImages/Min-Hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/OldImages/Min-Hovered.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/OldImages/MultiBoostrSelectionOLD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/OldImages/MultiBoostrSelectionOLD.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/OldImages/SingleBoostrSelectionOLD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/OldImages/SingleBoostrSelectionOLD.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/OldImages/iconMulti.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/OldImages/iconMulti.ico -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/OldImages/iconSingle.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/OldImages/iconSingle.ico -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/Settings-Hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/Settings-Hovered.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/Settings.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/SingleBoostrSelection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/SingleBoostrSelection.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/SplashScreen.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/StartIdler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/StartIdler.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/TradingCardsButton-Hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/TradingCardsButton-Hovered.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/TradingCardsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/TradingCardsButton.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/Images/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/Images/github-logo.png -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/PSD/Back.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/PSD/Back.psd -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/PSD/MultiBoostrSelection.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/PSD/MultiBoostrSelection.psd -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/PSD/Single&Multy.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/PSD/Single&Multy.psd -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/PSD/StartIdler.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/PSD/StartIdler.psd -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/PSD/TradingCardsButton-Hovered.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/PSD/TradingCardsButton-Hovered.psd -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Embedded/Resources/PSD/icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/Embedded/Resources/PSD/icon.psd -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/icon.ico -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/iconnew.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr-Beta/iconnew.ico -------------------------------------------------------------------------------- /Source/HourBoostr-Beta/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Source/HourBoostr.Idler/Embedded/Assemblies/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr.Idler/Embedded/Assemblies/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Source/HourBoostr.Idler/Embedded/Assemblies/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr.Idler/Embedded/Assemblies/System.Buffers.dll -------------------------------------------------------------------------------- /Source/HourBoostr.Idler/Embedded/Assemblies/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr.Idler/Embedded/Assemblies/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /Source/HourBoostr.Idler/Embedded/Assemblies/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr.Idler/Embedded/Assemblies/System.Memory.dll -------------------------------------------------------------------------------- /Source/HourBoostr.Idler/Embedded/Assemblies/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr.Idler/Embedded/Assemblies/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /Source/HourBoostr.Idler/Embedded/Assemblies/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr.Idler/Embedded/Assemblies/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /Source/HourBoostr.Idler/Embedded/Assemblies/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr.Idler/Embedded/Assemblies/System.ValueTuple.dll -------------------------------------------------------------------------------- /Source/HourBoostr.Idler/VTables/ISteamAppsVTable.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Runtime.InteropServices; 3 | 4 | namespace HourBoostr.Idler.VTables 5 | { 6 | [StructLayout(LayoutKind.Sequential, Pack = 4)] 7 | public class ISteamAppsVTable 8 | { 9 | public IntPtr GetAppData; 10 | private IntPtr DTorISteamApps0011; 11 | }; 12 | } 13 | -------------------------------------------------------------------------------- /Source/HourBoostr.Idler/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/HourBoostr.Idler/icon.ico -------------------------------------------------------------------------------- /Source/build-beta/Bunifu.Licensing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/build-beta/Bunifu.Licensing.dll -------------------------------------------------------------------------------- /Source/build-beta/Bunifu.UI.WinForms.1.5.3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/build-beta/Bunifu.UI.WinForms.1.5.3.dll -------------------------------------------------------------------------------- /Source/build-beta/Bunifu.UI.WinForms.BunifuButton.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/build-beta/Bunifu.UI.WinForms.BunifuButton.dll -------------------------------------------------------------------------------- /Source/build-beta/Bunifu.UI.WinForms.BunifuCircleProgress.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/build-beta/Bunifu.UI.WinForms.BunifuCircleProgress.dll -------------------------------------------------------------------------------- /Source/build-beta/Bunifu.UI.WinForms.BunifuDropdown.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/build-beta/Bunifu.UI.WinForms.BunifuDropdown.dll -------------------------------------------------------------------------------- /Source/build-beta/Bunifu.UI.WinForms.BunifuGradientPanel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/build-beta/Bunifu.UI.WinForms.BunifuGradientPanel.dll -------------------------------------------------------------------------------- /Source/build-beta/Bunifu.UI.WinForms.BunifuImageButton.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/build-beta/Bunifu.UI.WinForms.BunifuImageButton.dll -------------------------------------------------------------------------------- /Source/build-beta/Bunifu.UI.WinForms.BunifuLabel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/build-beta/Bunifu.UI.WinForms.BunifuLabel.dll -------------------------------------------------------------------------------- /Source/build-beta/Bunifu.UI.WinForms.BunifuPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/build-beta/Bunifu.UI.WinForms.BunifuPages.dll -------------------------------------------------------------------------------- /Source/build-beta/Bunifu.UI.WinForms.BunifuPanel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/build-beta/Bunifu.UI.WinForms.BunifuPanel.dll -------------------------------------------------------------------------------- /Source/build-beta/Bunifu.UI.WinForms.BunifuPictureBox.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/build-beta/Bunifu.UI.WinForms.BunifuPictureBox.dll -------------------------------------------------------------------------------- /Source/build-beta/Bunifu.UI.WinForms.BunifuScrollBar.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/build-beta/Bunifu.UI.WinForms.BunifuScrollBar.dll -------------------------------------------------------------------------------- /Source/build-beta/Bunifu.UI.WinForms.BunifuTextBox.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/build-beta/Bunifu.UI.WinForms.BunifuTextBox.dll -------------------------------------------------------------------------------- /Source/build-beta/HourBoostr-Beta.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/build-beta/HourBoostr-Beta.exe -------------------------------------------------------------------------------- /Source/build-beta/HourBoostr.Idler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ni1kko/HourBoostr/ec851f6e26cccc1bf0c1cfbd3c42be3451fe8138/Source/build-beta/HourBoostr.Idler.exe -------------------------------------------------------------------------------- /donation.json: -------------------------------------------------------------------------------- 1 | { 2 | "Paypal": "https://www.paypal.me/Ni1kko", 3 | "Bitcoin": "19phfQqcq3zVMrBJWjdsEetH9bqTuMPdLf" 4 | } 5 | -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- 1 | { 2 | "Applications": [ 3 | { 4 | "Name":"SingleBoostr", 5 | "Version": "4.2.6", 6 | "Info": "Small tweaks" 7 | }, 8 | { 9 | "Name":"HourBoostr", 10 | "Version": "4.3.0", 11 | "Info": "Hotfix and new features to set specific game or custom status" 12 | }, 13 | { 14 | "Name":"MultiBoostr", 15 | "Version": "0.0.1", 16 | "Info": "Beta" 17 | } 18 | ] 19 | } 20 | --------------------------------------------------------------------------------