├── .gitattributes ├── InstaMacBot ├── .vs │ └── InstaMacBot │ │ ├── config │ │ └── applicationhost.config │ │ └── v16 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ └── storage.ide ├── InstaMacBot.sln ├── InstaMacBot │ ├── .gitignore │ ├── App.config │ ├── Fill_Forms │ │ ├── comments_barrage.Designer.cs │ │ ├── comments_barrage.cs │ │ ├── comments_barrage.resx │ │ ├── follow_like_form.Designer.cs │ │ ├── follow_like_form.cs │ │ ├── follow_like_form.resx │ │ ├── manage_lists_form.Designer.cs │ │ ├── manage_lists_form.cs │ │ ├── manage_lists_form.resx │ │ ├── new_bot.Designer.cs │ │ ├── new_bot.cs │ │ ├── new_bot.resx │ │ ├── scrape_from_hastag_form.Designer.cs │ │ ├── scrape_from_hastag_form.cs │ │ ├── scrape_from_hastag_form.resx │ │ ├── scrape_from_location_form.Designer.cs │ │ ├── scrape_from_location_form.cs │ │ ├── scrape_from_location_form.resx │ │ ├── scrape_from_user_form.Designer.cs │ │ ├── scrape_from_user_form.cs │ │ ├── scrape_from_user_form.resx │ │ ├── send_dm_form.Designer.cs │ │ ├── send_dm_form.cs │ │ ├── send_dm_form.resx │ │ ├── settings_form.Designer.cs │ │ ├── settings_form.cs │ │ ├── settings_form.resx │ │ ├── unfollow_form.Designer.cs │ │ ├── unfollow_form.cs │ │ └── unfollow_form.resx │ ├── InstaMacBot.csproj │ ├── MacBotClient_classes │ │ ├── Bot_console │ │ │ ├── BotConsole.cs │ │ │ └── DesktopTextBoxConsole.cs │ │ ├── Bots_hierarchy │ │ │ ├── BotClient.cs │ │ │ ├── SSSBot.cs │ │ │ ├── StartStopBot.cs │ │ │ ├── UserApi.cs │ │ │ └── bots │ │ │ │ ├── action_bots │ │ │ │ ├── CommentsBarrageBot.cs │ │ │ │ ├── FollowLikeLastsPicBot.cs │ │ │ │ ├── SendDmBot.cs │ │ │ │ └── UnfollowBot.cs │ │ │ │ └── scraping │ │ │ │ ├── ScrapeAccountsFromHastagBot.cs │ │ │ │ ├── ScrapeAccountsFromLocationBot.cs │ │ │ │ └── ScrapeFollowersBot.cs │ │ └── bot_files_management │ │ │ ├── Bots_file_saver │ │ │ ├── BotFileSaver.cs │ │ │ └── DesktopBotFileSaver.cs │ │ │ └── interface_list_management │ │ │ ├── bot_file_entry_list.cs │ │ │ └── bot_file_list.cs │ ├── Main_forms │ │ ├── Bot_Client.Designer.cs │ │ ├── Bot_Client.cs │ │ ├── Bot_Client.resx │ │ ├── Login.Designer.cs │ │ ├── Login.cs │ │ ├── Login.resx │ │ └── Login_fill_forms │ │ │ ├── factor2.Designer.cs │ │ │ ├── factor2.cs │ │ │ ├── factor2.resx │ │ │ ├── load_session_form.Designer.cs │ │ │ ├── load_session_form.cs │ │ │ ├── load_session_form.resx │ │ │ ├── username_password.Designer.cs │ │ │ ├── username_password.cs │ │ │ └── username_password.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── logo.ico │ └── packages.config └── packages │ ├── InstagramApiSharp.1.6.0 │ ├── .signature.p7s │ ├── InstagramApiSharp.1.6.0.nupkg │ ├── LICENSE.txt │ ├── insta.png │ └── lib │ │ ├── net452 │ │ └── InstagramApiSharp.dll │ │ ├── net461 │ │ └── InstagramApiSharp.dll │ │ ├── netstandard1.3 │ │ └── InstagramApiSharp.dll │ │ ├── netstandard2.0 │ │ └── InstagramApiSharp.dll │ │ └── uap10.0.10240 │ │ ├── InstagramApiSharp.dll │ │ └── InstagramApiSharp.pri │ ├── Microsoft.CSharp.4.7.0 │ ├── .signature.p7s │ ├── LICENSE.TXT │ ├── Microsoft.CSharp.4.7.0.nupkg │ ├── THIRD-PARTY-NOTICES.TXT │ ├── lib │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net45 │ │ │ └── _._ │ │ ├── netcore50 │ │ │ └── Microsoft.CSharp.dll │ │ ├── netcoreapp2.0 │ │ │ └── _._ │ │ ├── netstandard1.3 │ │ │ └── Microsoft.CSharp.dll │ │ ├── netstandard2.0 │ │ │ ├── Microsoft.CSharp.dll │ │ │ └── Microsoft.CSharp.xml │ │ ├── portable-net45+win8+wp8+wpa81 │ │ │ └── _._ │ │ ├── uap10.0.16299 │ │ │ └── _._ │ │ ├── win8 │ │ │ └── _._ │ │ ├── wp80 │ │ │ └── _._ │ │ ├── wpa81 │ │ │ └── _._ │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ ├── ref │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net45 │ │ │ └── _._ │ │ ├── netcore50 │ │ │ ├── Microsoft.CSharp.dll │ │ │ ├── Microsoft.CSharp.xml │ │ │ ├── de │ │ │ │ └── Microsoft.CSharp.xml │ │ │ ├── es │ │ │ │ └── Microsoft.CSharp.xml │ │ │ ├── fr │ │ │ │ └── Microsoft.CSharp.xml │ │ │ ├── it │ │ │ │ └── Microsoft.CSharp.xml │ │ │ ├── ja │ │ │ │ └── Microsoft.CSharp.xml │ │ │ ├── ko │ │ │ │ └── Microsoft.CSharp.xml │ │ │ ├── ru │ │ │ │ └── Microsoft.CSharp.xml │ │ │ ├── zh-hans │ │ │ │ └── Microsoft.CSharp.xml │ │ │ └── zh-hant │ │ │ │ └── Microsoft.CSharp.xml │ │ ├── netcoreapp2.0 │ │ │ └── _._ │ │ ├── netstandard1.0 │ │ │ ├── Microsoft.CSharp.dll │ │ │ ├── Microsoft.CSharp.xml │ │ │ ├── de │ │ │ │ └── Microsoft.CSharp.xml │ │ │ ├── es │ │ │ │ └── Microsoft.CSharp.xml │ │ │ ├── fr │ │ │ │ └── Microsoft.CSharp.xml │ │ │ ├── it │ │ │ │ └── Microsoft.CSharp.xml │ │ │ ├── ja │ │ │ │ └── Microsoft.CSharp.xml │ │ │ ├── ko │ │ │ │ └── Microsoft.CSharp.xml │ │ │ ├── ru │ │ │ │ └── Microsoft.CSharp.xml │ │ │ ├── zh-hans │ │ │ │ └── Microsoft.CSharp.xml │ │ │ └── zh-hant │ │ │ │ └── Microsoft.CSharp.xml │ │ ├── netstandard2.0 │ │ │ ├── Microsoft.CSharp.dll │ │ │ └── Microsoft.CSharp.xml │ │ ├── portable-net45+win8+wp8+wpa81 │ │ │ └── _._ │ │ ├── uap10.0.16299 │ │ │ └── _._ │ │ ├── win8 │ │ │ └── _._ │ │ ├── wp80 │ │ │ └── _._ │ │ ├── wpa81 │ │ │ └── _._ │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ ├── useSharedDesignerContext.txt │ └── version.txt │ ├── Newtonsoft.Json.13.0.1 │ ├── .signature.p7s │ ├── LICENSE.md │ ├── Newtonsoft.Json.13.0.1.nupkg │ ├── lib │ │ ├── net20 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net35 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net40 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net45 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.0 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.3 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ └── netstandard2.0 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ └── packageIcon.png │ ├── Portable.BouncyCastle.1.8.10 │ ├── .signature.p7s │ ├── Portable.BouncyCastle.1.8.10.nupkg │ └── lib │ │ ├── net40 │ │ ├── BouncyCastle.Crypto.dll │ │ └── BouncyCastle.Crypto.xml │ │ └── netstandard2.0 │ │ ├── BouncyCastle.Crypto.dll │ │ └── BouncyCastle.Crypto.xml │ ├── System.IO.4.3.0 │ ├── .signature.p7s │ ├── System.IO.4.3.0.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net45 │ │ │ └── _._ │ │ ├── net462 │ │ │ └── System.IO.dll │ │ ├── portable-net45+win8+wp8+wpa81 │ │ │ └── _._ │ │ ├── win8 │ │ │ └── _._ │ │ ├── wp80 │ │ │ └── _._ │ │ ├── wpa81 │ │ │ └── _._ │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ └── ref │ │ ├── MonoAndroid10 │ │ └── _._ │ │ ├── MonoTouch10 │ │ └── _._ │ │ ├── net45 │ │ └── _._ │ │ ├── net462 │ │ └── System.IO.dll │ │ ├── netcore50 │ │ ├── System.IO.dll │ │ ├── System.IO.xml │ │ ├── de │ │ │ └── System.IO.xml │ │ ├── es │ │ │ └── System.IO.xml │ │ ├── fr │ │ │ └── System.IO.xml │ │ ├── it │ │ │ └── System.IO.xml │ │ ├── ja │ │ │ └── System.IO.xml │ │ ├── ko │ │ │ └── System.IO.xml │ │ ├── ru │ │ │ └── System.IO.xml │ │ ├── zh-hans │ │ │ └── System.IO.xml │ │ └── zh-hant │ │ │ └── System.IO.xml │ │ ├── netstandard1.0 │ │ ├── System.IO.dll │ │ ├── System.IO.xml │ │ ├── de │ │ │ └── System.IO.xml │ │ ├── es │ │ │ └── System.IO.xml │ │ ├── fr │ │ │ └── System.IO.xml │ │ ├── it │ │ │ └── System.IO.xml │ │ ├── ja │ │ │ └── System.IO.xml │ │ ├── ko │ │ │ └── System.IO.xml │ │ ├── ru │ │ │ └── System.IO.xml │ │ ├── zh-hans │ │ │ └── System.IO.xml │ │ └── zh-hant │ │ │ └── System.IO.xml │ │ ├── netstandard1.3 │ │ ├── System.IO.dll │ │ ├── System.IO.xml │ │ ├── de │ │ │ └── System.IO.xml │ │ ├── es │ │ │ └── System.IO.xml │ │ ├── fr │ │ │ └── System.IO.xml │ │ ├── it │ │ │ └── System.IO.xml │ │ ├── ja │ │ │ └── System.IO.xml │ │ ├── ko │ │ │ └── System.IO.xml │ │ ├── ru │ │ │ └── System.IO.xml │ │ ├── zh-hans │ │ │ └── System.IO.xml │ │ └── zh-hant │ │ │ └── System.IO.xml │ │ ├── netstandard1.5 │ │ ├── System.IO.dll │ │ ├── System.IO.xml │ │ ├── de │ │ │ └── System.IO.xml │ │ ├── es │ │ │ └── System.IO.xml │ │ ├── fr │ │ │ └── System.IO.xml │ │ ├── it │ │ │ └── System.IO.xml │ │ ├── ja │ │ │ └── System.IO.xml │ │ ├── ko │ │ │ └── System.IO.xml │ │ ├── ru │ │ │ └── System.IO.xml │ │ ├── zh-hans │ │ │ └── System.IO.xml │ │ └── zh-hant │ │ │ └── System.IO.xml │ │ ├── portable-net45+win8+wp8+wpa81 │ │ └── _._ │ │ ├── win8 │ │ └── _._ │ │ ├── wp80 │ │ └── _._ │ │ ├── wpa81 │ │ └── _._ │ │ ├── xamarinios10 │ │ └── _._ │ │ ├── xamarinmac20 │ │ └── _._ │ │ ├── xamarintvos10 │ │ └── _._ │ │ └── xamarinwatchos10 │ │ └── _._ │ ├── System.Net.Http.4.3.4 │ ├── .signature.p7s │ ├── System.Net.Http.4.3.4.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ │ ├── Xamarinmac20 │ │ │ └── _._ │ │ ├── monoandroid10 │ │ │ └── _._ │ │ ├── monotouch10 │ │ │ └── _._ │ │ ├── net45 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Net.Http.dll │ │ ├── portable-net45+win8+wpa81 │ │ │ └── _._ │ │ ├── win8 │ │ │ └── _._ │ │ ├── wpa81 │ │ │ └── _._ │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ ├── ref │ │ ├── Xamarinmac20 │ │ │ └── _._ │ │ ├── monoandroid10 │ │ │ └── _._ │ │ ├── monotouch10 │ │ │ └── _._ │ │ ├── net45 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Net.Http.dll │ │ ├── netcore50 │ │ │ └── System.Net.Http.dll │ │ ├── netstandard1.1 │ │ │ └── System.Net.Http.dll │ │ ├── netstandard1.3 │ │ │ └── System.Net.Http.dll │ │ ├── portable-net45+win8+wpa81 │ │ │ └── _._ │ │ ├── win8 │ │ │ └── _._ │ │ ├── wpa81 │ │ │ └── _._ │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ └── runtimes │ │ ├── unix │ │ └── lib │ │ │ └── netstandard1.6 │ │ │ └── System.Net.Http.dll │ │ └── win │ │ └── lib │ │ ├── net46 │ │ └── System.Net.Http.dll │ │ ├── netcore50 │ │ └── System.Net.Http.dll │ │ └── netstandard1.3 │ │ └── System.Net.Http.dll │ ├── System.Runtime.4.3.1 │ ├── .signature.p7s │ ├── System.Runtime.4.3.1.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net45 │ │ │ └── _._ │ │ ├── net462 │ │ │ └── System.Runtime.dll │ │ ├── portable-net45+win8+wp80+wpa81 │ │ │ └── _._ │ │ ├── win8 │ │ │ └── _._ │ │ ├── wp80 │ │ │ └── _._ │ │ ├── wpa81 │ │ │ └── _._ │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ └── ref │ │ ├── MonoAndroid10 │ │ └── _._ │ │ ├── MonoTouch10 │ │ └── _._ │ │ ├── net45 │ │ └── _._ │ │ ├── net462 │ │ └── System.Runtime.dll │ │ ├── netcore50 │ │ ├── System.Runtime.dll │ │ ├── System.Runtime.xml │ │ ├── de │ │ │ └── System.Runtime.xml │ │ ├── es │ │ │ └── System.Runtime.xml │ │ ├── fr │ │ │ └── System.Runtime.xml │ │ ├── it │ │ │ └── System.Runtime.xml │ │ ├── ja │ │ │ └── System.Runtime.xml │ │ ├── ko │ │ │ └── System.Runtime.xml │ │ ├── ru │ │ │ └── System.Runtime.xml │ │ ├── zh-hans │ │ │ └── System.Runtime.xml │ │ └── zh-hant │ │ │ └── System.Runtime.xml │ │ ├── netstandard1.0 │ │ ├── System.Runtime.dll │ │ ├── System.Runtime.xml │ │ ├── de │ │ │ └── System.Runtime.xml │ │ ├── es │ │ │ └── System.Runtime.xml │ │ ├── fr │ │ │ └── System.Runtime.xml │ │ ├── it │ │ │ └── System.Runtime.xml │ │ ├── ja │ │ │ └── System.Runtime.xml │ │ ├── ko │ │ │ └── System.Runtime.xml │ │ ├── ru │ │ │ └── System.Runtime.xml │ │ ├── zh-hans │ │ │ └── System.Runtime.xml │ │ └── zh-hant │ │ │ └── System.Runtime.xml │ │ ├── netstandard1.2 │ │ ├── System.Runtime.dll │ │ ├── System.Runtime.xml │ │ ├── de │ │ │ └── System.Runtime.xml │ │ ├── es │ │ │ └── System.Runtime.xml │ │ ├── fr │ │ │ └── System.Runtime.xml │ │ ├── it │ │ │ └── System.Runtime.xml │ │ ├── ja │ │ │ └── System.Runtime.xml │ │ ├── ko │ │ │ └── System.Runtime.xml │ │ ├── ru │ │ │ └── System.Runtime.xml │ │ ├── zh-hans │ │ │ └── System.Runtime.xml │ │ └── zh-hant │ │ │ └── System.Runtime.xml │ │ ├── netstandard1.3 │ │ ├── System.Runtime.dll │ │ ├── System.Runtime.xml │ │ ├── de │ │ │ └── System.Runtime.xml │ │ ├── es │ │ │ └── System.Runtime.xml │ │ ├── fr │ │ │ └── System.Runtime.xml │ │ ├── it │ │ │ └── System.Runtime.xml │ │ ├── ja │ │ │ └── System.Runtime.xml │ │ ├── ko │ │ │ └── System.Runtime.xml │ │ ├── ru │ │ │ └── System.Runtime.xml │ │ ├── zh-hans │ │ │ └── System.Runtime.xml │ │ └── zh-hant │ │ │ └── System.Runtime.xml │ │ ├── netstandard1.5 │ │ ├── System.Runtime.dll │ │ ├── System.Runtime.xml │ │ ├── de │ │ │ └── System.Runtime.xml │ │ ├── es │ │ │ └── System.Runtime.xml │ │ ├── fr │ │ │ └── System.Runtime.xml │ │ ├── it │ │ │ └── System.Runtime.xml │ │ ├── ja │ │ │ └── System.Runtime.xml │ │ ├── ko │ │ │ └── System.Runtime.xml │ │ ├── ru │ │ │ └── System.Runtime.xml │ │ ├── zh-hans │ │ │ └── System.Runtime.xml │ │ └── zh-hant │ │ │ └── System.Runtime.xml │ │ ├── portable-net45+win8+wp80+wpa81 │ │ └── _._ │ │ ├── win8 │ │ └── _._ │ │ ├── wp80 │ │ └── _._ │ │ ├── wpa81 │ │ └── _._ │ │ ├── xamarinios10 │ │ └── _._ │ │ ├── xamarinmac20 │ │ └── _._ │ │ ├── xamarintvos10 │ │ └── _._ │ │ └── xamarinwatchos10 │ │ └── _._ │ ├── System.Security.Cryptography.Algorithms.4.3.1 │ ├── .signature.p7s │ ├── System.Security.Cryptography.Algorithms.4.3.1.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── net461 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── net463 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ ├── ref │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── net461 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── net463 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── netstandard1.3 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── netstandard1.4 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── netstandard1.6 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ └── runtimes │ │ ├── osx │ │ └── lib │ │ │ └── netstandard1.6 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── unix │ │ └── lib │ │ │ └── netstandard1.6 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ └── win │ │ └── lib │ │ ├── net46 │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── net461 │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── net463 │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── netcore50 │ │ └── System.Security.Cryptography.Algorithms.dll │ │ └── netstandard1.6 │ │ └── System.Security.Cryptography.Algorithms.dll │ ├── System.Security.Cryptography.Encoding.4.3.0 │ ├── .signature.p7s │ ├── System.Security.Cryptography.Encoding.4.3.0.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Security.Cryptography.Encoding.dll │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ ├── ref │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Security.Cryptography.Encoding.dll │ │ ├── netstandard1.3 │ │ │ ├── System.Security.Cryptography.Encoding.dll │ │ │ ├── System.Security.Cryptography.Encoding.xml │ │ │ ├── de │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ │ ├── es │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ │ ├── fr │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ │ ├── it │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ │ ├── ja │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ │ ├── ko │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ │ ├── ru │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ │ ├── zh-hans │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ │ └── zh-hant │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ └── runtimes │ │ ├── unix │ │ └── lib │ │ │ └── netstandard1.3 │ │ │ └── System.Security.Cryptography.Encoding.dll │ │ └── win │ │ └── lib │ │ ├── net46 │ │ └── System.Security.Cryptography.Encoding.dll │ │ └── netstandard1.3 │ │ └── System.Security.Cryptography.Encoding.dll │ ├── System.Security.Cryptography.Primitives.4.3.0 │ ├── .signature.p7s │ ├── System.Security.Cryptography.Primitives.4.3.0.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Security.Cryptography.Primitives.dll │ │ ├── netstandard1.3 │ │ │ └── System.Security.Cryptography.Primitives.dll │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ └── ref │ │ ├── MonoAndroid10 │ │ └── _._ │ │ ├── MonoTouch10 │ │ └── _._ │ │ ├── net46 │ │ └── System.Security.Cryptography.Primitives.dll │ │ ├── netstandard1.3 │ │ └── System.Security.Cryptography.Primitives.dll │ │ ├── xamarinios10 │ │ └── _._ │ │ ├── xamarinmac20 │ │ └── _._ │ │ ├── xamarintvos10 │ │ └── _._ │ │ └── xamarinwatchos10 │ │ └── _._ │ └── System.Security.Cryptography.X509Certificates.4.3.2 │ ├── .signature.p7s │ ├── System.Security.Cryptography.X509Certificates.4.3.2.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── System.Security.Cryptography.X509Certificates.dll │ ├── net461 │ │ └── System.Security.Cryptography.X509Certificates.dll │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ │ ├── ref │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── System.Security.Cryptography.X509Certificates.dll │ ├── net461 │ │ └── System.Security.Cryptography.X509Certificates.dll │ ├── netstandard1.3 │ │ └── System.Security.Cryptography.X509Certificates.dll │ ├── netstandard1.4 │ │ └── System.Security.Cryptography.X509Certificates.dll │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ │ └── runtimes │ ├── unix │ └── lib │ │ └── netstandard1.6 │ │ └── System.Security.Cryptography.X509Certificates.dll │ └── win │ └── lib │ ├── net46 │ └── System.Security.Cryptography.X509Certificates.dll │ ├── net461 │ └── System.Security.Cryptography.X509Certificates.dll │ ├── netcore50 │ └── System.Security.Cryptography.X509Certificates.dll │ └── netstandard1.6 │ └── System.Security.Cryptography.X509Certificates.dll ├── README.md ├── _config.yml ├── documentation ├── Documentation_InstaMacBot.zip └── quick class diagram.svg └── resources ├── Instagram_logo_2016.png ├── Instagram_logo_2016.psd ├── logo.ico └── robot_PNG96.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/.gitattributes -------------------------------------------------------------------------------- /InstaMacBot/.vs/InstaMacBot/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/.vs/InstaMacBot/config/applicationhost.config -------------------------------------------------------------------------------- /InstaMacBot/.vs/InstaMacBot/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/.vs/InstaMacBot/v16/.suo -------------------------------------------------------------------------------- /InstaMacBot/.vs/InstaMacBot/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/.vs/InstaMacBot/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/.vs/InstaMacBot/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot.sln -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/.gitignore -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/App.config -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/comments_barrage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/comments_barrage.Designer.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/comments_barrage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/comments_barrage.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/comments_barrage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/comments_barrage.resx -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/follow_like_form.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/follow_like_form.Designer.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/follow_like_form.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/follow_like_form.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/follow_like_form.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/follow_like_form.resx -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/manage_lists_form.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/manage_lists_form.Designer.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/manage_lists_form.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/manage_lists_form.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/manage_lists_form.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/manage_lists_form.resx -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/new_bot.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/new_bot.Designer.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/new_bot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/new_bot.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/new_bot.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/new_bot.resx -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/scrape_from_hastag_form.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/scrape_from_hastag_form.Designer.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/scrape_from_hastag_form.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/scrape_from_hastag_form.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/scrape_from_hastag_form.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/scrape_from_hastag_form.resx -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/scrape_from_location_form.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/scrape_from_location_form.Designer.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/scrape_from_location_form.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/scrape_from_location_form.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/scrape_from_location_form.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/scrape_from_location_form.resx -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/scrape_from_user_form.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/scrape_from_user_form.Designer.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/scrape_from_user_form.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/scrape_from_user_form.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/scrape_from_user_form.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/scrape_from_user_form.resx -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/send_dm_form.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/send_dm_form.Designer.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/send_dm_form.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/send_dm_form.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/send_dm_form.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/send_dm_form.resx -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/settings_form.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/settings_form.Designer.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/settings_form.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/settings_form.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/settings_form.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/settings_form.resx -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/unfollow_form.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/unfollow_form.Designer.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/unfollow_form.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/unfollow_form.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Fill_Forms/unfollow_form.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Fill_Forms/unfollow_form.resx -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/InstaMacBot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/InstaMacBot.csproj -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/MacBotClient_classes/Bot_console/BotConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/MacBotClient_classes/Bot_console/BotConsole.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/MacBotClient_classes/Bot_console/DesktopTextBoxConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/MacBotClient_classes/Bot_console/DesktopTextBoxConsole.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/MacBotClient_classes/Bots_hierarchy/BotClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/MacBotClient_classes/Bots_hierarchy/BotClient.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/MacBotClient_classes/Bots_hierarchy/SSSBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/MacBotClient_classes/Bots_hierarchy/SSSBot.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/MacBotClient_classes/Bots_hierarchy/StartStopBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/MacBotClient_classes/Bots_hierarchy/StartStopBot.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/MacBotClient_classes/Bots_hierarchy/UserApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/MacBotClient_classes/Bots_hierarchy/UserApi.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/MacBotClient_classes/Bots_hierarchy/bots/action_bots/CommentsBarrageBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/MacBotClient_classes/Bots_hierarchy/bots/action_bots/CommentsBarrageBot.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/MacBotClient_classes/Bots_hierarchy/bots/action_bots/FollowLikeLastsPicBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/MacBotClient_classes/Bots_hierarchy/bots/action_bots/FollowLikeLastsPicBot.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/MacBotClient_classes/Bots_hierarchy/bots/action_bots/SendDmBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/MacBotClient_classes/Bots_hierarchy/bots/action_bots/SendDmBot.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/MacBotClient_classes/Bots_hierarchy/bots/action_bots/UnfollowBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/MacBotClient_classes/Bots_hierarchy/bots/action_bots/UnfollowBot.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/MacBotClient_classes/Bots_hierarchy/bots/scraping/ScrapeAccountsFromHastagBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/MacBotClient_classes/Bots_hierarchy/bots/scraping/ScrapeAccountsFromHastagBot.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/MacBotClient_classes/Bots_hierarchy/bots/scraping/ScrapeAccountsFromLocationBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/MacBotClient_classes/Bots_hierarchy/bots/scraping/ScrapeAccountsFromLocationBot.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/MacBotClient_classes/Bots_hierarchy/bots/scraping/ScrapeFollowersBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/MacBotClient_classes/Bots_hierarchy/bots/scraping/ScrapeFollowersBot.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/MacBotClient_classes/bot_files_management/Bots_file_saver/BotFileSaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/MacBotClient_classes/bot_files_management/Bots_file_saver/BotFileSaver.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/MacBotClient_classes/bot_files_management/Bots_file_saver/DesktopBotFileSaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/MacBotClient_classes/bot_files_management/Bots_file_saver/DesktopBotFileSaver.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/MacBotClient_classes/bot_files_management/interface_list_management/bot_file_entry_list.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/MacBotClient_classes/bot_files_management/interface_list_management/bot_file_entry_list.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/MacBotClient_classes/bot_files_management/interface_list_management/bot_file_list.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/MacBotClient_classes/bot_files_management/interface_list_management/bot_file_list.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Main_forms/Bot_Client.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Main_forms/Bot_Client.Designer.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Main_forms/Bot_Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Main_forms/Bot_Client.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Main_forms/Bot_Client.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Main_forms/Bot_Client.resx -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Main_forms/Login.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Main_forms/Login.Designer.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Main_forms/Login.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Main_forms/Login.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Main_forms/Login.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Main_forms/Login.resx -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Main_forms/Login_fill_forms/factor2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Main_forms/Login_fill_forms/factor2.Designer.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Main_forms/Login_fill_forms/factor2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Main_forms/Login_fill_forms/factor2.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Main_forms/Login_fill_forms/factor2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Main_forms/Login_fill_forms/factor2.resx -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Main_forms/Login_fill_forms/load_session_form.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Main_forms/Login_fill_forms/load_session_form.Designer.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Main_forms/Login_fill_forms/load_session_form.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Main_forms/Login_fill_forms/load_session_form.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Main_forms/Login_fill_forms/load_session_form.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Main_forms/Login_fill_forms/load_session_form.resx -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Main_forms/Login_fill_forms/username_password.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Main_forms/Login_fill_forms/username_password.Designer.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Main_forms/Login_fill_forms/username_password.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Main_forms/Login_fill_forms/username_password.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Main_forms/Login_fill_forms/username_password.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Main_forms/Login_fill_forms/username_password.resx -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Program.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Properties/Resources.resx -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/Properties/Settings.settings -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/logo.ico -------------------------------------------------------------------------------- /InstaMacBot/InstaMacBot/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/InstaMacBot/packages.config -------------------------------------------------------------------------------- /InstaMacBot/packages/InstagramApiSharp.1.6.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/InstagramApiSharp.1.6.0/.signature.p7s -------------------------------------------------------------------------------- /InstaMacBot/packages/InstagramApiSharp.1.6.0/InstagramApiSharp.1.6.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/InstagramApiSharp.1.6.0/InstagramApiSharp.1.6.0.nupkg -------------------------------------------------------------------------------- /InstaMacBot/packages/InstagramApiSharp.1.6.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/InstagramApiSharp.1.6.0/LICENSE.txt -------------------------------------------------------------------------------- /InstaMacBot/packages/InstagramApiSharp.1.6.0/insta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/InstagramApiSharp.1.6.0/insta.png -------------------------------------------------------------------------------- /InstaMacBot/packages/InstagramApiSharp.1.6.0/lib/net452/InstagramApiSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/InstagramApiSharp.1.6.0/lib/net452/InstagramApiSharp.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/InstagramApiSharp.1.6.0/lib/net461/InstagramApiSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/InstagramApiSharp.1.6.0/lib/net461/InstagramApiSharp.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/InstagramApiSharp.1.6.0/lib/netstandard1.3/InstagramApiSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/InstagramApiSharp.1.6.0/lib/netstandard1.3/InstagramApiSharp.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/InstagramApiSharp.1.6.0/lib/netstandard2.0/InstagramApiSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/InstagramApiSharp.1.6.0/lib/netstandard2.0/InstagramApiSharp.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/InstagramApiSharp.1.6.0/lib/uap10.0.10240/InstagramApiSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/InstagramApiSharp.1.6.0/lib/uap10.0.10240/InstagramApiSharp.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/InstagramApiSharp.1.6.0/lib/uap10.0.10240/InstagramApiSharp.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/InstagramApiSharp.1.6.0/lib/uap10.0.10240/InstagramApiSharp.pri -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/.signature.p7s -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/LICENSE.TXT -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/Microsoft.CSharp.4.7.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/Microsoft.CSharp.4.7.0.nupkg -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/lib/netcore50/Microsoft.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/lib/netcore50/Microsoft.CSharp.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/lib/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/lib/netstandard1.3/Microsoft.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/lib/netstandard1.3/Microsoft.CSharp.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/lib/netstandard2.0/Microsoft.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/lib/netstandard2.0/Microsoft.CSharp.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/lib/netstandard2.0/Microsoft.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/lib/netstandard2.0/Microsoft.CSharp.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/lib/uap10.0.16299/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netcore50/Microsoft.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netcore50/Microsoft.CSharp.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netcore50/Microsoft.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netcore50/Microsoft.CSharp.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netcore50/de/Microsoft.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netcore50/de/Microsoft.CSharp.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netcore50/es/Microsoft.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netcore50/es/Microsoft.CSharp.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netcore50/fr/Microsoft.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netcore50/fr/Microsoft.CSharp.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netcore50/it/Microsoft.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netcore50/it/Microsoft.CSharp.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netcore50/ja/Microsoft.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netcore50/ja/Microsoft.CSharp.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netcore50/ko/Microsoft.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netcore50/ko/Microsoft.CSharp.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netcore50/ru/Microsoft.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netcore50/ru/Microsoft.CSharp.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netcore50/zh-hans/Microsoft.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netcore50/zh-hans/Microsoft.CSharp.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netcore50/zh-hant/Microsoft.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netcore50/zh-hant/Microsoft.CSharp.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard1.0/Microsoft.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard1.0/Microsoft.CSharp.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard1.0/Microsoft.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard1.0/Microsoft.CSharp.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard1.0/de/Microsoft.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard1.0/de/Microsoft.CSharp.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard1.0/es/Microsoft.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard1.0/es/Microsoft.CSharp.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard1.0/fr/Microsoft.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard1.0/fr/Microsoft.CSharp.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard1.0/it/Microsoft.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard1.0/it/Microsoft.CSharp.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard1.0/ja/Microsoft.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard1.0/ja/Microsoft.CSharp.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard1.0/ko/Microsoft.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard1.0/ko/Microsoft.CSharp.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard1.0/ru/Microsoft.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard1.0/ru/Microsoft.CSharp.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard2.0/Microsoft.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard2.0/Microsoft.CSharp.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard2.0/Microsoft.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/netstandard2.0/Microsoft.CSharp.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/uap10.0.16299/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Microsoft.CSharp.4.7.0/version.txt: -------------------------------------------------------------------------------- 1 | 0f7f38c4fd323b26da10cce95f857f77f0f09b48 2 | -------------------------------------------------------------------------------- /InstaMacBot/packages/Newtonsoft.Json.13.0.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Newtonsoft.Json.13.0.1/.signature.p7s -------------------------------------------------------------------------------- /InstaMacBot/packages/Newtonsoft.Json.13.0.1/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Newtonsoft.Json.13.0.1/LICENSE.md -------------------------------------------------------------------------------- /InstaMacBot/packages/Newtonsoft.Json.13.0.1/Newtonsoft.Json.13.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Newtonsoft.Json.13.0.1/Newtonsoft.Json.13.0.1.nupkg -------------------------------------------------------------------------------- /InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/netstandard1.3/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/netstandard1.3/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/netstandard2.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Newtonsoft.Json.13.0.1/lib/netstandard2.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Newtonsoft.Json.13.0.1/packageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Newtonsoft.Json.13.0.1/packageIcon.png -------------------------------------------------------------------------------- /InstaMacBot/packages/Portable.BouncyCastle.1.8.10/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Portable.BouncyCastle.1.8.10/.signature.p7s -------------------------------------------------------------------------------- /InstaMacBot/packages/Portable.BouncyCastle.1.8.10/Portable.BouncyCastle.1.8.10.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Portable.BouncyCastle.1.8.10/Portable.BouncyCastle.1.8.10.nupkg -------------------------------------------------------------------------------- /InstaMacBot/packages/Portable.BouncyCastle.1.8.10/lib/net40/BouncyCastle.Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Portable.BouncyCastle.1.8.10/lib/net40/BouncyCastle.Crypto.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/Portable.BouncyCastle.1.8.10/lib/net40/BouncyCastle.Crypto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Portable.BouncyCastle.1.8.10/lib/net40/BouncyCastle.Crypto.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/Portable.BouncyCastle.1.8.10/lib/netstandard2.0/BouncyCastle.Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Portable.BouncyCastle.1.8.10/lib/netstandard2.0/BouncyCastle.Crypto.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/Portable.BouncyCastle.1.8.10/lib/netstandard2.0/BouncyCastle.Crypto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/Portable.BouncyCastle.1.8.10/lib/netstandard2.0/BouncyCastle.Crypto.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/.signature.p7s -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/System.IO.4.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/System.IO.4.3.0.nupkg -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/lib/net462/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/lib/net462/System.IO.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/net462/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/net462/System.IO.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netcore50/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netcore50/System.IO.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netcore50/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netcore50/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netcore50/de/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netcore50/de/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netcore50/es/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netcore50/es/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netcore50/fr/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netcore50/fr/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netcore50/it/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netcore50/it/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netcore50/ja/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netcore50/ja/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netcore50/ko/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netcore50/ko/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netcore50/ru/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netcore50/ru/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netcore50/zh-hans/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netcore50/zh-hans/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netcore50/zh-hant/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netcore50/zh-hant/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.0/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.0/System.IO.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.0/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.0/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.0/de/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.0/de/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.0/es/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.0/es/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.0/fr/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.0/fr/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.0/it/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.0/it/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.0/ja/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.0/ja/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.0/ko/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.0/ko/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.0/ru/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.0/ru/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.0/zh-hans/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.0/zh-hans/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.0/zh-hant/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.0/zh-hant/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.3/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.3/System.IO.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.3/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.3/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.3/de/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.3/de/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.3/es/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.3/es/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.3/fr/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.3/fr/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.3/it/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.3/it/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.3/ja/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.3/ja/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.3/ko/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.3/ko/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.3/ru/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.3/ru/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.3/zh-hans/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.3/zh-hans/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.3/zh-hant/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.3/zh-hant/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.5/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.5/System.IO.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.5/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.5/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.5/de/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.5/de/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.5/es/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.5/es/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.5/fr/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.5/fr/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.5/it/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.5/it/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.5/ja/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.5/ja/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.5/ko/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.5/ko/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.5/ru/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.5/ru/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.5/zh-hans/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.5/zh-hans/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.5/zh-hant/System.IO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.IO.4.3.0/ref/netstandard1.5/zh-hant/System.IO.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.IO.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Net.Http.4.3.4/.signature.p7s -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/System.Net.Http.4.3.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Net.Http.4.3.4/System.Net.Http.4.3.4.nupkg -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Net.Http.4.3.4/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Net.Http.4.3.4/dotnet_library_license.txt -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/lib/Xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/lib/monoandroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/lib/monotouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/lib/net46/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Net.Http.4.3.4/lib/net46/System.Net.Http.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/lib/portable-net45+win8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/ref/Xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/ref/monoandroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/ref/monotouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/ref/net46/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Net.Http.4.3.4/ref/net46/System.Net.Http.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/ref/netcore50/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Net.Http.4.3.4/ref/netcore50/System.Net.Http.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/ref/netstandard1.1/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Net.Http.4.3.4/ref/netstandard1.1/System.Net.Http.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/ref/netstandard1.3/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Net.Http.4.3.4/ref/netstandard1.3/System.Net.Http.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/ref/portable-net45+win8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/runtimes/unix/lib/netstandard1.6/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Net.Http.4.3.4/runtimes/unix/lib/netstandard1.6/System.Net.Http.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/runtimes/win/lib/net46/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Net.Http.4.3.4/runtimes/win/lib/net46/System.Net.Http.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/runtimes/win/lib/netcore50/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Net.Http.4.3.4/runtimes/win/lib/netcore50/System.Net.Http.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Net.Http.4.3.4/runtimes/win/lib/netstandard1.3/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Net.Http.4.3.4/runtimes/win/lib/netstandard1.3/System.Net.Http.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/.signature.p7s -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/System.Runtime.4.3.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/System.Runtime.4.3.1.nupkg -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/dotnet_library_license.txt -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/lib/net462/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/lib/net462/System.Runtime.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/lib/portable-net45+win8+wp80+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/lib/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/net462/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/net462/System.Runtime.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netcore50/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netcore50/System.Runtime.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netcore50/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netcore50/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netcore50/de/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netcore50/de/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netcore50/es/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netcore50/es/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netcore50/fr/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netcore50/fr/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netcore50/it/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netcore50/it/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netcore50/ja/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netcore50/ja/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netcore50/ko/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netcore50/ko/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netcore50/ru/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netcore50/ru/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netcore50/zh-hans/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netcore50/zh-hans/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netcore50/zh-hant/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netcore50/zh-hant/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.0/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.0/System.Runtime.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.0/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.0/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.0/de/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.0/de/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.0/es/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.0/es/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.0/fr/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.0/fr/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.0/it/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.0/it/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.0/ja/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.0/ja/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.0/ko/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.0/ko/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.0/ru/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.0/ru/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.0/zh-hans/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.0/zh-hans/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.0/zh-hant/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.0/zh-hant/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.2/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.2/System.Runtime.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.2/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.2/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.2/de/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.2/de/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.2/es/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.2/es/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.2/fr/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.2/fr/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.2/it/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.2/it/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.2/ja/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.2/ja/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.2/ko/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.2/ko/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.2/ru/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.2/ru/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.2/zh-hans/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.2/zh-hans/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.2/zh-hant/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.2/zh-hant/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.3/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.3/System.Runtime.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.3/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.3/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.3/de/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.3/de/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.3/es/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.3/es/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.3/fr/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.3/fr/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.3/it/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.3/it/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.3/ja/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.3/ja/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.3/ko/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.3/ko/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.3/ru/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.3/ru/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.3/zh-hans/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.3/zh-hans/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.3/zh-hant/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.3/zh-hant/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.5/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.5/System.Runtime.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.5/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.5/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.5/de/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.5/de/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.5/es/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.5/es/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.5/fr/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.5/fr/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.5/it/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.5/it/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.5/ja/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.5/ja/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.5/ko/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.5/ko/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.5/ru/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.5/ru/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.5/zh-hans/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.5/zh-hans/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.5/zh-hant/System.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Runtime.4.3.1/ref/netstandard1.5/zh-hant/System.Runtime.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/portable-net45+win8+wp80+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/wp80/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Runtime.4.3.1/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/.signature.p7s -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/System.Security.Cryptography.Algorithms.4.3.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/System.Security.Cryptography.Algorithms.4.3.1.nupkg -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/dotnet_library_license.txt -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/lib/net46/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/lib/net46/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/lib/net461/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/lib/net461/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/lib/net463/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/lib/net463/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/ref/net46/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/ref/net46/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/ref/net461/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/ref/net461/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/ref/net463/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/ref/net463/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Algorithms.4.3.1/runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/.signature.p7s -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/System.Security.Cryptography.Encoding.4.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/System.Security.Cryptography.Encoding.4.3.0.nupkg -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/lib/net46/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/lib/net46/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/net46/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/net46/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/netstandard1.3/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/netstandard1.3/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/netstandard1.3/System.Security.Cryptography.Encoding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/netstandard1.3/System.Security.Cryptography.Encoding.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Encoding.4.3.0/runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/.signature.p7s -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/System.Security.Cryptography.Primitives.4.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/System.Security.Cryptography.Primitives.4.3.0.nupkg -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/lib/net46/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/lib/net46/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/lib/netstandard1.3/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/lib/netstandard1.3/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/ref/net46/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/ref/net46/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/ref/netstandard1.3/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/ref/netstandard1.3/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.Primitives.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/.signature.p7s -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/System.Security.Cryptography.X509Certificates.4.3.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/System.Security.Cryptography.X509Certificates.4.3.2.nupkg -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/dotnet_library_license.txt -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/lib/net46/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/lib/net46/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/lib/net461/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/lib/net461/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/ref/net46/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/ref/net46/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/ref/net461/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/ref/net461/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/InstaMacBot/packages/System.Security.Cryptography.X509Certificates.4.3.2/runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/_config.yml -------------------------------------------------------------------------------- /documentation/Documentation_InstaMacBot.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/documentation/Documentation_InstaMacBot.zip -------------------------------------------------------------------------------- /documentation/quick class diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/documentation/quick class diagram.svg -------------------------------------------------------------------------------- /resources/Instagram_logo_2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/resources/Instagram_logo_2016.png -------------------------------------------------------------------------------- /resources/Instagram_logo_2016.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/resources/Instagram_logo_2016.psd -------------------------------------------------------------------------------- /resources/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/resources/logo.ico -------------------------------------------------------------------------------- /resources/robot_PNG96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaMaccarini/InstaMacBot/HEAD/resources/robot_PNG96.png --------------------------------------------------------------------------------