├── .vs └── ChatBot │ └── v14 │ └── .suo ├── ChatBot.sln ├── ChatBot ├── App.config ├── ChatBot.csproj ├── DiscoBot.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── aiml │ ├── AI.aiml │ ├── Atomic.aiml │ ├── Biography.aiml │ ├── Bot.aiml │ ├── Botmaster.aiml │ ├── Client.aiml │ ├── Computers.aiml │ ├── CustomTagTest.aiml │ ├── Default.aiml │ ├── Emotion.aiml │ ├── Food.aiml │ ├── Geography.aiml │ ├── History.aiml │ ├── IU.aiml │ ├── Inquiry.aiml │ ├── Interjection.aiml │ ├── Knowledge.aiml │ ├── Literature.aiml │ ├── Money.aiml │ ├── Movies.aiml │ ├── Music.aiml │ ├── Personality.aiml │ ├── Philosophy.aiml │ ├── Pickup.aiml │ ├── Predicates.aiml │ ├── Reduce.aiml │ ├── Reductions.aiml │ ├── Salutations.aiml │ ├── Science.aiml │ ├── Stack.aiml │ ├── Stories.aiml │ └── That.aiml ├── bin │ ├── Debug │ │ ├── AIMLbot.dll │ │ ├── ChatBot.exe │ │ ├── ChatBot.exe.config │ │ ├── ChatBot.pdb │ │ ├── ChatBot.vshost.exe │ │ ├── ChatBot.vshost.exe.config │ │ ├── ChatBot.vshost.exe.manifest │ │ ├── Discord.Net.Commands.dll │ │ ├── Discord.Net.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.xml │ │ ├── Nito.AsyncEx.Concurrent.dll │ │ ├── Nito.AsyncEx.Concurrent.xml │ │ ├── Nito.AsyncEx.Enlightenment.dll │ │ ├── Nito.AsyncEx.Enlightenment.xml │ │ ├── Nito.AsyncEx.dll │ │ ├── Nito.AsyncEx.xml │ │ ├── RestSharp.dll │ │ ├── RestSharp.xml │ │ ├── WebSocket4Net.dll │ │ ├── aiml │ │ │ ├── AI.aiml │ │ │ ├── Atomic.aiml │ │ │ ├── Biography.aiml │ │ │ ├── Bot.aiml │ │ │ ├── Botmaster.aiml │ │ │ ├── Client.aiml │ │ │ ├── Computers.aiml │ │ │ ├── CustomTagTest.aiml │ │ │ ├── Default.aiml │ │ │ ├── Emotion.aiml │ │ │ ├── Food.aiml │ │ │ ├── Geography.aiml │ │ │ ├── History.aiml │ │ │ ├── IU.aiml │ │ │ ├── Inquiry.aiml │ │ │ ├── Interjection.aiml │ │ │ ├── Knowledge.aiml │ │ │ ├── Literature.aiml │ │ │ ├── Money.aiml │ │ │ ├── Movies.aiml │ │ │ ├── Music.aiml │ │ │ ├── Personality.aiml │ │ │ ├── Philosophy.aiml │ │ │ ├── Pickup.aiml │ │ │ ├── Predicates.aiml │ │ │ ├── Reduce.aiml │ │ │ ├── Reductions.aiml │ │ │ ├── Salutations.aiml │ │ │ ├── Science.aiml │ │ │ ├── Stack.aiml │ │ │ ├── Stories.aiml │ │ │ └── That.aiml │ │ └── config │ │ │ ├── DefaultPredicates.xml │ │ │ ├── GenderSubstitutions.xml │ │ │ ├── Person2Substitutions.xml │ │ │ ├── PersonSubstitutions.xml │ │ │ ├── Settings.xml │ │ │ ├── Splitters.xml │ │ │ └── Substitutions.xml │ └── Release │ │ ├── AIMLbot.dll │ │ ├── ChatBot.exe │ │ ├── ChatBot.exe.config │ │ ├── ChatBot.pdb │ │ ├── ChatBot.vshost.exe │ │ ├── ChatBot.vshost.exe.config │ │ ├── ChatBot.vshost.exe.manifest │ │ ├── Discord.Net.Commands.dll │ │ ├── Discord.Net.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.xml │ │ ├── Nito.AsyncEx.Concurrent.dll │ │ ├── Nito.AsyncEx.Concurrent.xml │ │ ├── Nito.AsyncEx.Enlightenment.dll │ │ ├── Nito.AsyncEx.Enlightenment.xml │ │ ├── Nito.AsyncEx.dll │ │ ├── Nito.AsyncEx.xml │ │ ├── RestSharp.dll │ │ ├── RestSharp.xml │ │ ├── WebSocket4Net.dll │ │ ├── aiml │ │ ├── AI.aiml │ │ ├── Atomic.aiml │ │ ├── Biography.aiml │ │ ├── Bot.aiml │ │ ├── Botmaster.aiml │ │ ├── Client.aiml │ │ ├── Computers.aiml │ │ ├── CustomTagTest.aiml │ │ ├── Default.aiml │ │ ├── Emotion.aiml │ │ ├── Food.aiml │ │ ├── Geography.aiml │ │ ├── History.aiml │ │ ├── IU.aiml │ │ ├── Inquiry.aiml │ │ ├── Interjection.aiml │ │ ├── Knowledge.aiml │ │ ├── Literature.aiml │ │ ├── Money.aiml │ │ ├── Movies.aiml │ │ ├── Music.aiml │ │ ├── Personality.aiml │ │ ├── Philosophy.aiml │ │ ├── Pickup.aiml │ │ ├── Predicates.aiml │ │ ├── Reduce.aiml │ │ ├── Reductions.aiml │ │ ├── Salutations.aiml │ │ ├── Science.aiml │ │ ├── Stack.aiml │ │ ├── Stories.aiml │ │ └── That.aiml │ │ └── config │ │ ├── DefaultPredicates.xml │ │ ├── GenderSubstitutions.xml │ │ ├── Person2Substitutions.xml │ │ ├── PersonSubstitutions.xml │ │ ├── Settings.xml │ │ ├── Splitters.xml │ │ └── Substitutions.xml ├── config │ ├── DefaultPredicates.xml │ ├── GenderSubstitutions.xml │ ├── Person2Substitutions.xml │ ├── PersonSubstitutions.xml │ ├── Settings.xml │ ├── Splitters.xml │ └── Substitutions.xml ├── lib │ └── AIMLbot.dll ├── obj │ ├── Debug │ │ ├── ChatBot.csproj.FileListAbsolute.txt │ │ ├── ChatBot.csprojResolveAssemblyReference.cache │ │ ├── ChatBot.exe │ │ ├── ChatBot.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── Release │ │ ├── ChatBot.csproj.FileListAbsolute.txt │ │ ├── ChatBot.csprojResolveAssemblyReference.cache │ │ ├── ChatBot.exe │ │ ├── ChatBot.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── packages.config ├── ChatBotSetup ├── ChatBotSetup.vdproj └── Release │ ├── ChatBotSetup.msi │ └── setup.exe ├── README.md ├── _config.yml └── packages ├── Discord.Net.0.9.6 ├── Discord.Net.0.9.6.nupkg └── lib │ ├── net45 │ └── Discord.Net.dll │ └── netstandard1.3 │ └── Discord.Net.dll ├── Discord.Net.Commands.0.9.6 ├── Discord.Net.Commands.0.9.6.nupkg └── lib │ ├── net45 │ └── Discord.Net.Commands.dll │ └── netstandard1.3 │ ├── Discord.Net.Commands.dll │ └── Discord.Net.Commands.xml ├── Newtonsoft.Json.8.0.3 ├── Newtonsoft.Json.8.0.3.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 │ ├── portable-net40+sl5+wp80+win8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── portable-net45+wp80+win8+wpa81+dnxcore50 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml └── tools │ └── install.ps1 ├── Nito.AsyncEx.3.0.1 ├── Nito.AsyncEx.3.0.1.nupkg └── lib │ ├── MonoAndroid │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── Xamarin.Mac20 │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── Xamarin.iOS10 │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── net40 │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── net45 │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── netcore45 │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── portable-net40+netcore45+sl4+wp71 │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── portable-net40+netcore45+sl5+wp8+wpa81 │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── portable-net40+netcore45 │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── portable-net45+netcore45+wp8+wpa81 │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── portable-net45+netcore45+wpa81 │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── sl4 │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── sl5 │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── wp71 │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ ├── wp8 │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml │ └── wpa81 │ ├── Nito.AsyncEx.Concurrent.dll │ ├── Nito.AsyncEx.Concurrent.xml │ ├── Nito.AsyncEx.Enlightenment.dll │ ├── Nito.AsyncEx.Enlightenment.xml │ ├── Nito.AsyncEx.dll │ └── Nito.AsyncEx.xml ├── RestSharp.105.2.3 ├── RestSharp.105.2.3.nupkg ├── lib │ ├── MonoAndroid10 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── MonoTouch10 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── Xamarin.iOS10 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── net35 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── net4-client │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── net4 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── net45 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── net451 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── net452 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── net46 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── sl5 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ ├── windowsphone8 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml │ └── windowsphone81 │ │ ├── RestSharp.dll │ │ └── RestSharp.xml └── readme.txt └── WebSocket4Net.0.14.1 ├── WebSocket4Net.0.14.1.nupkg └── lib ├── Xamarin.iOS10 └── WebSocket4Net.dll ├── monoandroid23 └── WebSocket4Net.dll ├── monotouch10 └── WebSocket4Net.dll ├── net20 └── WebSocket4Net.dll ├── net35 └── WebSocket4Net.dll ├── net40 └── WebSocket4Net.dll ├── net45 └── WebSocket4Net.dll ├── sl40 └── WebSocket4Net.dll ├── sl50-wp └── WebSocket4Net.dll └── sl50 └── WebSocket4Net.dll /.vs/ChatBot/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/.vs/ChatBot/v14/.suo -------------------------------------------------------------------------------- /ChatBot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot.sln -------------------------------------------------------------------------------- /ChatBot/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/App.config -------------------------------------------------------------------------------- /ChatBot/ChatBot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/ChatBot.csproj -------------------------------------------------------------------------------- /ChatBot/DiscoBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/DiscoBot.cs -------------------------------------------------------------------------------- /ChatBot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/Program.cs -------------------------------------------------------------------------------- /ChatBot/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ChatBot/aiml/AI.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/AI.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Atomic.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Atomic.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Biography.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Biography.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Bot.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Bot.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Botmaster.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Botmaster.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Client.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Client.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Computers.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Computers.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/CustomTagTest.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/CustomTagTest.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Default.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Default.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Emotion.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Emotion.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Food.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Food.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Geography.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Geography.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/History.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/History.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/IU.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/IU.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Inquiry.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Inquiry.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Interjection.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Interjection.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Knowledge.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Knowledge.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Literature.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Literature.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Money.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Money.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Movies.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Movies.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Music.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Music.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Personality.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Personality.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Philosophy.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Philosophy.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Pickup.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Pickup.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Predicates.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Predicates.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Reduce.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Reduce.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Reductions.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Reductions.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Salutations.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Salutations.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Science.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Science.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Stack.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Stack.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/Stories.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/Stories.aiml -------------------------------------------------------------------------------- /ChatBot/aiml/That.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/aiml/That.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/AIMLbot.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/AIMLbot.dll -------------------------------------------------------------------------------- /ChatBot/bin/Debug/ChatBot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/ChatBot.exe -------------------------------------------------------------------------------- /ChatBot/bin/Debug/ChatBot.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/ChatBot.exe.config -------------------------------------------------------------------------------- /ChatBot/bin/Debug/ChatBot.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/ChatBot.pdb -------------------------------------------------------------------------------- /ChatBot/bin/Debug/ChatBot.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/ChatBot.vshost.exe -------------------------------------------------------------------------------- /ChatBot/bin/Debug/ChatBot.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/ChatBot.vshost.exe.config -------------------------------------------------------------------------------- /ChatBot/bin/Debug/ChatBot.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/ChatBot.vshost.exe.manifest -------------------------------------------------------------------------------- /ChatBot/bin/Debug/Discord.Net.Commands.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/Discord.Net.Commands.dll -------------------------------------------------------------------------------- /ChatBot/bin/Debug/Discord.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/Discord.Net.dll -------------------------------------------------------------------------------- /ChatBot/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /ChatBot/bin/Debug/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /ChatBot/bin/Debug/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /ChatBot/bin/Debug/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /ChatBot/bin/Debug/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/RestSharp.dll -------------------------------------------------------------------------------- /ChatBot/bin/Debug/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/RestSharp.xml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/WebSocket4Net.dll -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/AI.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/AI.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Atomic.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Atomic.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Biography.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Biography.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Bot.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Bot.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Botmaster.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Botmaster.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Client.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Client.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Computers.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Computers.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/CustomTagTest.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/CustomTagTest.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Default.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Default.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Emotion.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Emotion.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Food.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Food.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Geography.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Geography.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/History.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/History.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/IU.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/IU.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Inquiry.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Inquiry.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Interjection.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Interjection.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Knowledge.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Knowledge.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Literature.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Literature.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Money.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Money.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Movies.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Movies.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Music.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Music.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Personality.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Personality.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Philosophy.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Philosophy.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Pickup.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Pickup.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Predicates.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Predicates.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Reduce.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Reduce.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Reductions.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Reductions.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Salutations.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Salutations.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Science.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Science.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Stack.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Stack.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/Stories.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/Stories.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/aiml/That.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/aiml/That.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/config/DefaultPredicates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/config/DefaultPredicates.xml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/config/GenderSubstitutions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/config/GenderSubstitutions.xml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/config/Person2Substitutions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/config/Person2Substitutions.xml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/config/PersonSubstitutions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/config/PersonSubstitutions.xml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/config/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/config/Settings.xml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/config/Splitters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/config/Splitters.xml -------------------------------------------------------------------------------- /ChatBot/bin/Debug/config/Substitutions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Debug/config/Substitutions.xml -------------------------------------------------------------------------------- /ChatBot/bin/Release/AIMLbot.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/AIMLbot.dll -------------------------------------------------------------------------------- /ChatBot/bin/Release/ChatBot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/ChatBot.exe -------------------------------------------------------------------------------- /ChatBot/bin/Release/ChatBot.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/ChatBot.exe.config -------------------------------------------------------------------------------- /ChatBot/bin/Release/ChatBot.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/ChatBot.pdb -------------------------------------------------------------------------------- /ChatBot/bin/Release/ChatBot.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/ChatBot.vshost.exe -------------------------------------------------------------------------------- /ChatBot/bin/Release/ChatBot.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/ChatBot.vshost.exe.config -------------------------------------------------------------------------------- /ChatBot/bin/Release/ChatBot.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/ChatBot.vshost.exe.manifest -------------------------------------------------------------------------------- /ChatBot/bin/Release/Discord.Net.Commands.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/Discord.Net.Commands.dll -------------------------------------------------------------------------------- /ChatBot/bin/Release/Discord.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/Discord.Net.dll -------------------------------------------------------------------------------- /ChatBot/bin/Release/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /ChatBot/bin/Release/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /ChatBot/bin/Release/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /ChatBot/bin/Release/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /ChatBot/bin/Release/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /ChatBot/bin/Release/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /ChatBot/bin/Release/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /ChatBot/bin/Release/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /ChatBot/bin/Release/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/RestSharp.dll -------------------------------------------------------------------------------- /ChatBot/bin/Release/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/RestSharp.xml -------------------------------------------------------------------------------- /ChatBot/bin/Release/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/WebSocket4Net.dll -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/AI.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/AI.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Atomic.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Atomic.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Biography.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Biography.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Bot.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Bot.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Botmaster.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Botmaster.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Client.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Client.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Computers.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Computers.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/CustomTagTest.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/CustomTagTest.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Default.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Default.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Emotion.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Emotion.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Food.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Food.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Geography.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Geography.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/History.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/History.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/IU.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/IU.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Inquiry.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Inquiry.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Interjection.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Interjection.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Knowledge.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Knowledge.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Literature.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Literature.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Money.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Money.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Movies.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Movies.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Music.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Music.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Personality.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Personality.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Philosophy.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Philosophy.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Pickup.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Pickup.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Predicates.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Predicates.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Reduce.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Reduce.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Reductions.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Reductions.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Salutations.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Salutations.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Science.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Science.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Stack.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Stack.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/Stories.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/Stories.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/aiml/That.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/aiml/That.aiml -------------------------------------------------------------------------------- /ChatBot/bin/Release/config/DefaultPredicates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/config/DefaultPredicates.xml -------------------------------------------------------------------------------- /ChatBot/bin/Release/config/GenderSubstitutions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/config/GenderSubstitutions.xml -------------------------------------------------------------------------------- /ChatBot/bin/Release/config/Person2Substitutions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/config/Person2Substitutions.xml -------------------------------------------------------------------------------- /ChatBot/bin/Release/config/PersonSubstitutions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/config/PersonSubstitutions.xml -------------------------------------------------------------------------------- /ChatBot/bin/Release/config/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/config/Settings.xml -------------------------------------------------------------------------------- /ChatBot/bin/Release/config/Splitters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/config/Splitters.xml -------------------------------------------------------------------------------- /ChatBot/bin/Release/config/Substitutions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/bin/Release/config/Substitutions.xml -------------------------------------------------------------------------------- /ChatBot/config/DefaultPredicates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/config/DefaultPredicates.xml -------------------------------------------------------------------------------- /ChatBot/config/GenderSubstitutions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/config/GenderSubstitutions.xml -------------------------------------------------------------------------------- /ChatBot/config/Person2Substitutions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/config/Person2Substitutions.xml -------------------------------------------------------------------------------- /ChatBot/config/PersonSubstitutions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/config/PersonSubstitutions.xml -------------------------------------------------------------------------------- /ChatBot/config/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/config/Settings.xml -------------------------------------------------------------------------------- /ChatBot/config/Splitters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/config/Splitters.xml -------------------------------------------------------------------------------- /ChatBot/config/Substitutions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/config/Substitutions.xml -------------------------------------------------------------------------------- /ChatBot/lib/AIMLbot.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/lib/AIMLbot.dll -------------------------------------------------------------------------------- /ChatBot/obj/Debug/ChatBot.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/obj/Debug/ChatBot.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ChatBot/obj/Debug/ChatBot.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/obj/Debug/ChatBot.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /ChatBot/obj/Debug/ChatBot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/obj/Debug/ChatBot.exe -------------------------------------------------------------------------------- /ChatBot/obj/Debug/ChatBot.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/obj/Debug/ChatBot.pdb -------------------------------------------------------------------------------- /ChatBot/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /ChatBot/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChatBot/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChatBot/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChatBot/obj/Release/ChatBot.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/obj/Release/ChatBot.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ChatBot/obj/Release/ChatBot.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/obj/Release/ChatBot.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /ChatBot/obj/Release/ChatBot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/obj/Release/ChatBot.exe -------------------------------------------------------------------------------- /ChatBot/obj/Release/ChatBot.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/obj/Release/ChatBot.pdb -------------------------------------------------------------------------------- /ChatBot/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /ChatBot/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChatBot/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChatBot/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChatBot/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBot/packages.config -------------------------------------------------------------------------------- /ChatBotSetup/ChatBotSetup.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBotSetup/ChatBotSetup.vdproj -------------------------------------------------------------------------------- /ChatBotSetup/Release/ChatBotSetup.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBotSetup/Release/ChatBotSetup.msi -------------------------------------------------------------------------------- /ChatBotSetup/Release/setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/ChatBotSetup/Release/setup.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/_config.yml -------------------------------------------------------------------------------- /packages/Discord.Net.0.9.6/Discord.Net.0.9.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Discord.Net.0.9.6/Discord.Net.0.9.6.nupkg -------------------------------------------------------------------------------- /packages/Discord.Net.0.9.6/lib/net45/Discord.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Discord.Net.0.9.6/lib/net45/Discord.Net.dll -------------------------------------------------------------------------------- /packages/Discord.Net.0.9.6/lib/netstandard1.3/Discord.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Discord.Net.0.9.6/lib/netstandard1.3/Discord.Net.dll -------------------------------------------------------------------------------- /packages/Discord.Net.Commands.0.9.6/Discord.Net.Commands.0.9.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Discord.Net.Commands.0.9.6/Discord.Net.Commands.0.9.6.nupkg -------------------------------------------------------------------------------- /packages/Discord.Net.Commands.0.9.6/lib/net45/Discord.Net.Commands.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Discord.Net.Commands.0.9.6/lib/net45/Discord.Net.Commands.dll -------------------------------------------------------------------------------- /packages/Discord.Net.Commands.0.9.6/lib/netstandard1.3/Discord.Net.Commands.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Discord.Net.Commands.0.9.6/lib/netstandard1.3/Discord.Net.Commands.dll -------------------------------------------------------------------------------- /packages/Discord.Net.Commands.0.9.6/lib/netstandard1.3/Discord.Net.Commands.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Discord.Net.Commands.0.9.6/lib/netstandard1.3/Discord.Net.Commands.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.8.0.3/Newtonsoft.Json.8.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Newtonsoft.Json.8.0.3/Newtonsoft.Json.8.0.3.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.8.0.3/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Newtonsoft.Json.8.0.3/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.8.0.3/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Newtonsoft.Json.8.0.3/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.8.0.3/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Newtonsoft.Json.8.0.3/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.8.0.3/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Newtonsoft.Json.8.0.3/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.8.0.3/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Newtonsoft.Json.8.0.3/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.8.0.3/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Newtonsoft.Json.8.0.3/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.8.0.3/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Newtonsoft.Json.8.0.3/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.8.0.3/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Newtonsoft.Json.8.0.3/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.8.0.3/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Newtonsoft.Json.8.0.3/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.8.0.3/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Newtonsoft.Json.8.0.3/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.8.0.3/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Newtonsoft.Json.8.0.3/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.8.0.3/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Newtonsoft.Json.8.0.3/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.8.0.3/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Newtonsoft.Json.8.0.3/tools/install.ps1 -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/Nito.AsyncEx.3.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/Nito.AsyncEx.3.0.1.nupkg -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/MonoAndroid/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/net40/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/net45/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/netcore45/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl4+wp71/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl4+wp71/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl4+wp71/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl4+wp71/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl5+wp8+wpa81/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl5+wp8+wpa81/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl5+wp8+wpa81/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45+sl5+wp8+wpa81/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net40+netcore45/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wp8+wpa81/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wp8+wpa81/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wp8+wpa81/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wp8+wpa81/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/portable-net45+netcore45+wpa81/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/sl4/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/sl5/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wp71/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wp8/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Concurrent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Concurrent.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.Enlightenment.xml -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/Nito.AsyncEx.3.0.1/lib/wpa81/Nito.AsyncEx.xml -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/RestSharp.105.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/RestSharp.105.2.3.nupkg -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/MonoAndroid10/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/MonoAndroid10/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/MonoAndroid10/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/MonoAndroid10/RestSharp.xml -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/MonoTouch10/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/MonoTouch10/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/MonoTouch10/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/MonoTouch10/RestSharp.xml -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/Xamarin.iOS10/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/Xamarin.iOS10/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/Xamarin.iOS10/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/Xamarin.iOS10/RestSharp.xml -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/net35/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/net35/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/net35/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/net35/RestSharp.xml -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/net4-client/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/net4-client/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/net4-client/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/net4-client/RestSharp.xml -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/net4/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/net4/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/net4/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/net4/RestSharp.xml -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/net45/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/net45/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/net45/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/net45/RestSharp.xml -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/net451/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/net451/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/net451/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/net451/RestSharp.xml -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/net452/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/net452/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/net452/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/net452/RestSharp.xml -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/net46/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/net46/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/net46/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/net46/RestSharp.xml -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/sl5/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/sl5/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/sl5/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/sl5/RestSharp.xml -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/windowsphone8/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/windowsphone8/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/windowsphone8/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/windowsphone8/RestSharp.xml -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/windowsphone81/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/windowsphone81/RestSharp.dll -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/lib/windowsphone81/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/lib/windowsphone81/RestSharp.xml -------------------------------------------------------------------------------- /packages/RestSharp.105.2.3/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/RestSharp.105.2.3/readme.txt -------------------------------------------------------------------------------- /packages/WebSocket4Net.0.14.1/WebSocket4Net.0.14.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/WebSocket4Net.0.14.1/WebSocket4Net.0.14.1.nupkg -------------------------------------------------------------------------------- /packages/WebSocket4Net.0.14.1/lib/Xamarin.iOS10/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/WebSocket4Net.0.14.1/lib/Xamarin.iOS10/WebSocket4Net.dll -------------------------------------------------------------------------------- /packages/WebSocket4Net.0.14.1/lib/monoandroid23/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/WebSocket4Net.0.14.1/lib/monoandroid23/WebSocket4Net.dll -------------------------------------------------------------------------------- /packages/WebSocket4Net.0.14.1/lib/monotouch10/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/WebSocket4Net.0.14.1/lib/monotouch10/WebSocket4Net.dll -------------------------------------------------------------------------------- /packages/WebSocket4Net.0.14.1/lib/net20/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/WebSocket4Net.0.14.1/lib/net20/WebSocket4Net.dll -------------------------------------------------------------------------------- /packages/WebSocket4Net.0.14.1/lib/net35/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/WebSocket4Net.0.14.1/lib/net35/WebSocket4Net.dll -------------------------------------------------------------------------------- /packages/WebSocket4Net.0.14.1/lib/net40/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/WebSocket4Net.0.14.1/lib/net40/WebSocket4Net.dll -------------------------------------------------------------------------------- /packages/WebSocket4Net.0.14.1/lib/net45/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/WebSocket4Net.0.14.1/lib/net45/WebSocket4Net.dll -------------------------------------------------------------------------------- /packages/WebSocket4Net.0.14.1/lib/sl40/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/WebSocket4Net.0.14.1/lib/sl40/WebSocket4Net.dll -------------------------------------------------------------------------------- /packages/WebSocket4Net.0.14.1/lib/sl50-wp/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/WebSocket4Net.0.14.1/lib/sl50-wp/WebSocket4Net.dll -------------------------------------------------------------------------------- /packages/WebSocket4Net.0.14.1/lib/sl50/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TiBej/ChatBot/HEAD/packages/WebSocket4Net.0.14.1/lib/sl50/WebSocket4Net.dll --------------------------------------------------------------------------------