-
Notifications
You must be signed in to change notification settings - Fork 2
/
PerformanceJsonParseTests.cs
500 lines (480 loc) · 312 KB
/
PerformanceJsonParseTests.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
using System;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Reflection;
using System.Threading;
using System.Threading.Tasks;
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Order;
using NuGet.Common;
using NuGet.Configuration;
using NuGet.Protocol;
using NuGet.Protocol.Core.Types;
using Xunit;
namespace Nuget.Protocol.Benchmarking
{
[MemoryDiagnoser]
[Orderer(SummaryOrderPolicy.FastestToSlowest)]
[RankColumn]
public class PerformanceJsonParseTests
{
private static Stream GetEmbeddedSource(string resoucename)
{
resoucename = "Nuget.Protocol.Benchmarking." + resoucename;
var assembly = Assembly.GetExecutingAssembly();
var stream = assembly.GetManifestResourceStream(resoucename);
if (stream == null)
{
throw new Exception($"resource {resoucename} not found");
}
return stream;
}
[Params("S", "M", "L")]
public string Load { get; set; } = "XL";
private string ResourceName()
{
if(string.IsNullOrWhiteSpace(Load) || Load == "S")
{
return @"_";
}
else if(Load == "M")
{
return @"Newtonsoft.Json";
}
else if(Load == "L")
{
return @"Fake";
}
else if(Load == "AZDEV")
{
return @"Microsoft.Cortana.Runtime.Framework";
}
return @"Microsoft.Cortana.Runtime.Framework";
}
[Theory]
[InlineData(0)]
public async Task PackageMetadataResourceV3_UnitTestAsync(int testNo)
{
PackageMetadataResourceV3_TestAsync(testNo);
}
public async Task PackageMetadataResourceV3_TestAsync(int testNo)
{
// Arrange
var additionalProviders = new[]
{
new Lazy<INuGetResourceProvider>(() => new FakeHttpHandlerProvider())
};
var resourceProviders = Repository.Provider.GetCoreV3().Concat(additionalProviders);
var source = new PackageSource("https://api.nuget.org/v3/index.json");
var repo = new SourceRepository(source, resourceProviders);
var resource = await repo.GetResourceAsync<PackageMetadataResource>();
resource.UseNew = testNo;
// Act
using (var sourceCacheContext = new SourceCacheContext{
DirectDownload = true
})
{
//var package = Variation == 0 ? "Newtonsoft.Json" : "RavenDB";
var package = ResourceName();
var metadata = await resource.GetMetadataAsync(package, includePrerelease: true, includeUnlisted: true, sourceCacheContext: sourceCacheContext, log: NullLogger.Instance, CancellationToken.None);
//Assert
Assert.True(metadata.Any());
}
}
[Fact]
[Benchmark(Description = "Test0:OldImplementation", Baseline = true)]
public async Task PackageMetadataResourceV3_GetMetadataAsync0()
{
PackageMetadataResourceV3_TestAsync(0);
}
[Fact]
[Benchmark(Description = "Test1:NewImplementation")]
public async Task PackageMetadataResourceV3_GetMetadataAsync1()
{
PackageMetadataResourceV3_TestAsync(1);
}
public class FakeHttpMessageHandler : HttpMessageHandler
{
protected override Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
{
string responseString;
StreamReader reader = null;
switch(request.RequestUri.OriginalString)
{
case "https://api.nuget.org/v3/index.json":
responseString =
#region service index
@"{
""version"": ""3.0.0"",
""resources"": [
{
""@id"": ""https://azuresearch-usnc.nuget.org/query"",
""@type"": ""SearchQueryService"",
""comment"": ""Query endpoint of NuGet Search service (primary)""
},
{
""@id"": ""https://azuresearch-ussc.nuget.org/query"",
""@type"": ""SearchQueryService"",
""comment"": ""Query endpoint of NuGet Search service (secondary)""
},
{
""@id"": ""https://azuresearch-usnc.nuget.org/autocomplete"",
""@type"": ""SearchAutocompleteService"",
""comment"": ""Autocomplete endpoint of NuGet Search service (primary)""
},
{
""@id"": ""https://azuresearch-ussc.nuget.org/autocomplete"",
""@type"": ""SearchAutocompleteService"",
""comment"": ""Autocomplete endpoint of NuGet Search service (secondary)""
},
{
""@id"": ""https://azuresearch-usnc.nuget.org/"",
""@type"": ""SearchGalleryQueryService/3.0.0-rc"",
""comment"": ""Azure Website based Search Service used by Gallery (primary)""
},
{
""@id"": ""https://azuresearch-ussc.nuget.org/"",
""@type"": ""SearchGalleryQueryService/3.0.0-rc"",
""comment"": ""Azure Website based Search Service used by Gallery (secondary)""
},
{
""@id"": ""https://api.nuget.org/v3/registration5-semver1/"",
""@type"": ""RegistrationsBaseUrl"",
""comment"": ""Base URL of Azure storage where NuGet package registration info is stored""
},
{
""@id"": ""https://api.nuget.org/v3-flatcontainer/"",
""@type"": ""PackageBaseAddress/3.0.0"",
""comment"": ""Base URL of where NuGet packages are stored, in the format https://api.nuget.org/v3-flatcontainer/{id-lower}/{version-lower}/{id-lower}.{version-lower}.nupkg""
},
{
""@id"": ""https://www.nuget.org/api/v2"",
""@type"": ""LegacyGallery""
},
{
""@id"": ""https://www.nuget.org/api/v2"",
""@type"": ""LegacyGallery/2.0.0""
},
{
""@id"": ""https://www.nuget.org/api/v2/package"",
""@type"": ""PackagePublish/2.0.0""
},
{
""@id"": ""https://www.nuget.org/api/v2/symbolpackage"",
""@type"": ""SymbolPackagePublish/4.9.0"",
""comment"": ""The gallery symbol publish endpoint.""
},
{
""@id"": ""https://azuresearch-usnc.nuget.org/query"",
""@type"": ""SearchQueryService/3.0.0-rc"",
""comment"": ""Query endpoint of NuGet Search service (primary) used by RC clients""
},
{
""@id"": ""https://azuresearch-ussc.nuget.org/query"",
""@type"": ""SearchQueryService/3.0.0-rc"",
""comment"": ""Query endpoint of NuGet Search service (secondary) used by RC clients""
},
{
""@id"": ""https://azuresearch-usnc.nuget.org/query"",
""@type"": ""SearchQueryService/3.5.0"",
""comment"": ""Query endpoint of NuGet Search service (primary) that supports package type filtering""
},
{
""@id"": ""https://azuresearch-ussc.nuget.org/query"",
""@type"": ""SearchQueryService/3.5.0"",
""comment"": ""Query endpoint of NuGet Search service (secondary) that supports package type filtering""
},
{
""@id"": ""https://azuresearch-usnc.nuget.org/autocomplete"",
""@type"": ""SearchAutocompleteService/3.0.0-rc"",
""comment"": ""Autocomplete endpoint of NuGet Search service (primary) used by RC clients""
},
{
""@id"": ""https://azuresearch-ussc.nuget.org/autocomplete"",
""@type"": ""SearchAutocompleteService/3.0.0-rc"",
""comment"": ""Autocomplete endpoint of NuGet Search service (secondary) used by RC clients""
},
{
""@id"": ""https://azuresearch-usnc.nuget.org/autocomplete"",
""@type"": ""SearchAutocompleteService/3.5.0"",
""comment"": ""Autocomplete endpoint of NuGet Search service (primary) that supports package type filtering""
},
{
""@id"": ""https://azuresearch-ussc.nuget.org/autocomplete"",
""@type"": ""SearchAutocompleteService/3.5.0"",
""comment"": ""Autocomplete endpoint of NuGet Search service (secondary) that supports package type filtering""
},
{
""@id"": ""https://api.nuget.org/v3/registration5-semver1/"",
""@type"": ""RegistrationsBaseUrl/3.0.0-rc"",
""comment"": ""Base URL of Azure storage where NuGet package registration info is stored used by RC clients. This base URL does not include SemVer 2.0.0 packages.""
},
{
""@id"": ""https://www.nuget.org/packages/{id}/{version}/ReportAbuse"",
""@type"": ""ReportAbuseUriTemplate/3.0.0-rc"",
""comment"": ""URI template used by NuGet Client to construct Report Abuse URL for packages used by RC clients""
},
{
""@id"": ""https://api.nuget.org/v3/registration5-semver1/{id-lower}/index.json"",
""@type"": ""PackageDisplayMetadataUriTemplate/3.0.0-rc"",
""comment"": ""URI template used by NuGet Client to construct display metadata for Packages using ID""
},
{
""@id"": ""https://api.nuget.org/v3/registration5-semver1/{id-lower}/{version-lower}.json"",
""@type"": ""PackageVersionDisplayMetadataUriTemplate/3.0.0-rc"",
""comment"": ""URI template used by NuGet Client to construct display metadata for Packages using ID, Version""
},
{
""@id"": ""https://azuresearch-usnc.nuget.org/query"",
""@type"": ""SearchQueryService/3.0.0-beta"",
""comment"": ""Query endpoint of NuGet Search service (primary) used by beta clients""
},
{
""@id"": ""https://azuresearch-ussc.nuget.org/query"",
""@type"": ""SearchQueryService/3.0.0-beta"",
""comment"": ""Query endpoint of NuGet Search service (secondary) used by beta clients""
},
{
""@id"": ""https://azuresearch-usnc.nuget.org/autocomplete"",
""@type"": ""SearchAutocompleteService/3.0.0-beta"",
""comment"": ""Autocomplete endpoint of NuGet Search service (primary) used by beta clients""
},
{
""@id"": ""https://azuresearch-ussc.nuget.org/autocomplete"",
""@type"": ""SearchAutocompleteService/3.0.0-beta"",
""comment"": ""Autocomplete endpoint of NuGet Search service (secondary) used by beta clients""
},
{
""@id"": ""https://api.nuget.org/v3/registration5-semver1/"",
""@type"": ""RegistrationsBaseUrl/3.0.0-beta"",
""comment"": ""Base URL of Azure storage where NuGet package registration info is stored used by Beta clients. This base URL does not include SemVer 2.0.0 packages.""
},
{
""@id"": ""https://www.nuget.org/packages/{id}/{version}/ReportAbuse"",
""@type"": ""ReportAbuseUriTemplate/3.0.0-beta"",
""comment"": ""URI template used by NuGet Client to construct Report Abuse URL for packages""
},
{
""@id"": ""https://www.nuget.org/packages/{id}/{version}?_src=template"",
""@type"": ""PackageDetailsUriTemplate/5.1.0"",
""comment"": ""URI template used by NuGet Client to construct details URL for packages""
},
{
""@id"": ""https://api.nuget.org/v3/registration5-gz-semver1/"",
""@type"": ""RegistrationsBaseUrl/3.4.0"",
""comment"": ""Base URL of Azure storage where NuGet package registration info is stored in GZIP format. This base URL does not include SemVer 2.0.0 packages.""
},
{
""@id"": ""https://api.nuget.org/v3/registration5-gz-semver2/"",
""@type"": ""RegistrationsBaseUrl/3.6.0"",
""comment"": ""Base URL of Azure storage where NuGet package registration info is stored in GZIP format. This base URL includes SemVer 2.0.0 packages.""
},
{
""@id"": ""https://api.nuget.org/v3/registration5-gz-semver2/"",
""@type"": ""RegistrationsBaseUrl/Versioned"",
""clientVersion"": ""4.3.0-alpha"",
""comment"": ""Base URL of Azure storage where NuGet package registration info is stored in GZIP format. This base URL includes SemVer 2.0.0 packages.""
},
{
""@id"": ""https://api.nuget.org/v3-index/repository-signatures/4.7.0/index.json"",
""@type"": ""RepositorySignatures/4.7.0"",
""comment"": ""The endpoint for discovering information about this package source's repository signatures.""
},
{
""@id"": ""https://api.nuget.org/v3-index/repository-signatures/5.0.0/index.json"",
""@type"": ""RepositorySignatures/5.0.0"",
""comment"": ""The endpoint for discovering information about this package source's repository signatures.""
},
{
""@id"": ""https://api.nuget.org/v3/catalog0/index.json"",
""@type"": ""Catalog/3.0.0"",
""comment"": ""Index of the NuGet package catalog.""
}
],
""@context"": {
""@vocab"": ""http://schema.nuget.org/services#"",
""comment"": ""http://www.w3.org/2000/01/rdf-schema#comment""
}
}
"
#endregion
;
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json":
responseString =
#region
@"{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json"",""@type"":[""catalog:CatalogRoot"",""PackageRegistration"",""catalog:Permalink""],""commitId"":""4816c656-cc91-4e6c-948f-160f1fa34a07"",""commitTimeStamp"":""2020-03-04T22:56:32.8476625+00:00"",""count"":2,""items"":[{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json#page/3.5.8/12.0.1-beta2"",""@type"":""catalog:CatalogPage"",""commitId"":""4816c656-cc91-4e6c-948f-160f1fa34a07"",""commitTimeStamp"":""2020-03-04T22:56:32.8476625+00:00"",""count"":64,""items"":[{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/3.5.8.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.11.37/newtonsoft.json.3.5.8.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":"""",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/3.5.8/newtonsoft.json.3.5.8.nupkg"",""projectUrl"":"""",""published"":""2011-01-08T22:12:57.713+00:00"",""requireLicenseAcceptance"":false,""summary"":""Json.NET is a popular high-performance JSON framework for .NET"",""tags"":[""""],""title"":"""",""version"":""3.5.8""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/3.5.8/newtonsoft.json.3.5.8.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/4.0.1.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.11.37/newtonsoft.json.4.0.1.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":"""",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.0.1/newtonsoft.json.4.0.1.nupkg"",""projectUrl"":""http://james.newtonking.com/projects/json-net.aspx"",""published"":""2011-04-22T01:18:06.287+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""4.0.1""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.0.1/newtonsoft.json.4.0.1.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/4.0.2.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.11.37/newtonsoft.json.4.0.2.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":"""",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.0.2/newtonsoft.json.4.0.2.nupkg"",""projectUrl"":""http://james.newtonking.com/projects/json-net.aspx"",""published"":""2011-04-23T04:49:46.677+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""4.0.2""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.0.2/newtonsoft.json.4.0.2.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/4.0.3.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.10.58/newtonsoft.json.4.0.3.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":"""",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.0.3/newtonsoft.json.4.0.3.nupkg"",""projectUrl"":""http://james.newtonking.com/projects/json-net.aspx"",""published"":""2011-10-02T02:29:53.283+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""4.0.3""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.0.3/newtonsoft.json.4.0.3.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/4.0.4.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.10.47/newtonsoft.json.4.0.4.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":"""",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.0.4/newtonsoft.json.4.0.4.nupkg"",""projectUrl"":""http://james.newtonking.com/projects/json-net.aspx"",""published"":""2011-11-19T09:38:20.143+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""4.0.4""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.0.4/newtonsoft.json.4.0.4.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/4.0.5.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.10.39/newtonsoft.json.4.0.5.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":"""",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.0.5/newtonsoft.json.4.0.5.nupkg"",""projectUrl"":""http://james.newtonking.com/projects/json-net.aspx"",""published"":""2011-12-10T21:17:16.263+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""4.0.5""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.0.5/newtonsoft.json.4.0.5.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/4.0.6.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.10.39/newtonsoft.json.4.0.6.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":"""",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.0.6/newtonsoft.json.4.0.6.nupkg"",""projectUrl"":""http://james.newtonking.com/projects/json-net.aspx"",""published"":""2012-01-23T07:56:04.69+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""4.0.6""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.0.6/newtonsoft.json.4.0.6.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/4.0.7.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.10.39/newtonsoft.json.4.0.7.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":"""",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.0.7/newtonsoft.json.4.0.7.nupkg"",""projectUrl"":""http://james.newtonking.com/projects/json-net.aspx"",""published"":""2012-01-24T09:35:40.127+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""4.0.7""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.0.7/newtonsoft.json.4.0.7.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/4.0.8.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.10.39/newtonsoft.json.4.0.8.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""http://json.codeplex.com/license"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.0.8/newtonsoft.json.4.0.8.nupkg"",""projectUrl"":""http://james.newtonking.com/projects/json-net.aspx"",""published"":""2012-02-12T01:55:12.167+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""4.0.8""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.0.8/newtonsoft.json.4.0.8.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/4.5.1.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.10.01/newtonsoft.json.4.5.1.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""http://json.codeplex.com/license"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.5.1/newtonsoft.json.4.5.1.nupkg"",""projectUrl"":""http://james.newtonking.com/projects/json-net.aspx"",""published"":""2012-03-20T09:12:47.38+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""4.5.1""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.5.1/newtonsoft.json.4.5.1.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/4.5.2.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.10.01/newtonsoft.json.4.5.2.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""http://json.codeplex.com/license"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.5.2/newtonsoft.json.4.5.2.nupkg"",""projectUrl"":""http://james.newtonking.com/projects/json-net.aspx"",""published"":""2012-04-11T11:18:28.687+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""4.5.2""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.5.2/newtonsoft.json.4.5.2.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/4.5.3.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.10.01/newtonsoft.json.4.5.3.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""http://json.codeplex.com/license"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.5.3/newtonsoft.json.4.5.3.nupkg"",""projectUrl"":""http://james.newtonking.com/projects/json-net.aspx"",""published"":""2012-04-13T14:02:58.777+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""4.5.3""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.5.3/newtonsoft.json.4.5.3.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/4.5.4.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.10.01/newtonsoft.json.4.5.4.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""http://json.codeplex.com/license"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.5.4/newtonsoft.json.4.5.4.nupkg"",""projectUrl"":""http://james.newtonking.com/projects/json-net.aspx"",""published"":""2012-04-24T22:16:19.857+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""4.5.4""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.5.4/newtonsoft.json.4.5.4.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/4.5.5.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.09.21/newtonsoft.json.4.5.5.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""http://json.codeplex.com/license"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.5.5/newtonsoft.json.4.5.5.nupkg"",""projectUrl"":""http://james.newtonking.com/projects/json-net.aspx"",""published"":""2012-05-08T09:08:45.257+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""4.5.5""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.5.5/newtonsoft.json.4.5.5.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/4.5.6.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.09.15/newtonsoft.json.4.5.6.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""http://json.codeplex.com/license"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.5.6/newtonsoft.json.4.5.6.nupkg"",""projectUrl"":""http://james.newtonking.com/projects/json-net.aspx"",""published"":""2012-05-30T08:23:30.193+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""4.5.6""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.5.6/newtonsoft.json.4.5.6.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/4.5.7.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.09.08/newtonsoft.json.4.5.7.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""http://json.codeplex.com/license"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.5.7/newtonsoft.json.4.5.7.nupkg"",""projectUrl"":""http://james.newtonking.com/projects/json-net.aspx"",""published"":""2012-06-09T07:42:21.547+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""4.5.7""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.5.7/newtonsoft.json.4.5.7.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/4.5.8.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.09.08/newtonsoft.json.4.5.8.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""http://json.codeplex.com/license"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.5.8/newtonsoft.json.4.5.8.nupkg"",""projectUrl"":""http://james.newtonking.com/projects/json-net.aspx"",""published"":""2012-08-04T02:50:14.437+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""4.5.8""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.5.8/newtonsoft.json.4.5.8.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/4.5.9.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.09.08/newtonsoft.json.4.5.9.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""http://json.codeplex.com/license"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.5.9/newtonsoft.json.4.5.9.nupkg"",""projectUrl"":""http://james.newtonking.com/projects/json-net.aspx"",""published"":""2012-09-08T10:48:50.67+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""4.5.9""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.5.9/newtonsoft.json.4.5.9.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/4.5.10.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.09.08/newtonsoft.json.4.5.10.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""http://json.codeplex.com/license"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.5.10/newtonsoft.json.4.5.10.nupkg"",""projectUrl"":""http://james.newtonking.com/projects/json-net.aspx"",""published"":""2012-10-07T20:20:44.033+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""4.5.10""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.5.10/newtonsoft.json.4.5.10.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/4.5.11.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.08.30/newtonsoft.json.4.5.11.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""http://json.codeplex.com/license"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.5.11/newtonsoft.json.4.5.11.nupkg"",""projectUrl"":""http://james.newtonking.com/projects/json-net.aspx"",""published"":""2012-11-20T10:02:18.983+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""4.5.11""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/4.5.11/newtonsoft.json.4.5.11.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/5.0.1.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.08.24/newtonsoft.json.5.0.1.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""http://json.codeplex.com/license"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/5.0.1/newtonsoft.json.5.0.1.nupkg"",""projectUrl"":""http://james.newtonking.com/projects/json-net.aspx"",""published"":""2013-04-07T07:19:15.433+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""5.0.1""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/5.0.1/newtonsoft.json.5.0.1.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/5.0.2.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.08.24/newtonsoft.json.5.0.2.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""http://json.codeplex.com/license"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/5.0.2/newtonsoft.json.5.0.2.nupkg"",""projectUrl"":""http://james.newtonking.com/projects/json-net.aspx"",""published"":""2013-04-08T11:51:51.753+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""5.0.2""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/5.0.2/newtonsoft.json.5.0.2.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/5.0.3.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.08.24/newtonsoft.json.5.0.3.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""http://json.codeplex.com/license"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/5.0.3/newtonsoft.json.5.0.3.nupkg"",""projectUrl"":""http://james.newtonking.com/projects/json-net.aspx"",""published"":""2013-04-14T01:30:54.227+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""5.0.3""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/5.0.3/newtonsoft.json.5.0.3.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/5.0.4.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.07.46/newtonsoft.json.5.0.4.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""http://json.codeplex.com/license"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/5.0.4/newtonsoft.json.5.0.4.nupkg"",""projectUrl"":""http://james.newtonking.com/projects/json-net.aspx"",""published"":""2013-04-25T04:48:23.967+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""5.0.4""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/5.0.4/newtonsoft.json.5.0.4.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/5.0.5.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.07.46/newtonsoft.json.5.0.5.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""http://json.codeplex.com/license"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/5.0.5/newtonsoft.json.5.0.5.nupkg"",""projectUrl"":""http://james.newtonking.com/projects/json-net.aspx"",""published"":""2013-05-08T09:22:03.657+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""5.0.5""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/5.0.5/newtonsoft.json.5.0.5.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/5.0.6.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.07.46/newtonsoft.json.5.0.6.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""http://json.codeplex.com/license"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/5.0.6/newtonsoft.json.5.0.6.nupkg"",""projectUrl"":""http://james.newtonking.com/projects/json-net.aspx"",""published"":""2013-06-06T03:11:18.287+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""5.0.6""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/5.0.6/newtonsoft.json.5.0.6.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/5.0.7.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.07.32/newtonsoft.json.5.0.7.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/5.0.7/newtonsoft.json.5.0.7.nupkg"",""projectUrl"":""http://james.newtonking.com/json"",""published"":""2013-10-14T10:30:44.237+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""5.0.7""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/5.0.7/newtonsoft.json.5.0.7.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/5.0.8.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.07.32/newtonsoft.json.5.0.8.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/5.0.8/newtonsoft.json.5.0.8.nupkg"",""projectUrl"":""http://james.newtonking.com/json"",""published"":""2013-10-17T00:18:13.58+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""5.0.8""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/5.0.8/newtonsoft.json.5.0.8.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/6.0.1-beta1.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.07.32/newtonsoft.json.6.0.1-beta1.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":false,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/6.0.1-beta1/newtonsoft.json.6.0.1-beta1.nupkg"",""projectUrl"":""http://james.newtonking.com/json"",""published"":""1900-01-01T00:00:00+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""6.0.1-beta1""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/6.0.1-beta1/newtonsoft.json.6.0.1-beta1.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/6.0.1.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.06.53/newtonsoft.json.6.0.1.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/6.0.1/newtonsoft.json.6.0.1.nupkg"",""projectUrl"":""http://james.newtonking.com/json"",""published"":""2014-02-01T11:01:37.443+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""6.0.1""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/6.0.1/newtonsoft.json.6.0.1.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/6.0.2.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.06.46/newtonsoft.json.6.0.2.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/6.0.2/newtonsoft.json.6.0.2.nupkg"",""projectUrl"":""http://james.newtonking.com/json"",""published"":""2014-03-30T05:55:21.737+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""6.0.2""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/6.0.2/newtonsoft.json.6.0.2.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/6.0.3.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.06.46/newtonsoft.json.6.0.3.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/6.0.3/newtonsoft.json.6.0.3.nupkg"",""projectUrl"":""http://james.newtonking.com/json"",""published"":""2014-04-27T05:41:11.613+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""6.0.3""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/6.0.3/newtonsoft.json.6.0.3.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/6.0.4.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.06.46/newtonsoft.json.6.0.4.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/6.0.4/newtonsoft.json.6.0.4.nupkg"",""projectUrl"":""http://james.newtonking.com/json"",""published"":""2014-08-03T09:19:01.703+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""6.0.4""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/6.0.4/newtonsoft.json.6.0.4.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/6.0.5.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.06.46/newtonsoft.json.6.0.5.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/6.0.5/newtonsoft.json.6.0.5.nupkg"",""projectUrl"":""http://james.newtonking.com/json"",""published"":""2014-09-06T23:18:33.987+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""6.0.5""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/6.0.5/newtonsoft.json.6.0.5.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/6.0.6.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.06.07/newtonsoft.json.6.0.6.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/6.0.6/newtonsoft.json.6.0.6.nupkg"",""projectUrl"":""http://james.newtonking.com/json"",""published"":""2014-10-24T10:57:02.883+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""6.0.6""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/6.0.6/newtonsoft.json.6.0.6.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/6.0.7.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.05.58/newtonsoft.json.6.0.7.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":"""",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/6.0.7/newtonsoft.json.6.0.7.nupkg"",""projectUrl"":""http://james.newtonking.com/json"",""published"":""2014-12-23T00:09:09.887+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""6.0.7""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/6.0.7/newtonsoft.json.6.0.7.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/6.0.8.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.05.51/newtonsoft.json.6.0.8.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/6.0.8/icon"",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/6.0.8/newtonsoft.json.6.0.8.nupkg"",""projectUrl"":""http://www.newtonsoft.com/json"",""published"":""2015-01-11T07:30:45.85+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""6.0.8""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/6.0.8/newtonsoft.json.6.0.8.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/7.0.1-beta1.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.05.44/newtonsoft.json.7.0.1-beta1.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/7.0.1-beta1/icon"",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":false,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/7.0.1-beta1/newtonsoft.json.7.0.1-beta1.nupkg"",""projectUrl"":""http://www.newtonsoft.com/json"",""published"":""1900-01-01T00:00:00+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""7.0.1-beta1""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/7.0.1-beta1/newtonsoft.json.7.0.1-beta1.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/7.0.1-beta2.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.05.44/newtonsoft.json.7.0.1-beta2.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/7.0.1-beta2/icon"",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":false,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/7.0.1-beta2/newtonsoft.json.7.0.1-beta2.nupkg"",""projectUrl"":""http://www.newtonsoft.com/json"",""published"":""1900-01-01T00:00:00+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""7.0.1-beta2""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/7.0.1-beta2/newtonsoft.json.7.0.1-beta2.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/7.0.1-beta3.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.05.44/newtonsoft.json.7.0.1-beta3.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/7.0.1-beta3/icon"",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":false,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/7.0.1-beta3/newtonsoft.json.7.0.1-beta3.nupkg"",""projectUrl"":""http://www.newtonsoft.com/json"",""published"":""1900-01-01T00:00:00+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""7.0.1-beta3""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/7.0.1-beta3/newtonsoft.json.7.0.1-beta3.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/7.0.1.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.05.44/newtonsoft.json.7.0.1.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/7.0.1/icon"",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/7.0.1/newtonsoft.json.7.0.1.nupkg"",""projectUrl"":""http://www.newtonsoft.com/json"",""published"":""2015-06-22T12:00:36.44+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""7.0.1""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/7.0.1/newtonsoft.json.7.0.1.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/8.0.1-beta1.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.05.06/newtonsoft.json.8.0.1-beta1.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.1-beta1/icon"",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":false,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.1-beta1/newtonsoft.json.8.0.1-beta1.nupkg"",""projectUrl"":""http://www.newtonsoft.com/json"",""published"":""1900-01-01T00:00:00+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""8.0.1-beta1""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.1-beta1/newtonsoft.json.8.0.1-beta1.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/8.0.1-beta2.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.59/newtonsoft.json.8.0.1-beta2.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.1-beta2/icon"",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":false,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.1-beta2/newtonsoft.json.8.0.1-beta2.nupkg"",""projectUrl"":""http://www.newtonsoft.com/json"",""published"":""1900-01-01T00:00:00+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""8.0.1-beta2""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.1-beta2/newtonsoft.json.8.0.1-beta2.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/8.0.1-beta3.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.8.0.1-beta3.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.1-beta3/icon"",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":false,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.1-beta3/newtonsoft.json.8.0.1-beta3.nupkg"",""projectUrl"":""http://www.newtonsoft.com/json"",""published"":""1900-01-01T00:00:00+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""8.0.1-beta3""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.1-beta3/newtonsoft.json.8.0.1-beta3.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/8.0.1-beta4.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.8.0.1-beta4.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.1-beta4/icon"",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":false,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.1-beta4/newtonsoft.json.8.0.1-beta4.nupkg"",""projectUrl"":""http://www.newtonsoft.com/json"",""published"":""1900-01-01T00:00:00+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""8.0.1-beta4""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.1-beta4/newtonsoft.json.8.0.1-beta4.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/8.0.1.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.05.44/newtonsoft.json.8.0.1.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.1/icon"",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.1/newtonsoft.json.8.0.1.nupkg"",""projectUrl"":""http://www.newtonsoft.com/json"",""published"":""2015-12-29T01:03:30.737+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""8.0.1""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.1/newtonsoft.json.8.0.1.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/8.0.2.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.8.0.2.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.2/icon"",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.2/newtonsoft.json.8.0.2.nupkg"",""projectUrl"":""http://www.newtonsoft.com/json"",""published"":""2016-01-09T01:06:39.39+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""8.0.2""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.2/newtonsoft.json.8.0.2.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/8.0.3.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.07/newtonsoft.json.8.0.3.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.3/icon"",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.3/newtonsoft.json.8.0.3.nupkg"",""projectUrl"":""http://www.newtonsoft.com/json"",""published"":""2016-03-14T09:03:38.617+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""8.0.3""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.3/newtonsoft.json.8.0.3.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/8.0.4-beta1.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""dependencyGroups"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netframework4.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netframework4.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netframework3.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework3.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netframework2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework2.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netportable4.5-profile259"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable4.5-Profile259""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netportable4.0-profile328"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable4.0-Profile328""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netstandard1.0"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netstandard1.0/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.0.1-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netstandard1.0/system.collections"",""@type"":""PackageDependency"",""id"":""System.Collections"",""range"":""[4.0.11-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.collections/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netstandard1.0/system.diagnostics.debug"",""@type"":""PackageDependency"",""id"":""System.Diagnostics.Debug"",""range"":""[4.0.11-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.debug/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netstandard1.0/system.dynamic.runtime"",""@type"":""PackageDependency"",""id"":""System.Dynamic.Runtime"",""range"":""[4.0.11-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.dynamic.runtime/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netstandard1.0/system.globalization"",""@type"":""PackageDependency"",""id"":""System.Globalization"",""range"":""[4.0.11-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.globalization/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netstandard1.0/system.io"",""@type"":""PackageDependency"",""id"":""System.IO"",""range"":""[4.1.0-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.io/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netstandard1.0/system.linq"",""@type"":""PackageDependency"",""id"":""System.Linq"",""range"":""[4.1.0-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.linq/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netstandard1.0/system.linq.expressions"",""@type"":""PackageDependency"",""id"":""System.Linq.Expressions"",""range"":""[4.0.11-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.linq.expressions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netstandard1.0/system.objectmodel"",""@type"":""PackageDependency"",""id"":""System.ObjectModel"",""range"":""[4.0.12-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.objectmodel/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netstandard1.0/system.reflection"",""@type"":""PackageDependency"",""id"":""System.Reflection"",""range"":""[4.1.0-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.reflection/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netstandard1.0/system.reflection.extensions"",""@type"":""PackageDependency"",""id"":""System.Reflection.Extensions"",""range"":""[4.0.1-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netstandard1.0/system.resources.resourcemanager"",""@type"":""PackageDependency"",""id"":""System.Resources.ResourceManager"",""range"":""[4.0.1-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netstandard1.0/system.runtime"",""@type"":""PackageDependency"",""id"":""System.Runtime"",""range"":""[4.1.0-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netstandard1.0/system.runtime.extensions"",""@type"":""PackageDependency"",""id"":""System.Runtime.Extensions"",""range"":""[4.1.0-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netstandard1.0/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.1.1-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netstandard1.0/system.text.encoding"",""@type"":""PackageDependency"",""id"":""System.Text.Encoding"",""range"":""[4.0.11-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.encoding/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netstandard1.0/system.text.encoding.extensions"",""@type"":""PackageDependency"",""id"":""System.Text.Encoding.Extensions"",""range"":""[4.0.11-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.encoding.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netstandard1.0/system.text.regularexpressions"",""@type"":""PackageDependency"",""id"":""System.Text.RegularExpressions"",""range"":""[4.0.12-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.regularexpressions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netstandard1.0/system.threading"",""@type"":""PackageDependency"",""id"":""System.Threading"",""range"":""[4.0.11-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netstandard1.0/system.threading.tasks"",""@type"":""PackageDependency"",""id"":""System.Threading.Tasks"",""range"":""[4.0.11-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.threading.tasks/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netstandard1.0/system.xml.readerwriter"",""@type"":""PackageDependency"",""id"":""System.Xml.ReaderWriter"",""range"":""[4.0.11-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.8.0.4-beta1.json#dependencygroup/.netstandard1.0/system.xml.xdocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XDocument"",""range"":""[4.0.11-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xdocument/index.json""}],""targetFramework"":"".NETStandard1.0""}],""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.4-beta1/icon"",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":false,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.4-beta1/newtonsoft.json.8.0.4-beta1.nupkg"",""projectUrl"":""http://www.newtonsoft.com/json"",""published"":""1900-01-01T00:00:00+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""8.0.4-beta1""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/8.0.4-beta1/newtonsoft.json.8.0.4-beta1.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/9.0.1-beta1.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""dependencyGroups"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netframework4.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netframework4.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netframework3.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework3.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netframework2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework2.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netportable4.5-profile259"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable4.5-Profile259""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netportable4.0-profile328"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable4.0-Profile328""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netstandard1.0"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netstandard1.0/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.0.1-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netstandard1.0/system.collections"",""@type"":""PackageDependency"",""id"":""System.Collections"",""range"":""[4.0.11-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.collections/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netstandard1.0/system.diagnostics.debug"",""@type"":""PackageDependency"",""id"":""System.Diagnostics.Debug"",""range"":""[4.0.11-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.debug/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netstandard1.0/system.dynamic.runtime"",""@type"":""PackageDependency"",""id"":""System.Dynamic.Runtime"",""range"":""[4.0.11-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.dynamic.runtime/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netstandard1.0/system.globalization"",""@type"":""PackageDependency"",""id"":""System.Globalization"",""range"":""[4.0.11-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.globalization/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netstandard1.0/system.io"",""@type"":""PackageDependency"",""id"":""System.IO"",""range"":""[4.1.0-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.io/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netstandard1.0/system.linq"",""@type"":""PackageDependency"",""id"":""System.Linq"",""range"":""[4.1.0-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.linq/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netstandard1.0/system.linq.expressions"",""@type"":""PackageDependency"",""id"":""System.Linq.Expressions"",""range"":""[4.0.11-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.linq.expressions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netstandard1.0/system.objectmodel"",""@type"":""PackageDependency"",""id"":""System.ObjectModel"",""range"":""[4.0.12-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.objectmodel/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netstandard1.0/system.reflection"",""@type"":""PackageDependency"",""id"":""System.Reflection"",""range"":""[4.1.0-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.reflection/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netstandard1.0/system.reflection.extensions"",""@type"":""PackageDependency"",""id"":""System.Reflection.Extensions"",""range"":""[4.0.1-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netstandard1.0/system.resources.resourcemanager"",""@type"":""PackageDependency"",""id"":""System.Resources.ResourceManager"",""range"":""[4.0.1-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netstandard1.0/system.runtime"",""@type"":""PackageDependency"",""id"":""System.Runtime"",""range"":""[4.1.0-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netstandard1.0/system.runtime.extensions"",""@type"":""PackageDependency"",""id"":""System.Runtime.Extensions"",""range"":""[4.1.0-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netstandard1.0/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.1.1-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netstandard1.0/system.text.encoding"",""@type"":""PackageDependency"",""id"":""System.Text.Encoding"",""range"":""[4.0.11-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.encoding/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netstandard1.0/system.text.encoding.extensions"",""@type"":""PackageDependency"",""id"":""System.Text.Encoding.Extensions"",""range"":""[4.0.11-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.encoding.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netstandard1.0/system.text.regularexpressions"",""@type"":""PackageDependency"",""id"":""System.Text.RegularExpressions"",""range"":""[4.0.12-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.regularexpressions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netstandard1.0/system.threading"",""@type"":""PackageDependency"",""id"":""System.Threading"",""range"":""[4.0.11-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netstandard1.0/system.threading.tasks"",""@type"":""PackageDependency"",""id"":""System.Threading.Tasks"",""range"":""[4.0.11-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.threading.tasks/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netstandard1.0/system.xml.readerwriter"",""@type"":""PackageDependency"",""id"":""System.Xml.ReaderWriter"",""range"":""[4.0.11-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.52/newtonsoft.json.9.0.1-beta1.json#dependencygroup/.netstandard1.0/system.xml.xdocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XDocument"",""range"":""[4.0.11-rc2-24027, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xdocument/index.json""}],""targetFramework"":"".NETStandard1.0""}],""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/9.0.1-beta1/icon"",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":false,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/9.0.1-beta1/newtonsoft.json.9.0.1-beta1.nupkg"",""projectUrl"":""http://www.newtonsoft.com/json"",""published"":""1900-01-01T00:00:00+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""9.0.1-beta1""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/9.0.1-beta1/newtonsoft.json.9.0.1-beta1.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/9.0.1.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""dependencyGroups"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netframework4.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netframework4.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netframework3.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework3.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netframework2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework2.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netportable4.5-profile259"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable4.5-Profile259""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netportable4.0-profile328"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable4.0-Profile328""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netstandard1.0"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netstandard1.0/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.0.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netstandard1.0/system.collections"",""@type"":""PackageDependency"",""id"":""System.Collections"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.collections/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netstandard1.0/system.diagnostics.debug"",""@type"":""PackageDependency"",""id"":""System.Diagnostics.Debug"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.debug/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netstandard1.0/system.dynamic.runtime"",""@type"":""PackageDependency"",""id"":""System.Dynamic.Runtime"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.dynamic.runtime/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netstandard1.0/system.globalization"",""@type"":""PackageDependency"",""id"":""System.Globalization"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.globalization/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netstandard1.0/system.io"",""@type"":""PackageDependency"",""id"":""System.IO"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.io/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netstandard1.0/system.linq"",""@type"":""PackageDependency"",""id"":""System.Linq"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.linq/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netstandard1.0/system.linq.expressions"",""@type"":""PackageDependency"",""id"":""System.Linq.Expressions"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.linq.expressions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netstandard1.0/system.objectmodel"",""@type"":""PackageDependency"",""id"":""System.ObjectModel"",""range"":""[4.0.12, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.objectmodel/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netstandard1.0/system.reflection"",""@type"":""PackageDependency"",""id"":""System.Reflection"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.reflection/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netstandard1.0/system.reflection.extensions"",""@type"":""PackageDependency"",""id"":""System.Reflection.Extensions"",""range"":""[4.0.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netstandard1.0/system.resources.resourcemanager"",""@type"":""PackageDependency"",""id"":""System.Resources.ResourceManager"",""range"":""[4.0.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netstandard1.0/system.runtime"",""@type"":""PackageDependency"",""id"":""System.Runtime"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netstandard1.0/system.runtime.extensions"",""@type"":""PackageDependency"",""id"":""System.Runtime.Extensions"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netstandard1.0/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.1.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netstandard1.0/system.text.encoding"",""@type"":""PackageDependency"",""id"":""System.Text.Encoding"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.encoding/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netstandard1.0/system.text.encoding.extensions"",""@type"":""PackageDependency"",""id"":""System.Text.Encoding.Extensions"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.encoding.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netstandard1.0/system.text.regularexpressions"",""@type"":""PackageDependency"",""id"":""System.Text.RegularExpressions"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.regularexpressions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netstandard1.0/system.threading"",""@type"":""PackageDependency"",""id"":""System.Threading"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netstandard1.0/system.threading.tasks"",""@type"":""PackageDependency"",""id"":""System.Threading.Tasks"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.threading.tasks/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netstandard1.0/system.xml.readerwriter"",""@type"":""PackageDependency"",""id"":""System.Xml.ReaderWriter"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.1.json#dependencygroup/.netstandard1.0/system.xml.xdocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XDocument"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xdocument/index.json""}],""targetFramework"":"".NETStandard1.0""}],""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/9.0.1/icon"",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/9.0.1/newtonsoft.json.9.0.1.nupkg"",""projectUrl"":""http://www.newtonsoft.com/json"",""published"":""2016-06-22T08:11:45.49+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""9.0.1""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/9.0.1/newtonsoft.json.9.0.1.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/9.0.2-beta1.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""dependencyGroups"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netframework4.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netframework4.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netframework3.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework3.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netframework2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework2.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netportable4.5-profile259"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable4.5-Profile259""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netportable4.0-profile328"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable4.0-Profile328""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.1"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.1/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.0.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.1/system.collections"",""@type"":""PackageDependency"",""id"":""System.Collections"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.collections/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.1/system.diagnostics.debug"",""@type"":""PackageDependency"",""id"":""System.Diagnostics.Debug"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.debug/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.1/system.dynamic.runtime"",""@type"":""PackageDependency"",""id"":""System.Dynamic.Runtime"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.dynamic.runtime/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.1/system.globalization"",""@type"":""PackageDependency"",""id"":""System.Globalization"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.globalization/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.1/system.io"",""@type"":""PackageDependency"",""id"":""System.IO"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.io/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.1/system.linq"",""@type"":""PackageDependency"",""id"":""System.Linq"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.linq/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.1/system.linq.expressions"",""@type"":""PackageDependency"",""id"":""System.Linq.Expressions"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.linq.expressions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.1/system.objectmodel"",""@type"":""PackageDependency"",""id"":""System.ObjectModel"",""range"":""[4.0.12, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.objectmodel/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.1/system.reflection"",""@type"":""PackageDependency"",""id"":""System.Reflection"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.reflection/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.1/system.reflection.extensions"",""@type"":""PackageDependency"",""id"":""System.Reflection.Extensions"",""range"":""[4.0.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.1/system.resources.resourcemanager"",""@type"":""PackageDependency"",""id"":""System.Resources.ResourceManager"",""range"":""[4.0.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.1/system.runtime"",""@type"":""PackageDependency"",""id"":""System.Runtime"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.1/system.runtime.extensions"",""@type"":""PackageDependency"",""id"":""System.Runtime.Extensions"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.1/system.runtime.numerics"",""@type"":""PackageDependency"",""id"":""System.Runtime.Numerics"",""range"":""[4.0.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.numerics/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.1/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.1.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.1/system.text.encoding"",""@type"":""PackageDependency"",""id"":""System.Text.Encoding"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.encoding/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.1/system.text.encoding.extensions"",""@type"":""PackageDependency"",""id"":""System.Text.Encoding.Extensions"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.encoding.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.1/system.text.regularexpressions"",""@type"":""PackageDependency"",""id"":""System.Text.RegularExpressions"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.regularexpressions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.1/system.threading"",""@type"":""PackageDependency"",""id"":""System.Threading"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.1/system.threading.tasks"",""@type"":""PackageDependency"",""id"":""System.Threading.Tasks"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.threading.tasks/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.1/system.xml.readerwriter"",""@type"":""PackageDependency"",""id"":""System.Xml.ReaderWriter"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.1/system.xml.xdocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XDocument"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xdocument/index.json""}],""targetFramework"":"".NETStandard1.1""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.0"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.0/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.0.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.0/system.collections"",""@type"":""PackageDependency"",""id"":""System.Collections"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.collections/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.0/system.diagnostics.debug"",""@type"":""PackageDependency"",""id"":""System.Diagnostics.Debug"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.debug/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.0/system.dynamic.runtime"",""@type"":""PackageDependency"",""id"":""System.Dynamic.Runtime"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.dynamic.runtime/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.0/system.globalization"",""@type"":""PackageDependency"",""id"":""System.Globalization"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.globalization/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.0/system.io"",""@type"":""PackageDependency"",""id"":""System.IO"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.io/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.0/system.linq"",""@type"":""PackageDependency"",""id"":""System.Linq"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.linq/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.0/system.linq.expressions"",""@type"":""PackageDependency"",""id"":""System.Linq.Expressions"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.linq.expressions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.0/system.objectmodel"",""@type"":""PackageDependency"",""id"":""System.ObjectModel"",""range"":""[4.0.12, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.objectmodel/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.0/system.reflection"",""@type"":""PackageDependency"",""id"":""System.Reflection"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.reflection/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.0/system.reflection.extensions"",""@type"":""PackageDependency"",""id"":""System.Reflection.Extensions"",""range"":""[4.0.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.0/system.resources.resourcemanager"",""@type"":""PackageDependency"",""id"":""System.Resources.ResourceManager"",""range"":""[4.0.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.0/system.runtime"",""@type"":""PackageDependency"",""id"":""System.Runtime"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.0/system.runtime.extensions"",""@type"":""PackageDependency"",""id"":""System.Runtime.Extensions"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.0/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.1.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.0/system.text.encoding"",""@type"":""PackageDependency"",""id"":""System.Text.Encoding"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.encoding/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.0/system.text.encoding.extensions"",""@type"":""PackageDependency"",""id"":""System.Text.Encoding.Extensions"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.encoding.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.0/system.text.regularexpressions"",""@type"":""PackageDependency"",""id"":""System.Text.RegularExpressions"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.regularexpressions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.0/system.threading"",""@type"":""PackageDependency"",""id"":""System.Threading"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.0/system.threading.tasks"",""@type"":""PackageDependency"",""id"":""System.Threading.Tasks"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.threading.tasks/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.0/system.xml.readerwriter"",""@type"":""PackageDependency"",""id"":""System.Xml.ReaderWriter"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.00/newtonsoft.json.9.0.2-beta1.json#dependencygroup/.netstandard1.0/system.xml.xdocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XDocument"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xdocument/index.json""}],""targetFramework"":"".NETStandard1.0""}],""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/9.0.2-beta1/icon"",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":false,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/9.0.2-beta1/newtonsoft.json.9.0.2-beta1.nupkg"",""projectUrl"":""http://www.newtonsoft.com/json"",""published"":""1900-01-01T00:00:00+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""9.0.2-beta1""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/9.0.2-beta1/newtonsoft.json.9.0.2-beta1.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/9.0.2-beta2.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""dependencyGroups"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netframework4.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netframework4.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netframework3.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework3.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netframework2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework2.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netportable4.5-profile259"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable4.5-Profile259""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netportable4.0-profile328"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable4.0-Profile328""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.1"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.1/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.0.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.1/system.collections"",""@type"":""PackageDependency"",""id"":""System.Collections"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.collections/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.1/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.1/system.diagnostics.debug"",""@type"":""PackageDependency"",""id"":""System.Diagnostics.Debug"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.debug/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.1/system.dynamic.runtime"",""@type"":""PackageDependency"",""id"":""System.Dynamic.Runtime"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.dynamic.runtime/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.1/system.globalization"",""@type"":""PackageDependency"",""id"":""System.Globalization"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.globalization/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.1/system.io"",""@type"":""PackageDependency"",""id"":""System.IO"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.io/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.1/system.linq"",""@type"":""PackageDependency"",""id"":""System.Linq"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.linq/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.1/system.linq.expressions"",""@type"":""PackageDependency"",""id"":""System.Linq.Expressions"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.linq.expressions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.1/system.objectmodel"",""@type"":""PackageDependency"",""id"":""System.ObjectModel"",""range"":""[4.0.12, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.objectmodel/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.1/system.reflection"",""@type"":""PackageDependency"",""id"":""System.Reflection"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.reflection/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.1/system.reflection.extensions"",""@type"":""PackageDependency"",""id"":""System.Reflection.Extensions"",""range"":""[4.0.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.1/system.resources.resourcemanager"",""@type"":""PackageDependency"",""id"":""System.Resources.ResourceManager"",""range"":""[4.0.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.1/system.runtime"",""@type"":""PackageDependency"",""id"":""System.Runtime"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.1/system.runtime.extensions"",""@type"":""PackageDependency"",""id"":""System.Runtime.Extensions"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.1/system.runtime.numerics"",""@type"":""PackageDependency"",""id"":""System.Runtime.Numerics"",""range"":""[4.0.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.numerics/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.1/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.1.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.1/system.text.encoding"",""@type"":""PackageDependency"",""id"":""System.Text.Encoding"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.encoding/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.1/system.text.encoding.extensions"",""@type"":""PackageDependency"",""id"":""System.Text.Encoding.Extensions"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.encoding.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.1/system.text.regularexpressions"",""@type"":""PackageDependency"",""id"":""System.Text.RegularExpressions"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.regularexpressions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.1/system.threading"",""@type"":""PackageDependency"",""id"":""System.Threading"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.1/system.threading.tasks"",""@type"":""PackageDependency"",""id"":""System.Threading.Tasks"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.threading.tasks/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.1/system.xml.readerwriter"",""@type"":""PackageDependency"",""id"":""System.Xml.ReaderWriter"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.1/system.xml.xdocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XDocument"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xdocument/index.json""}],""targetFramework"":"".NETStandard1.1""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.0"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.0/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.0.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.0/system.collections"",""@type"":""PackageDependency"",""id"":""System.Collections"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.collections/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.0/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.0/system.diagnostics.debug"",""@type"":""PackageDependency"",""id"":""System.Diagnostics.Debug"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.debug/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.0/system.dynamic.runtime"",""@type"":""PackageDependency"",""id"":""System.Dynamic.Runtime"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.dynamic.runtime/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.0/system.globalization"",""@type"":""PackageDependency"",""id"":""System.Globalization"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.globalization/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.0/system.io"",""@type"":""PackageDependency"",""id"":""System.IO"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.io/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.0/system.linq"",""@type"":""PackageDependency"",""id"":""System.Linq"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.linq/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.0/system.linq.expressions"",""@type"":""PackageDependency"",""id"":""System.Linq.Expressions"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.linq.expressions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.0/system.objectmodel"",""@type"":""PackageDependency"",""id"":""System.ObjectModel"",""range"":""[4.0.12, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.objectmodel/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.0/system.reflection"",""@type"":""PackageDependency"",""id"":""System.Reflection"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.reflection/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.0/system.reflection.extensions"",""@type"":""PackageDependency"",""id"":""System.Reflection.Extensions"",""range"":""[4.0.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.0/system.resources.resourcemanager"",""@type"":""PackageDependency"",""id"":""System.Resources.ResourceManager"",""range"":""[4.0.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.0/system.runtime"",""@type"":""PackageDependency"",""id"":""System.Runtime"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.0/system.runtime.extensions"",""@type"":""PackageDependency"",""id"":""System.Runtime.Extensions"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.0/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.1.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.0/system.text.encoding"",""@type"":""PackageDependency"",""id"":""System.Text.Encoding"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.encoding/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.0/system.text.encoding.extensions"",""@type"":""PackageDependency"",""id"":""System.Text.Encoding.Extensions"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.encoding.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.0/system.text.regularexpressions"",""@type"":""PackageDependency"",""id"":""System.Text.RegularExpressions"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.regularexpressions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.0/system.threading"",""@type"":""PackageDependency"",""id"":""System.Threading"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.0/system.threading.tasks"",""@type"":""PackageDependency"",""id"":""System.Threading.Tasks"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.threading.tasks/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.0/system.xml.readerwriter"",""@type"":""PackageDependency"",""id"":""System.Xml.ReaderWriter"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.04.45/newtonsoft.json.9.0.2-beta2.json#dependencygroup/.netstandard1.0/system.xml.xdocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XDocument"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xdocument/index.json""}],""targetFramework"":"".NETStandard1.0""}],""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/9.0.2-beta2/icon"",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":false,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/9.0.2-beta2/newtonsoft.json.9.0.2-beta2.nupkg"",""projectUrl"":""http://www.newtonsoft.com/json"",""published"":""1900-01-01T00:00:00+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""9.0.2-beta2""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/9.0.2-beta2/newtonsoft.json.9.0.2-beta2.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/10.0.1-beta1.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""dependencyGroups"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netframework4.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netframework4.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netframework3.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework3.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netframework2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework2.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netportable4.5-profile259"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable4.5-Profile259""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.1"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.1/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.0.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.1/system.collections"",""@type"":""PackageDependency"",""id"":""System.Collections"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.collections/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.1/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.1/system.diagnostics.debug"",""@type"":""PackageDependency"",""id"":""System.Diagnostics.Debug"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.debug/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.1/system.dynamic.runtime"",""@type"":""PackageDependency"",""id"":""System.Dynamic.Runtime"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.dynamic.runtime/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.1/system.globalization"",""@type"":""PackageDependency"",""id"":""System.Globalization"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.globalization/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.1/system.io"",""@type"":""PackageDependency"",""id"":""System.IO"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.io/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.1/system.linq"",""@type"":""PackageDependency"",""id"":""System.Linq"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.linq/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.1/system.linq.expressions"",""@type"":""PackageDependency"",""id"":""System.Linq.Expressions"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.linq.expressions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.1/system.objectmodel"",""@type"":""PackageDependency"",""id"":""System.ObjectModel"",""range"":""[4.0.12, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.objectmodel/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.1/system.reflection"",""@type"":""PackageDependency"",""id"":""System.Reflection"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.reflection/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.1/system.reflection.extensions"",""@type"":""PackageDependency"",""id"":""System.Reflection.Extensions"",""range"":""[4.0.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.1/system.resources.resourcemanager"",""@type"":""PackageDependency"",""id"":""System.Resources.ResourceManager"",""range"":""[4.0.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.1/system.runtime"",""@type"":""PackageDependency"",""id"":""System.Runtime"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.1/system.runtime.extensions"",""@type"":""PackageDependency"",""id"":""System.Runtime.Extensions"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.1/system.runtime.numerics"",""@type"":""PackageDependency"",""id"":""System.Runtime.Numerics"",""range"":""[4.0.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.numerics/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.1/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.1.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.1/system.text.encoding"",""@type"":""PackageDependency"",""id"":""System.Text.Encoding"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.encoding/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.1/system.text.encoding.extensions"",""@type"":""PackageDependency"",""id"":""System.Text.Encoding.Extensions"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.encoding.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.1/system.text.regularexpressions"",""@type"":""PackageDependency"",""id"":""System.Text.RegularExpressions"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.regularexpressions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.1/system.threading"",""@type"":""PackageDependency"",""id"":""System.Threading"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.1/system.threading.tasks"",""@type"":""PackageDependency"",""id"":""System.Threading.Tasks"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.threading.tasks/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.1/system.xml.readerwriter"",""@type"":""PackageDependency"",""id"":""System.Xml.ReaderWriter"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.1/system.xml.xdocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XDocument"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xdocument/index.json""}],""targetFramework"":"".NETStandard1.1""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.0"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.0/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.0.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.0/system.collections"",""@type"":""PackageDependency"",""id"":""System.Collections"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.collections/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.0/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.0/system.diagnostics.debug"",""@type"":""PackageDependency"",""id"":""System.Diagnostics.Debug"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.debug/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.0/system.dynamic.runtime"",""@type"":""PackageDependency"",""id"":""System.Dynamic.Runtime"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.dynamic.runtime/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.0/system.globalization"",""@type"":""PackageDependency"",""id"":""System.Globalization"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.globalization/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.0/system.io"",""@type"":""PackageDependency"",""id"":""System.IO"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.io/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.0/system.linq"",""@type"":""PackageDependency"",""id"":""System.Linq"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.linq/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.0/system.linq.expressions"",""@type"":""PackageDependency"",""id"":""System.Linq.Expressions"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.linq.expressions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.0/system.objectmodel"",""@type"":""PackageDependency"",""id"":""System.ObjectModel"",""range"":""[4.0.12, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.objectmodel/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.0/system.reflection"",""@type"":""PackageDependency"",""id"":""System.Reflection"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.reflection/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.0/system.reflection.extensions"",""@type"":""PackageDependency"",""id"":""System.Reflection.Extensions"",""range"":""[4.0.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.0/system.resources.resourcemanager"",""@type"":""PackageDependency"",""id"":""System.Resources.ResourceManager"",""range"":""[4.0.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.0/system.runtime"",""@type"":""PackageDependency"",""id"":""System.Runtime"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.0/system.runtime.extensions"",""@type"":""PackageDependency"",""id"":""System.Runtime.Extensions"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.0/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.1.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.0/system.text.encoding"",""@type"":""PackageDependency"",""id"":""System.Text.Encoding"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.encoding/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.0/system.text.encoding.extensions"",""@type"":""PackageDependency"",""id"":""System.Text.Encoding.Extensions"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.encoding.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.0/system.text.regularexpressions"",""@type"":""PackageDependency"",""id"":""System.Text.RegularExpressions"",""range"":""[4.1.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.regularexpressions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.0/system.threading"",""@type"":""PackageDependency"",""id"":""System.Threading"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.0/system.threading.tasks"",""@type"":""PackageDependency"",""id"":""System.Threading.Tasks"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.threading.tasks/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.0/system.xml.readerwriter"",""@type"":""PackageDependency"",""id"":""System.Xml.ReaderWriter"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1-beta1.json#dependencygroup/.netstandard1.0/system.xml.xdocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XDocument"",""range"":""[4.0.11, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xdocument/index.json""}],""targetFramework"":"".NETStandard1.0""}],""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/10.0.1-beta1/icon"",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":false,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/10.0.1-beta1/newtonsoft.json.10.0.1-beta1.nupkg"",""projectUrl"":""http://www.newtonsoft.com/json"",""published"":""1900-01-01T00:00:00+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""10.0.1-beta1""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/10.0.1-beta1/newtonsoft.json.10.0.1-beta1.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/10.0.1.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""dependencyGroups"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netframework4.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netframework4.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netframework3.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework3.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netframework2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework2.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netportable4.5-profile259"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable4.5-Profile259""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/system.collections"",""@type"":""PackageDependency"",""id"":""System.Collections"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.collections/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/system.diagnostics.debug"",""@type"":""PackageDependency"",""id"":""System.Diagnostics.Debug"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.debug/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/system.dynamic.runtime"",""@type"":""PackageDependency"",""id"":""System.Dynamic.Runtime"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.dynamic.runtime/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/system.globalization"",""@type"":""PackageDependency"",""id"":""System.Globalization"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.globalization/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/system.io"",""@type"":""PackageDependency"",""id"":""System.IO"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.io/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/system.linq"",""@type"":""PackageDependency"",""id"":""System.Linq"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.linq/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/system.linq.expressions"",""@type"":""PackageDependency"",""id"":""System.Linq.Expressions"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.linq.expressions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/system.objectmodel"",""@type"":""PackageDependency"",""id"":""System.ObjectModel"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.objectmodel/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/system.reflection"",""@type"":""PackageDependency"",""id"":""System.Reflection"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.reflection/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/system.reflection.extensions"",""@type"":""PackageDependency"",""id"":""System.Reflection.Extensions"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/system.resources.resourcemanager"",""@type"":""PackageDependency"",""id"":""System.Resources.ResourceManager"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/system.runtime"",""@type"":""PackageDependency"",""id"":""System.Runtime"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/system.runtime.extensions"",""@type"":""PackageDependency"",""id"":""System.Runtime.Extensions"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/system.runtime.numerics"",""@type"":""PackageDependency"",""id"":""System.Runtime.Numerics"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.numerics/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/system.runtime.serialization.formatters"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Formatters"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.formatters/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/system.text.encoding"",""@type"":""PackageDependency"",""id"":""System.Text.Encoding"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.encoding/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/system.text.encoding.extensions"",""@type"":""PackageDependency"",""id"":""System.Text.Encoding.Extensions"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.encoding.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/system.text.regularexpressions"",""@type"":""PackageDependency"",""id"":""System.Text.RegularExpressions"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.regularexpressions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/system.threading"",""@type"":""PackageDependency"",""id"":""System.Threading"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/system.threading.tasks"",""@type"":""PackageDependency"",""id"":""System.Threading.Tasks"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.threading.tasks/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/system.xml.readerwriter"",""@type"":""PackageDependency"",""id"":""System.Xml.ReaderWriter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/system.xml.xdocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XDocument"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xdocument/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.3/system.xml.xmldocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XmlDocument"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json""}],""targetFramework"":"".NETStandard1.3""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.0"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.0/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.0/system.collections"",""@type"":""PackageDependency"",""id"":""System.Collections"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.collections/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.0/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.0/system.diagnostics.debug"",""@type"":""PackageDependency"",""id"":""System.Diagnostics.Debug"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.diagnostics.debug/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.0/system.dynamic.runtime"",""@type"":""PackageDependency"",""id"":""System.Dynamic.Runtime"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.dynamic.runtime/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.0/system.globalization"",""@type"":""PackageDependency"",""id"":""System.Globalization"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.globalization/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.0/system.io"",""@type"":""PackageDependency"",""id"":""System.IO"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.io/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.0/system.linq"",""@type"":""PackageDependency"",""id"":""System.Linq"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.linq/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.0/system.linq.expressions"",""@type"":""PackageDependency"",""id"":""System.Linq.Expressions"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.linq.expressions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.0/system.objectmodel"",""@type"":""PackageDependency"",""id"":""System.ObjectModel"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.objectmodel/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.0/system.reflection"",""@type"":""PackageDependency"",""id"":""System.Reflection"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.reflection/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.0/system.reflection.extensions"",""@type"":""PackageDependency"",""id"":""System.Reflection.Extensions"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.reflection.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.0/system.resources.resourcemanager"",""@type"":""PackageDependency"",""id"":""System.Resources.ResourceManager"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.0/system.runtime"",""@type"":""PackageDependency"",""id"":""System.Runtime"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.0/system.runtime.extensions"",""@type"":""PackageDependency"",""id"":""System.Runtime.Extensions"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.0/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.0/system.text.encoding"",""@type"":""PackageDependency"",""id"":""System.Text.Encoding"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.encoding/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.0/system.text.encoding.extensions"",""@type"":""PackageDependency"",""id"":""System.Text.Encoding.Extensions"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.encoding.extensions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.0/system.text.regularexpressions"",""@type"":""PackageDependency"",""id"":""System.Text.RegularExpressions"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.text.regularexpressions/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.0/system.threading"",""@type"":""PackageDependency"",""id"":""System.Threading"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.threading/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.0/system.threading.tasks"",""@type"":""PackageDependency"",""id"":""System.Threading.Tasks"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.threading.tasks/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.0/system.xml.readerwriter"",""@type"":""PackageDependency"",""id"":""System.Xml.ReaderWriter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.readerwriter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.1.json#dependencygroup/.netstandard1.0/system.xml.xdocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XDocument"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xdocument/index.json""}],""targetFramework"":"".NETStandard1.0""}],""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/10.0.1/icon"",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/10.0.1/newtonsoft.json.10.0.1.nupkg"",""projectUrl"":""http://www.newtonsoft.com/json"",""published"":""2017-03-20T07:18:50.84+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""10.0.1""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/10.0.1/newtonsoft.json.10.0.1.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/10.0.2.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.2.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""dependencyGroups"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.2.json#dependencygroup/.netframework4.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.2.json#dependencygroup/.netframework4.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.2.json#dependencygroup/.netframework3.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework3.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.2.json#dependencygroup/.netframework2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework2.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.2.json#dependencygroup/.netportable4.5-profile259"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable4.5-Profile259""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.2.json#dependencygroup/.netportable4.0-profile328"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable4.0-Profile328""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.2.json#dependencygroup/.netstandard1.3"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.2.json#dependencygroup/.netstandard1.3/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.2.json#dependencygroup/.netstandard1.3/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.2.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.2.json#dependencygroup/.netstandard1.3/system.runtime.serialization.formatters"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Formatters"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.formatters/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.2.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.2.json#dependencygroup/.netstandard1.3/system.xml.xmldocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XmlDocument"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json""}],""targetFramework"":"".NETStandard1.3""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.2.json#dependencygroup/.netstandard1.0"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.2.json#dependencygroup/.netstandard1.0/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.2.json#dependencygroup/.netstandard1.0/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.2.json#dependencygroup/.netstandard1.0/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.03.22/newtonsoft.json.10.0.2.json#dependencygroup/.netstandard1.0/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""}],""targetFramework"":"".NETStandard1.0""}],""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/10.0.2/icon"",""id"":""Newtonsoft.Json"",""language"":""en-US"",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":true,""minClientVersion"":"""",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/10.0.2/newtonsoft.json.10.0.2.nupkg"",""projectUrl"":""http://www.newtonsoft.com/json"",""published"":""2017-04-02T06:37:50.91+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""10.0.2""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/10.0.2/newtonsoft.json.10.0.2.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/10.0.3.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.39/newtonsoft.json.10.0.3.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""dependencyGroups"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.39/newtonsoft.json.10.0.3.json#dependencygroup/.netframework2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework2.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.39/newtonsoft.json.10.0.3.json#dependencygroup/.netframework3.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework3.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.39/newtonsoft.json.10.0.3.json#dependencygroup/.netframework4.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.39/newtonsoft.json.10.0.3.json#dependencygroup/.netframework4.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.39/newtonsoft.json.10.0.3.json#dependencygroup/.netstandard1.0"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.39/newtonsoft.json.10.0.3.json#dependencygroup/.netstandard1.0/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.39/newtonsoft.json.10.0.3.json#dependencygroup/.netstandard1.0/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.39/newtonsoft.json.10.0.3.json#dependencygroup/.netstandard1.0/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.39/newtonsoft.json.10.0.3.json#dependencygroup/.netstandard1.0/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""}],""targetFramework"":"".NETStandard1.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.39/newtonsoft.json.10.0.3.json#dependencygroup/.netstandard1.3"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.39/newtonsoft.json.10.0.3.json#dependencygroup/.netstandard1.3/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.39/newtonsoft.json.10.0.3.json#dependencygroup/.netstandard1.3/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.39/newtonsoft.json.10.0.3.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.39/newtonsoft.json.10.0.3.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.39/newtonsoft.json.10.0.3.json#dependencygroup/.netstandard1.3/system.runtime.serialization.formatters"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Formatters"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.formatters/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.39/newtonsoft.json.10.0.3.json#dependencygroup/.netstandard1.3/system.xml.xmldocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XmlDocument"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json""}],""targetFramework"":"".NETStandard1.3""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.39/newtonsoft.json.10.0.3.json#dependencygroup/.netportable0.0-profile328"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile328""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.39/newtonsoft.json.10.0.3.json#dependencygroup/.netportable0.0-profile259"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile259""}],""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/10.0.3/icon"",""id"":""Newtonsoft.Json"",""language"":"""",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":true,""minClientVersion"":""2.12"",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/10.0.3/newtonsoft.json.10.0.3.nupkg"",""projectUrl"":""https://www.newtonsoft.com/json"",""published"":""2017-06-18T02:10:29.603+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""10.0.3""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/10.0.3/newtonsoft.json.10.0.3.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/11.0.1-beta1.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.33/newtonsoft.json.11.0.1-beta1.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""dependencyGroups"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.33/newtonsoft.json.11.0.1-beta1.json#dependencygroup/.netframework2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework2.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.33/newtonsoft.json.11.0.1-beta1.json#dependencygroup/.netframework3.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework3.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.33/newtonsoft.json.11.0.1-beta1.json#dependencygroup/.netframework4.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.33/newtonsoft.json.11.0.1-beta1.json#dependencygroup/.netframework4.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.33/newtonsoft.json.11.0.1-beta1.json#dependencygroup/.netstandard1.0"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.33/newtonsoft.json.11.0.1-beta1.json#dependencygroup/.netstandard1.0/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[2.0.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.33/newtonsoft.json.11.0.1-beta1.json#dependencygroup/.netstandard1.0/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.33/newtonsoft.json.11.0.1-beta1.json#dependencygroup/.netstandard1.0/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.33/newtonsoft.json.11.0.1-beta1.json#dependencygroup/.netstandard1.0/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""}],""targetFramework"":"".NETStandard1.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.33/newtonsoft.json.11.0.1-beta1.json#dependencygroup/.netstandard1.3"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.33/newtonsoft.json.11.0.1-beta1.json#dependencygroup/.netstandard1.3/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[2.0.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.33/newtonsoft.json.11.0.1-beta1.json#dependencygroup/.netstandard1.3/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.33/newtonsoft.json.11.0.1-beta1.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.33/newtonsoft.json.11.0.1-beta1.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.33/newtonsoft.json.11.0.1-beta1.json#dependencygroup/.netstandard1.3/system.runtime.serialization.formatters"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Formatters"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.formatters/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.33/newtonsoft.json.11.0.1-beta1.json#dependencygroup/.netstandard1.3/system.xml.xmldocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XmlDocument"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json""}],""targetFramework"":"".NETStandard1.3""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.33/newtonsoft.json.11.0.1-beta1.json#dependencygroup/.netportable0.0-profile328"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile328""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.33/newtonsoft.json.11.0.1-beta1.json#dependencygroup/.netportable0.0-profile259"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile259""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.33/newtonsoft.json.11.0.1-beta1.json#dependencygroup/.netstandard2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETStandard2.0""}],""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/11.0.1-beta1/icon"",""id"":""Newtonsoft.Json"",""language"":"""",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":false,""minClientVersion"":""2.12"",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/11.0.1-beta1/newtonsoft.json.11.0.1-beta1.nupkg"",""projectUrl"":""https://www.newtonsoft.com/json"",""published"":""1900-01-01T00:00:00+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""11.0.1-beta1""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/11.0.1-beta1/newtonsoft.json.11.0.1-beta1.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/11.0.1-beta2.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.25/newtonsoft.json.11.0.1-beta2.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""dependencyGroups"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.25/newtonsoft.json.11.0.1-beta2.json#dependencygroup/.netframework2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework2.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.25/newtonsoft.json.11.0.1-beta2.json#dependencygroup/.netframework3.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework3.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.25/newtonsoft.json.11.0.1-beta2.json#dependencygroup/.netframework4.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.25/newtonsoft.json.11.0.1-beta2.json#dependencygroup/.netframework4.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.25/newtonsoft.json.11.0.1-beta2.json#dependencygroup/.netportable0.0-profile259"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile259""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.25/newtonsoft.json.11.0.1-beta2.json#dependencygroup/.netportable0.0-profile328"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile328""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.25/newtonsoft.json.11.0.1-beta2.json#dependencygroup/.netstandard1.0"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.25/newtonsoft.json.11.0.1-beta2.json#dependencygroup/.netstandard1.0/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.25/newtonsoft.json.11.0.1-beta2.json#dependencygroup/.netstandard1.0/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.25/newtonsoft.json.11.0.1-beta2.json#dependencygroup/.netstandard1.0/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.25/newtonsoft.json.11.0.1-beta2.json#dependencygroup/.netstandard1.0/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""}],""targetFramework"":"".NETStandard1.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.25/newtonsoft.json.11.0.1-beta2.json#dependencygroup/.netstandard1.3"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.25/newtonsoft.json.11.0.1-beta2.json#dependencygroup/.netstandard1.3/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.25/newtonsoft.json.11.0.1-beta2.json#dependencygroup/.netstandard1.3/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.25/newtonsoft.json.11.0.1-beta2.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.25/newtonsoft.json.11.0.1-beta2.json#dependencygroup/.netstandard1.3/system.runtime.serialization.formatters"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Formatters"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.formatters/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.25/newtonsoft.json.11.0.1-beta2.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.25/newtonsoft.json.11.0.1-beta2.json#dependencygroup/.netstandard1.3/system.xml.xmldocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XmlDocument"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json""}],""targetFramework"":"".NETStandard1.3""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.25/newtonsoft.json.11.0.1-beta2.json#dependencygroup/.netstandard2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETStandard2.0""}],""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/11.0.1-beta2/icon"",""id"":""Newtonsoft.Json"",""language"":"""",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":false,""minClientVersion"":""2.12"",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/11.0.1-beta2/newtonsoft.json.11.0.1-beta2.nupkg"",""projectUrl"":""https://www.newtonsoft.com/json"",""published"":""1900-01-01T00:00:00+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""11.0.1-beta2""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/11.0.1-beta2/newtonsoft.json.11.0.1-beta2.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/11.0.1-beta3.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1-beta3.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""dependencyGroups"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1-beta3.json#dependencygroup/.netframework2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework2.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1-beta3.json#dependencygroup/.netframework3.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework3.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1-beta3.json#dependencygroup/.netframework4.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1-beta3.json#dependencygroup/.netframework4.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1-beta3.json#dependencygroup/.netportable0.0-profile259"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile259""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1-beta3.json#dependencygroup/.netportable0.0-profile328"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile328""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1-beta3.json#dependencygroup/.netstandard1.0"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1-beta3.json#dependencygroup/.netstandard1.0/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1-beta3.json#dependencygroup/.netstandard1.0/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1-beta3.json#dependencygroup/.netstandard1.0/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1-beta3.json#dependencygroup/.netstandard1.0/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""}],""targetFramework"":"".NETStandard1.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1-beta3.json#dependencygroup/.netstandard1.3"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1-beta3.json#dependencygroup/.netstandard1.3/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1-beta3.json#dependencygroup/.netstandard1.3/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1-beta3.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1-beta3.json#dependencygroup/.netstandard1.3/system.runtime.serialization.formatters"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Formatters"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.formatters/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1-beta3.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1-beta3.json#dependencygroup/.netstandard1.3/system.xml.xmldocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XmlDocument"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json""}],""targetFramework"":"".NETStandard1.3""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1-beta3.json#dependencygroup/.netstandard2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETStandard2.0""}],""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/11.0.1-beta3/icon"",""id"":""Newtonsoft.Json"",""language"":"""",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":false,""minClientVersion"":""2.12"",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/11.0.1-beta3/newtonsoft.json.11.0.1-beta3.nupkg"",""projectUrl"":""https://www.newtonsoft.com/json"",""published"":""1900-01-01T00:00:00+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""11.0.1-beta3""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/11.0.1-beta3/newtonsoft.json.11.0.1-beta3.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/11.0.1.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""dependencyGroups"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1.json#dependencygroup/.netframework2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework2.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1.json#dependencygroup/.netframework3.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework3.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1.json#dependencygroup/.netframework4.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1.json#dependencygroup/.netframework4.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1.json#dependencygroup/.netportable0.0-profile259"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile259""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1.json#dependencygroup/.netportable0.0-profile328"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile328""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1.json#dependencygroup/.netstandard1.0"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1.json#dependencygroup/.netstandard1.0/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1.json#dependencygroup/.netstandard1.0/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1.json#dependencygroup/.netstandard1.0/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1.json#dependencygroup/.netstandard1.0/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""}],""targetFramework"":"".NETStandard1.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1.json#dependencygroup/.netstandard1.3"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1.json#dependencygroup/.netstandard1.3/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1.json#dependencygroup/.netstandard1.3/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1.json#dependencygroup/.netstandard1.3/system.runtime.serialization.formatters"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Formatters"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.formatters/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1.json#dependencygroup/.netstandard1.3/system.xml.xmldocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XmlDocument"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json""}],""targetFramework"":"".NETStandard1.3""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.1.json#dependencygroup/.netstandard2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETStandard2.0""}],""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/11.0.1/icon"",""id"":""Newtonsoft.Json"",""language"":"""",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":true,""minClientVersion"":""2.12"",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/11.0.1/newtonsoft.json.11.0.1.nupkg"",""projectUrl"":""https://www.newtonsoft.com/json"",""published"":""2018-02-17T20:59:20.773+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""11.0.1""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/11.0.1/newtonsoft.json.11.0.1.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/11.0.2.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.2.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""dependencyGroups"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.2.json#dependencygroup/.netframework2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework2.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.2.json#dependencygroup/.netframework3.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework3.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.2.json#dependencygroup/.netframework4.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.2.json#dependencygroup/.netframework4.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.2.json#dependencygroup/.netportable0.0-profile259"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile259""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.2.json#dependencygroup/.netportable0.0-profile328"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile328""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.2.json#dependencygroup/.netstandard1.0"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.2.json#dependencygroup/.netstandard1.0/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.2.json#dependencygroup/.netstandard1.0/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.2.json#dependencygroup/.netstandard1.0/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.2.json#dependencygroup/.netstandard1.0/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""}],""targetFramework"":"".NETStandard1.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.2.json#dependencygroup/.netstandard1.3"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.2.json#dependencygroup/.netstandard1.3/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.2.json#dependencygroup/.netstandard1.3/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.2.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.2.json#dependencygroup/.netstandard1.3/system.runtime.serialization.formatters"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Formatters"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.formatters/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.2.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.2.json#dependencygroup/.netstandard1.3/system.xml.xmldocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XmlDocument"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json""}],""targetFramework"":"".NETStandard1.3""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.10.15.01.02.18/newtonsoft.json.11.0.2.json#dependencygroup/.netstandard2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETStandard2.0""}],""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/11.0.2/icon"",""id"":""Newtonsoft.Json"",""language"":"""",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":true,""minClientVersion"":""2.12"",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/11.0.2/newtonsoft.json.11.0.2.nupkg"",""projectUrl"":""https://www.newtonsoft.com/json"",""published"":""2018-03-24T20:18:14.76+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""11.0.2""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/11.0.2/newtonsoft.json.11.0.2.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/12.0.1-beta1.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.11.27.18.54.15/newtonsoft.json.12.0.1-beta1.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""dependencyGroups"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.11.27.18.54.15/newtonsoft.json.12.0.1-beta1.json#dependencygroup/.netframework2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework2.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.11.27.18.54.15/newtonsoft.json.12.0.1-beta1.json#dependencygroup/.netframework3.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework3.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.11.27.18.54.15/newtonsoft.json.12.0.1-beta1.json#dependencygroup/.netframework4.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.11.27.18.54.15/newtonsoft.json.12.0.1-beta1.json#dependencygroup/.netframework4.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.11.27.18.54.15/newtonsoft.json.12.0.1-beta1.json#dependencygroup/.netportable0.0-profile259"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile259""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.11.27.18.54.15/newtonsoft.json.12.0.1-beta1.json#dependencygroup/.netportable0.0-profile328"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile328""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.11.27.18.54.15/newtonsoft.json.12.0.1-beta1.json#dependencygroup/.netstandard1.0"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.11.27.18.54.15/newtonsoft.json.12.0.1-beta1.json#dependencygroup/.netstandard1.0/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.11.27.18.54.15/newtonsoft.json.12.0.1-beta1.json#dependencygroup/.netstandard1.0/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.11.27.18.54.15/newtonsoft.json.12.0.1-beta1.json#dependencygroup/.netstandard1.0/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.11.27.18.54.15/newtonsoft.json.12.0.1-beta1.json#dependencygroup/.netstandard1.0/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""}],""targetFramework"":"".NETStandard1.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.11.27.18.54.15/newtonsoft.json.12.0.1-beta1.json#dependencygroup/.netstandard1.3"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.11.27.18.54.15/newtonsoft.json.12.0.1-beta1.json#dependencygroup/.netstandard1.3/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.11.27.18.54.15/newtonsoft.json.12.0.1-beta1.json#dependencygroup/.netstandard1.3/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.11.27.18.54.15/newtonsoft.json.12.0.1-beta1.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.11.27.18.54.15/newtonsoft.json.12.0.1-beta1.json#dependencygroup/.netstandard1.3/system.runtime.serialization.formatters"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Formatters"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.formatters/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.11.27.18.54.15/newtonsoft.json.12.0.1-beta1.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.11.27.18.54.15/newtonsoft.json.12.0.1-beta1.json#dependencygroup/.netstandard1.3/system.xml.xmldocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XmlDocument"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json""}],""targetFramework"":"".NETStandard1.3""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2018.11.27.18.54.15/newtonsoft.json.12.0.1-beta1.json#dependencygroup/.netstandard2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETStandard2.0""}],""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.1-beta1/icon"",""id"":""Newtonsoft.Json"",""language"":"""",""licenseExpression"":"""",""licenseUrl"":""https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"",""listed"":false,""minClientVersion"":""2.12"",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.1-beta1/newtonsoft.json.12.0.1-beta1.nupkg"",""projectUrl"":""https://www.newtonsoft.com/json"",""published"":""1900-01-01T00:00:00+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""12.0.1-beta1""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.1-beta1/newtonsoft.json.12.0.1-beta1.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/12.0.1-beta2.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1-beta2.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""dependencyGroups"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1-beta2.json#dependencygroup/.netframework2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework2.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1-beta2.json#dependencygroup/.netframework3.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework3.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1-beta2.json#dependencygroup/.netframework4.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1-beta2.json#dependencygroup/.netframework4.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1-beta2.json#dependencygroup/.netportable0.0-profile259"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile259""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1-beta2.json#dependencygroup/.netportable0.0-profile328"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile328""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1-beta2.json#dependencygroup/.netstandard1.0"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1-beta2.json#dependencygroup/.netstandard1.0/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1-beta2.json#dependencygroup/.netstandard1.0/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1-beta2.json#dependencygroup/.netstandard1.0/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1-beta2.json#dependencygroup/.netstandard1.0/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""}],""targetFramework"":"".NETStandard1.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1-beta2.json#dependencygroup/.netstandard1.3"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1-beta2.json#dependencygroup/.netstandard1.3/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1-beta2.json#dependencygroup/.netstandard1.3/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1-beta2.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1-beta2.json#dependencygroup/.netstandard1.3/system.runtime.serialization.formatters"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Formatters"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.formatters/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1-beta2.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1-beta2.json#dependencygroup/.netstandard1.3/system.xml.xmldocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XmlDocument"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json""}],""targetFramework"":"".NETStandard1.3""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1-beta2.json#dependencygroup/.netstandard2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETStandard2.0""}],""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.1-beta2/icon"",""id"":""Newtonsoft.Json"",""language"":"""",""licenseExpression"":""MIT"",""licenseUrl"":""https://www.nuget.org/packages/Newtonsoft.Json/12.0.1-beta2/license"",""listed"":false,""minClientVersion"":""2.12"",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.1-beta2/newtonsoft.json.12.0.1-beta2.nupkg"",""projectUrl"":""https://www.newtonsoft.com/json"",""published"":""1900-01-01T00:00:00+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""12.0.1-beta2""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.1-beta2/newtonsoft.json.12.0.1-beta2.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""}],""parent"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json"",""lower"":""3.5.8"",""upper"":""12.0.1-beta2""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json#page/12.0.1/12.0.3"",""@type"":""catalog:CatalogPage"",""commitId"":""4816c656-cc91-4e6c-948f-160f1fa34a07"",""commitTimeStamp"":""2020-03-04T22:56:32.8476625+00:00"",""count"":8,""items"":[{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/12.0.1.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""dependencyGroups"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1.json#dependencygroup/.netframework2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework2.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1.json#dependencygroup/.netframework3.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework3.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1.json#dependencygroup/.netframework4.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1.json#dependencygroup/.netframework4.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1.json#dependencygroup/.netportable0.0-profile259"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile259""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1.json#dependencygroup/.netportable0.0-profile328"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile328""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1.json#dependencygroup/.netstandard1.0"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1.json#dependencygroup/.netstandard1.0/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1.json#dependencygroup/.netstandard1.0/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1.json#dependencygroup/.netstandard1.0/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1.json#dependencygroup/.netstandard1.0/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""}],""targetFramework"":"".NETStandard1.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1.json#dependencygroup/.netstandard1.3"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1.json#dependencygroup/.netstandard1.3/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1.json#dependencygroup/.netstandard1.3/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1.json#dependencygroup/.netstandard1.3/system.runtime.serialization.formatters"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Formatters"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.formatters/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1.json#dependencygroup/.netstandard1.3/system.xml.xmldocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XmlDocument"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json""}],""targetFramework"":"".NETStandard1.3""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.01.30.23.20.42/newtonsoft.json.12.0.1.json#dependencygroup/.netstandard2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETStandard2.0""}],""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.1/icon"",""id"":""Newtonsoft.Json"",""language"":"""",""licenseExpression"":""MIT"",""licenseUrl"":""https://www.nuget.org/packages/Newtonsoft.Json/12.0.1/license"",""listed"":true,""minClientVersion"":""2.12"",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.1/newtonsoft.json.12.0.1.nupkg"",""projectUrl"":""https://www.newtonsoft.com/json"",""published"":""2018-11-27T18:11:37.08+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""12.0.1""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.1/newtonsoft.json.12.0.1.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/12.0.2-beta1.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.40.02/newtonsoft.json.12.0.2-beta1.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""dependencyGroups"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.40.02/newtonsoft.json.12.0.2-beta1.json#dependencygroup/.netframework2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework2.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.40.02/newtonsoft.json.12.0.2-beta1.json#dependencygroup/.netframework3.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework3.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.40.02/newtonsoft.json.12.0.2-beta1.json#dependencygroup/.netframework4.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.40.02/newtonsoft.json.12.0.2-beta1.json#dependencygroup/.netframework4.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.40.02/newtonsoft.json.12.0.2-beta1.json#dependencygroup/.netportable0.0-profile259"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile259""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.40.02/newtonsoft.json.12.0.2-beta1.json#dependencygroup/.netportable0.0-profile328"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile328""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.40.02/newtonsoft.json.12.0.2-beta1.json#dependencygroup/.netstandard1.0"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.40.02/newtonsoft.json.12.0.2-beta1.json#dependencygroup/.netstandard1.0/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.40.02/newtonsoft.json.12.0.2-beta1.json#dependencygroup/.netstandard1.0/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.40.02/newtonsoft.json.12.0.2-beta1.json#dependencygroup/.netstandard1.0/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.40.02/newtonsoft.json.12.0.2-beta1.json#dependencygroup/.netstandard1.0/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""}],""targetFramework"":"".NETStandard1.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.40.02/newtonsoft.json.12.0.2-beta1.json#dependencygroup/.netstandard1.3"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.40.02/newtonsoft.json.12.0.2-beta1.json#dependencygroup/.netstandard1.3/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.40.02/newtonsoft.json.12.0.2-beta1.json#dependencygroup/.netstandard1.3/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.40.02/newtonsoft.json.12.0.2-beta1.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.40.02/newtonsoft.json.12.0.2-beta1.json#dependencygroup/.netstandard1.3/system.runtime.serialization.formatters"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Formatters"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.formatters/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.40.02/newtonsoft.json.12.0.2-beta1.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.40.02/newtonsoft.json.12.0.2-beta1.json#dependencygroup/.netstandard1.3/system.xml.xmldocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XmlDocument"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json""}],""targetFramework"":"".NETStandard1.3""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.40.02/newtonsoft.json.12.0.2-beta1.json#dependencygroup/.netstandard2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETStandard2.0""}],""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.2-beta1/icon"",""id"":""Newtonsoft.Json"",""language"":"""",""licenseExpression"":""MIT"",""licenseUrl"":""https://www.nuget.org/packages/Newtonsoft.Json/12.0.2-beta1/license"",""listed"":false,""minClientVersion"":""2.12"",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.2-beta1/newtonsoft.json.12.0.2-beta1.nupkg"",""projectUrl"":""https://www.newtonsoft.com/json"",""published"":""1900-01-01T00:00:00+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""12.0.2-beta1""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.2-beta1/newtonsoft.json.12.0.2-beta1.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/12.0.2-beta2.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.52/newtonsoft.json.12.0.2-beta2.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""dependencyGroups"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.52/newtonsoft.json.12.0.2-beta2.json#dependencygroup/.netframework2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework2.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.52/newtonsoft.json.12.0.2-beta2.json#dependencygroup/.netframework3.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework3.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.52/newtonsoft.json.12.0.2-beta2.json#dependencygroup/.netframework4.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.52/newtonsoft.json.12.0.2-beta2.json#dependencygroup/.netframework4.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.52/newtonsoft.json.12.0.2-beta2.json#dependencygroup/.netportable0.0-profile259"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile259""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.52/newtonsoft.json.12.0.2-beta2.json#dependencygroup/.netportable0.0-profile328"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile328""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.52/newtonsoft.json.12.0.2-beta2.json#dependencygroup/.netstandard1.0"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.52/newtonsoft.json.12.0.2-beta2.json#dependencygroup/.netstandard1.0/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.52/newtonsoft.json.12.0.2-beta2.json#dependencygroup/.netstandard1.0/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.52/newtonsoft.json.12.0.2-beta2.json#dependencygroup/.netstandard1.0/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.52/newtonsoft.json.12.0.2-beta2.json#dependencygroup/.netstandard1.0/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""}],""targetFramework"":"".NETStandard1.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.52/newtonsoft.json.12.0.2-beta2.json#dependencygroup/.netstandard1.3"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.52/newtonsoft.json.12.0.2-beta2.json#dependencygroup/.netstandard1.3/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.52/newtonsoft.json.12.0.2-beta2.json#dependencygroup/.netstandard1.3/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.52/newtonsoft.json.12.0.2-beta2.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.52/newtonsoft.json.12.0.2-beta2.json#dependencygroup/.netstandard1.3/system.runtime.serialization.formatters"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Formatters"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.formatters/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.52/newtonsoft.json.12.0.2-beta2.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.52/newtonsoft.json.12.0.2-beta2.json#dependencygroup/.netstandard1.3/system.xml.xmldocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XmlDocument"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json""}],""targetFramework"":"".NETStandard1.3""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.52/newtonsoft.json.12.0.2-beta2.json#dependencygroup/.netstandard2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETStandard2.0""}],""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.2-beta2/icon"",""id"":""Newtonsoft.Json"",""language"":"""",""licenseExpression"":""MIT"",""licenseUrl"":""https://www.nuget.org/packages/Newtonsoft.Json/12.0.2-beta2/license"",""listed"":false,""minClientVersion"":""2.12"",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.2-beta2/newtonsoft.json.12.0.2-beta2.nupkg"",""projectUrl"":""https://www.newtonsoft.com/json"",""published"":""1900-01-01T00:00:00+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""12.0.2-beta2""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.2-beta2/newtonsoft.json.12.0.2-beta2.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/12.0.2-beta3.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.41/newtonsoft.json.12.0.2-beta3.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""dependencyGroups"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.41/newtonsoft.json.12.0.2-beta3.json#dependencygroup/.netframework2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework2.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.41/newtonsoft.json.12.0.2-beta3.json#dependencygroup/.netframework3.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework3.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.41/newtonsoft.json.12.0.2-beta3.json#dependencygroup/.netframework4.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.41/newtonsoft.json.12.0.2-beta3.json#dependencygroup/.netframework4.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.41/newtonsoft.json.12.0.2-beta3.json#dependencygroup/.netportable0.0-profile259"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile259""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.41/newtonsoft.json.12.0.2-beta3.json#dependencygroup/.netportable0.0-profile328"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile328""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.41/newtonsoft.json.12.0.2-beta3.json#dependencygroup/.netstandard1.0"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.41/newtonsoft.json.12.0.2-beta3.json#dependencygroup/.netstandard1.0/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.41/newtonsoft.json.12.0.2-beta3.json#dependencygroup/.netstandard1.0/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.41/newtonsoft.json.12.0.2-beta3.json#dependencygroup/.netstandard1.0/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.41/newtonsoft.json.12.0.2-beta3.json#dependencygroup/.netstandard1.0/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""}],""targetFramework"":"".NETStandard1.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.41/newtonsoft.json.12.0.2-beta3.json#dependencygroup/.netstandard1.3"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.41/newtonsoft.json.12.0.2-beta3.json#dependencygroup/.netstandard1.3/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.41/newtonsoft.json.12.0.2-beta3.json#dependencygroup/.netstandard1.3/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.41/newtonsoft.json.12.0.2-beta3.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.41/newtonsoft.json.12.0.2-beta3.json#dependencygroup/.netstandard1.3/system.runtime.serialization.formatters"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Formatters"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.formatters/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.41/newtonsoft.json.12.0.2-beta3.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.41/newtonsoft.json.12.0.2-beta3.json#dependencygroup/.netstandard1.3/system.xml.xmldocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XmlDocument"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json""}],""targetFramework"":"".NETStandard1.3""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.39.41/newtonsoft.json.12.0.2-beta3.json#dependencygroup/.netstandard2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETStandard2.0""}],""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.2-beta3/icon"",""id"":""Newtonsoft.Json"",""language"":"""",""licenseExpression"":""MIT"",""licenseUrl"":""https://www.nuget.org/packages/Newtonsoft.Json/12.0.2-beta3/license"",""listed"":false,""minClientVersion"":""2.12"",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.2-beta3/newtonsoft.json.12.0.2-beta3.nupkg"",""projectUrl"":""https://www.newtonsoft.com/json"",""published"":""1900-01-01T00:00:00+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""12.0.2-beta3""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.2-beta3/newtonsoft.json.12.0.2-beta3.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/12.0.2.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.26.22/newtonsoft.json.12.0.2.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""dependencyGroups"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.26.22/newtonsoft.json.12.0.2.json#dependencygroup/.netframework2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework2.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.26.22/newtonsoft.json.12.0.2.json#dependencygroup/.netframework3.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework3.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.26.22/newtonsoft.json.12.0.2.json#dependencygroup/.netframework4.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.26.22/newtonsoft.json.12.0.2.json#dependencygroup/.netframework4.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.26.22/newtonsoft.json.12.0.2.json#dependencygroup/.netportable0.0-profile259"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile259""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.26.22/newtonsoft.json.12.0.2.json#dependencygroup/.netportable0.0-profile328"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile328""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.26.22/newtonsoft.json.12.0.2.json#dependencygroup/.netstandard1.0"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.26.22/newtonsoft.json.12.0.2.json#dependencygroup/.netstandard1.0/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.26.22/newtonsoft.json.12.0.2.json#dependencygroup/.netstandard1.0/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.26.22/newtonsoft.json.12.0.2.json#dependencygroup/.netstandard1.0/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.26.22/newtonsoft.json.12.0.2.json#dependencygroup/.netstandard1.0/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""}],""targetFramework"":"".NETStandard1.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.26.22/newtonsoft.json.12.0.2.json#dependencygroup/.netstandard1.3"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.26.22/newtonsoft.json.12.0.2.json#dependencygroup/.netstandard1.3/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.26.22/newtonsoft.json.12.0.2.json#dependencygroup/.netstandard1.3/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.26.22/newtonsoft.json.12.0.2.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.26.22/newtonsoft.json.12.0.2.json#dependencygroup/.netstandard1.3/system.runtime.serialization.formatters"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Formatters"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.formatters/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.26.22/newtonsoft.json.12.0.2.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.26.22/newtonsoft.json.12.0.2.json#dependencygroup/.netstandard1.3/system.xml.xmldocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XmlDocument"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json""}],""targetFramework"":"".NETStandard1.3""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2019.04.22.01.26.22/newtonsoft.json.12.0.2.json#dependencygroup/.netstandard2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETStandard2.0""}],""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.2/icon"",""id"":""Newtonsoft.Json"",""language"":"""",""licenseExpression"":""MIT"",""licenseUrl"":""https://www.nuget.org/packages/Newtonsoft.Json/12.0.2/license"",""listed"":true,""minClientVersion"":""2.12"",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.2/newtonsoft.json.12.0.2.nupkg"",""projectUrl"":""https://www.newtonsoft.com/json"",""published"":""2019-04-22T01:21:49.9+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""12.0.2""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.2/newtonsoft.json.12.0.2.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/12.0.3-beta1.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta1.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""dependencyGroups"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta1.json#dependencygroup/.netframework2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework2.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta1.json#dependencygroup/.netframework3.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework3.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta1.json#dependencygroup/.netframework4.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta1.json#dependencygroup/.netframework4.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta1.json#dependencygroup/.netportable0.0-profile259"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile259""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta1.json#dependencygroup/.netportable0.0-profile328"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile328""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta1.json#dependencygroup/.netstandard1.0"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta1.json#dependencygroup/.netstandard1.0/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta1.json#dependencygroup/.netstandard1.0/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta1.json#dependencygroup/.netstandard1.0/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta1.json#dependencygroup/.netstandard1.0/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""}],""targetFramework"":"".NETStandard1.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta1.json#dependencygroup/.netstandard1.3"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta1.json#dependencygroup/.netstandard1.3/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta1.json#dependencygroup/.netstandard1.3/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta1.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta1.json#dependencygroup/.netstandard1.3/system.runtime.serialization.formatters"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Formatters"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.formatters/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta1.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta1.json#dependencygroup/.netstandard1.3/system.xml.xmldocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XmlDocument"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json""}],""targetFramework"":"".NETStandard1.3""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta1.json#dependencygroup/.netstandard2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETStandard2.0""}],""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.3-beta1/icon"",""id"":""Newtonsoft.Json"",""language"":"""",""licenseExpression"":""MIT"",""licenseUrl"":""https://www.nuget.org/packages/Newtonsoft.Json/12.0.3-beta1/license"",""listed"":false,""minClientVersion"":""2.12"",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.3-beta1/newtonsoft.json.12.0.3-beta1.nupkg"",""projectUrl"":""https://www.newtonsoft.com/json"",""published"":""1900-01-01T00:00:00+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""12.0.3-beta1""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.3-beta1/newtonsoft.json.12.0.3-beta1.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/12.0.3-beta2.json"",""@type"":""Package"",""commitId"":""b5c73dce-c72d-4ac1-9ec6-b09419235eb5"",""commitTimeStamp"":""2020-02-07T22:38:38.7345587+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta2.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""dependencyGroups"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta2.json#dependencygroup/.netframework2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework2.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta2.json#dependencygroup/.netframework3.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework3.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta2.json#dependencygroup/.netframework4.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta2.json#dependencygroup/.netframework4.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta2.json#dependencygroup/.netportable0.0-profile259"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile259""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta2.json#dependencygroup/.netportable0.0-profile328"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile328""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta2.json#dependencygroup/.netstandard1.0"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta2.json#dependencygroup/.netstandard1.0/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta2.json#dependencygroup/.netstandard1.0/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta2.json#dependencygroup/.netstandard1.0/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta2.json#dependencygroup/.netstandard1.0/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""}],""targetFramework"":"".NETStandard1.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta2.json#dependencygroup/.netstandard1.3"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta2.json#dependencygroup/.netstandard1.3/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta2.json#dependencygroup/.netstandard1.3/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta2.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta2.json#dependencygroup/.netstandard1.3/system.runtime.serialization.formatters"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Formatters"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.formatters/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta2.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta2.json#dependencygroup/.netstandard1.3/system.xml.xmldocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XmlDocument"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json""}],""targetFramework"":"".NETStandard1.3""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.01.07.02.40.45/newtonsoft.json.12.0.3-beta2.json#dependencygroup/.netstandard2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETStandard2.0""}],""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.3-beta2/icon"",""id"":""Newtonsoft.Json"",""language"":"""",""licenseExpression"":""MIT"",""licenseUrl"":""https://www.nuget.org/packages/Newtonsoft.Json/12.0.3-beta2/license"",""listed"":false,""minClientVersion"":""2.12"",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.3-beta2/newtonsoft.json.12.0.3-beta2.nupkg"",""projectUrl"":""https://www.newtonsoft.com/json"",""published"":""1900-01-01T00:00:00+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""12.0.3-beta2""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.3-beta2/newtonsoft.json.12.0.3-beta2.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""},{""@id"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/12.0.3.json"",""@type"":""Package"",""commitId"":""4816c656-cc91-4e6c-948f-160f1fa34a07"",""commitTimeStamp"":""2020-03-04T22:56:32.8476625+00:00"",""catalogEntry"":{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.03.04.22.56.07/newtonsoft.json.12.0.3.json"",""@type"":""PackageDetails"",""authors"":""James Newton-King"",""dependencyGroups"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.03.04.22.56.07/newtonsoft.json.12.0.3.json#dependencygroup/.netframework2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework2.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.03.04.22.56.07/newtonsoft.json.12.0.3.json#dependencygroup/.netframework3.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework3.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.03.04.22.56.07/newtonsoft.json.12.0.3.json#dependencygroup/.netframework4.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.03.04.22.56.07/newtonsoft.json.12.0.3.json#dependencygroup/.netframework4.5"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETFramework4.5""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.03.04.22.56.07/newtonsoft.json.12.0.3.json#dependencygroup/.netportable0.0-profile259"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile259""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.03.04.22.56.07/newtonsoft.json.12.0.3.json#dependencygroup/.netportable0.0-profile328"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETPortable0.0-Profile328""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.03.04.22.56.07/newtonsoft.json.12.0.3.json#dependencygroup/.netstandard1.0"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.03.04.22.56.07/newtonsoft.json.12.0.3.json#dependencygroup/.netstandard1.0/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.03.04.22.56.07/newtonsoft.json.12.0.3.json#dependencygroup/.netstandard1.0/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.03.04.22.56.07/newtonsoft.json.12.0.3.json#dependencygroup/.netstandard1.0/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.03.04.22.56.07/newtonsoft.json.12.0.3.json#dependencygroup/.netstandard1.0/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""}],""targetFramework"":"".NETStandard1.0""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.03.04.22.56.07/newtonsoft.json.12.0.3.json#dependencygroup/.netstandard1.3"",""@type"":""PackageDependencyGroup"",""dependencies"":[{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.03.04.22.56.07/newtonsoft.json.12.0.3.json#dependencygroup/.netstandard1.3/microsoft.csharp"",""@type"":""PackageDependency"",""id"":""Microsoft.CSharp"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/microsoft.csharp/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.03.04.22.56.07/newtonsoft.json.12.0.3.json#dependencygroup/.netstandard1.3/netstandard.library"",""@type"":""PackageDependency"",""id"":""NETStandard.Library"",""range"":""[1.6.1, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/netstandard.library/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.03.04.22.56.07/newtonsoft.json.12.0.3.json#dependencygroup/.netstandard1.3/system.componentmodel.typeconverter"",""@type"":""PackageDependency"",""id"":""System.ComponentModel.TypeConverter"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.componentmodel.typeconverter/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.03.04.22.56.07/newtonsoft.json.12.0.3.json#dependencygroup/.netstandard1.3/system.runtime.serialization.formatters"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Formatters"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.formatters/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.03.04.22.56.07/newtonsoft.json.12.0.3.json#dependencygroup/.netstandard1.3/system.runtime.serialization.primitives"",""@type"":""PackageDependency"",""id"":""System.Runtime.Serialization.Primitives"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.runtime.serialization.primitives/index.json""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.03.04.22.56.07/newtonsoft.json.12.0.3.json#dependencygroup/.netstandard1.3/system.xml.xmldocument"",""@type"":""PackageDependency"",""id"":""System.Xml.XmlDocument"",""range"":""[4.3.0, )"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/system.xml.xmldocument/index.json""}],""targetFramework"":"".NETStandard1.3""},{""@id"":""https://api.nuget.org/v3/catalog0/data/2020.03.04.22.56.07/newtonsoft.json.12.0.3.json#dependencygroup/.netstandard2.0"",""@type"":""PackageDependencyGroup"",""targetFramework"":"".NETStandard2.0""}],""description"":""Json.NET is a popular high-performance JSON framework for .NET"",""iconUrl"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.3/icon"",""id"":""Newtonsoft.Json"",""language"":"""",""licenseExpression"":""MIT"",""licenseUrl"":""https://www.nuget.org/packages/Newtonsoft.Json/12.0.3/license"",""listed"":true,""minClientVersion"":""2.12"",""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.3/newtonsoft.json.12.0.3.nupkg"",""projectUrl"":""https://www.newtonsoft.com/json"",""published"":""2019-11-09T01:27:30.723+00:00"",""requireLicenseAcceptance"":false,""summary"":"""",""tags"":[""json""],""title"":""Json.NET"",""version"":""12.0.3""},""packageContent"":""https://api.nuget.org/v3-flatcontainer/newtonsoft.json/12.0.3/newtonsoft.json.12.0.3.nupkg"",""registration"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json""}],""parent"":""https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json"",""lower"":""12.0.1"",""upper"":""12.0.3""}],""@context"":{""@vocab"":""http://schema.nuget.org/schema#"",""catalog"":""http://schema.nuget.org/catalog#"",""xsd"":""http://www.w3.org/2001/XMLSchema#"",""items"":{""@id"":""catalog:item"",""@container"":""@set""},""commitTimeStamp"":{""@id"":""catalog:commitTimeStamp"",""@type"":""xsd:dateTime""},""commitId"":{""@id"":""catalog:commitId""},""count"":{""@id"":""catalog:count""},""parent"":{""@id"":""catalog:parent"",""@type"":""@id""},""tags"":{""@id"":""tag"",""@container"":""@set""},""reasons"":{""@container"":""@set""},""packageTargetFrameworks"":{""@id"":""packageTargetFramework"",""@container"":""@set""},""dependencyGroups"":{""@id"":""dependencyGroup"",""@container"":""@set""},""dependencies"":{""@id"":""dependency"",""@container"":""@set""},""packageContent"":{""@type"":""@id""},""published"":{""@type"":""xsd:dateTime""},""registration"":{""@type"":""@id""}}}"
#endregion
;
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/index.json":
reader = new StreamReader(GetEmbeddedSource("fakeIndex.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/1.0.0-alpha-10/1.66.1.json":
reader = new StreamReader(GetEmbeddedSource("fake1.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/1.66.2/1.74.50.json":
reader = new StreamReader(GetEmbeddedSource("fake2.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/1.74.51/1.74.146.json":
reader = new StreamReader(GetEmbeddedSource("fake3.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/1.74.147/1.74.239.json":
reader = new StreamReader(GetEmbeddedSource("fake4.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/1.74.241/2.0.83-alpha.json":
reader = new StreamReader(GetEmbeddedSource("fake5.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/2.0.84-alpha/2.1.126-alpha.json":
reader = new StreamReader(GetEmbeddedSource("fake6.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/2.1.128-alpha/2.1.218-alpha.json":
reader = new StreamReader(GetEmbeddedSource("fake7.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/2.1.219-alpha/2.1.320-alpha.json":
reader = new StreamReader(GetEmbeddedSource("fake8.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/2.1.321-alpha/2.1.395-alpha.json":
reader = new StreamReader(GetEmbeddedSource("fake9.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/2.1.396-alpha/2.1.482-alpha.json":
reader = new StreamReader(GetEmbeddedSource("fake10.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/2.1.483-alpha/2.1.568-alpha.json":
reader = new StreamReader(GetEmbeddedSource("fake11.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/2.1.569-alpha/2.1.645-alpha.json":
reader = new StreamReader(GetEmbeddedSource("fake12.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/2.1.646-alpha/2.1.748-alpha.json":
reader = new StreamReader(GetEmbeddedSource("fake13.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/2.1.750-alpha/2.3.41-alpha.json":
reader = new StreamReader(GetEmbeddedSource("fake14.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/2.3.43-alpha/2.5.31-alpha.json":
reader = new StreamReader(GetEmbeddedSource("fake15.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/2.5.32-alpha/2.7.0.24-alpha.json":
reader = new StreamReader(GetEmbeddedSource("fake16.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/2.7.0.25-alpha/2.9.24-alpha.json":
reader = new StreamReader(GetEmbeddedSource("fake17.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/2.9.26-alpha/2.11.22-alpha.json":
reader = new StreamReader(GetEmbeddedSource("fake18.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/2.11.25-alpha/3.0.0-alpha5.json":
reader = new StreamReader(GetEmbeddedSource("fake18.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/3.0.0-alpha6/3.7.4.json":
reader = new StreamReader(GetEmbeddedSource("fake19.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/3.7.5/3.18.1.json":
reader = new StreamReader(GetEmbeddedSource("fake20.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/3.18.2/3.34.7.json":
reader = new StreamReader(GetEmbeddedSource("fake21.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/3.35.0/4.9.3.json":
reader = new StreamReader(GetEmbeddedSource("fake22.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/4.9.5/4.23.5.json":
reader = new StreamReader(GetEmbeddedSource("fake23.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/4.23.6/4.44.3.json":
reader = new StreamReader(GetEmbeddedSource("fake24.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/4.44.4/4.64.12.json":
reader = new StreamReader(GetEmbeddedSource("fake25.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/fake/page/4.64.13/5.16.0.json":
reader = new StreamReader(GetEmbeddedSource("fake26.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/_/page/2.11.25-alpha/3.0.0-alpha5.json":
reader = new StreamReader(GetEmbeddedSource("fake27.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/_/index.json":
reader = new StreamReader(GetEmbeddedSource("_Index.json"));
responseString = reader.ReadToEnd();
break;
case "https://api.nuget.org/v3/registration5-gz-semver2/_/index.json#page/1.0.0/1.0.0":
reader = new StreamReader(GetEmbeddedSource("_Page.json"));
responseString = reader.ReadToEnd();
break;
case "https://msasg.pkgs.visualstudio.com/_packaging/Microsoft.Cortana.Upstream.Core/nuget/v3/index.json":
reader = new StreamReader(GetEmbeddedSource("CortonaIndex.json"));
responseString = reader.ReadToEnd();
break;
case "https://msasg.pkgs.visualstudio.com/_packaging/d43272cc-d5c4-47b0-afa3-f92028354207/nuget/v3/registrations2/microsoft.cortana.runtime.framework/index.json":
reader = new StreamReader(GetEmbeddedSource("list_microsoft.cortana.runtime.framework_index.json"));
responseString = reader.ReadToEnd();
break;
default:
throw new NotImplementedException();
}
var responseMessage = new HttpResponseMessage();
if (responseString == null)
{
responseMessage.StatusCode = System.Net.HttpStatusCode.NotFound;
}
else
{
responseMessage.StatusCode = System.Net.HttpStatusCode.OK;
responseMessage.Content = new StringContent(responseString);
}
reader?.Close();
reader?.Dispose();
return Task.FromResult(responseMessage);
}
}
public class FakeNuGetHttpHander : HttpHandlerResource
{
public override HttpClientHandler ClientHandler => new HttpClientHandler();
public override HttpMessageHandler MessageHandler => new FakeHttpMessageHandler();
}
public class FakeHttpHandlerProvider : ResourceProvider
{
public FakeHttpHandlerProvider()
: base(resourceType: typeof(HttpHandlerResource),
name: nameof(FakeNuGetHttpHander),
before: nameof(HttpHandlerResourceV3))
{
}
public override Task<Tuple<bool, INuGetResource>> TryCreate(SourceRepository source, CancellationToken token)
{
return Task.FromResult(new Tuple<bool, INuGetResource>(true, new FakeNuGetHttpHander()));
}
}
}
}