commit 793fe1b50e7abfa068cb9bd5c33b934b898d519a Author: 赵华宇 Date: Mon May 23 10:59:10 2022 +0800 init diff --git a/Application.Shared/Application.Shared.csproj b/Application.Shared/Application.Shared.csproj new file mode 100644 index 0000000..d224b7b --- /dev/null +++ b/Application.Shared/Application.Shared.csproj @@ -0,0 +1,11 @@ + + + + netcoreapp3.1 + + + + + + + diff --git a/Application.Shared/Class1.cs b/Application.Shared/Class1.cs new file mode 100644 index 0000000..893c3ba --- /dev/null +++ b/Application.Shared/Class1.cs @@ -0,0 +1,8 @@ +using System; + +namespace Application.Shared +{ + public class Class1 + { + } +} diff --git a/Application.Shared/Dtos/Units/Imports/BPC.cs b/Application.Shared/Dtos/Units/Imports/BPC.cs new file mode 100644 index 0000000..610cb97 --- /dev/null +++ b/Application.Shared/Dtos/Units/Imports/BPC.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Infrastructure.Excel.Attributes; + +namespace Application.Shared.Dtos.Units.Imports +{ + [TableDto(Name = "广电、邮政、通信")] + [TableHeader(Title = "广电、邮政、通信单位统计表", HorizontalAlignment = HeaderHorizontalAlignment.Center, StartRowIndex = 0, StartCellIndex = 0, EndRowIndex = 0, Auto = true)] + public class BPC + { + [ExcelColumn(Name = "序号", Sort = 1)] + public int Index { get; set; } + [ExcelColumn(Name = "单位名称", Sort = 2)] + public string Name { get; set; } + [ExcelColumn(Name = "所在旗县(市区)", Sort = 3)] + public string Area { get; set; } + [ExcelColumn(Name = "监管级别(一、二、三)", Sort = 4)] + public string RegulatoryLevel { get; set; } + [ExcelColumn(Name = "概况", Sort = 5)] + public PBCSurvey Survey { get; set; } + [ExcelColumn(Name = "消防安全责任人", Sort = 6)] + public PersonInChargeOfSafety PersonInChargeOfSafetyInfo { get; set; } + [ExcelColumn(Name = "消防安全管理人", Sort = 7)] + public SecurityAdministrator SecurityAdministratorInfo { get; set; } + [ExcelColumn(Name = "经度", Sort = 8)] + public string Longitude { get; set; } + [ExcelColumn(Name = "纬度", Sort = 9)] + public string Latitude { get; set; } + } + + [TableColumnDto] + public class PBCSurvey:ISurvey + { + [ExcelColumn(Name = "建筑高度(米)", Sort = 2)] + public string Height { get; set; } + public int HeightValue { get; set; } + [ExcelColumn(Name = "建筑面积(平方米)", Sort = 3)] + public string Area { get; set; } + + [ExcelColumn(Name = "建筑层数(层)", Sort = 1)] + public string UsageNature { get; set; } + public string UsageNatureValue { get; set; } + } +} diff --git a/Application.Shared/Dtos/Units/Imports/BaseInstitusion.cs b/Application.Shared/Dtos/Units/Imports/BaseInstitusion.cs new file mode 100644 index 0000000..753c151 --- /dev/null +++ b/Application.Shared/Dtos/Units/Imports/BaseInstitusion.cs @@ -0,0 +1,18 @@ +using Infrastructure.Excel.Attributes; +using System; +using System.Collections.Generic; +using System.Text; + +namespace Application.Shared.Dtos.Units.Imports +{ + public interface IInstitusion + { + int Index { get; set; } + string Name { get; set; } + string Area { get; set; } + string RegulatoryLevel { get; set; } + ISurvey Survey { get; set; } + PersonInChargeOfSafety PersonInChargeOfSafetyInfo { get; set; } + SecurityAdministrator SecurityAdministratorInfo { get; set; } + } +} diff --git a/Application.Shared/Dtos/Units/Imports/GasStation.cs b/Application.Shared/Dtos/Units/Imports/GasStation.cs new file mode 100644 index 0000000..81993cf --- /dev/null +++ b/Application.Shared/Dtos/Units/Imports/GasStation.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Infrastructure.Excel.Attributes; + +namespace Application.Shared.Dtos.Units.Imports +{ + [TableDto(Name = "加油站")] + [TableHeader(Title = "加油站统计表", HorizontalAlignment = HeaderHorizontalAlignment.Center, StartRowIndex = 0, StartCellIndex = 0, EndRowIndex = 0, Auto = true)] + public class GasStation + { + [ExcelColumn(Name = "序号", Sort = 1)] + public int Index { get; set; } + [ExcelColumn(Name = "单位名称", Sort = 2)] + public string Name { get; set; } + [ExcelColumn(Name = "所在旗县(市区)", Sort = 3)] + public string Area { get; set; } + [ExcelColumn(Name = "监管级别(一、二、三)", Sort = 4,Enums = new []{ "一", "二", "三" })] + public string RegulatoryLevel { get; set; } + [ExcelColumn(Name = "总储量(m3 )", Sort = 5)] + public string TotalReserves { get; set; } + [ExcelColumn(Name = "消防安全责任人", Sort = 6)] + public PersonInChargeOfSafety PersonInChargeOfSafetyInfo { get; set; } + [ExcelColumn(Name = "消防安全管理人", Sort = 7)] + public SecurityAdministrator SecurityAdministratorInfo { get; set; } + [ExcelColumn(Name = "经度", Sort = 8)] + public string Longitude { get; set; } + [ExcelColumn(Name = "纬度", Sort = 9)] + public string Latitude { get; set; } + } +} diff --git a/Application.Shared/Dtos/Units/Imports/Hotel.cs b/Application.Shared/Dtos/Units/Imports/Hotel.cs new file mode 100644 index 0000000..17b3231 --- /dev/null +++ b/Application.Shared/Dtos/Units/Imports/Hotel.cs @@ -0,0 +1,51 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Infrastructure.Excel.Attributes; + +namespace Application.Shared.Dtos.Units.Imports +{ + [TableDto(Name = "宾馆饭店")] + [TableHeader(Title = "宾馆、饭店统计表", HorizontalAlignment = HeaderHorizontalAlignment.Center, StartRowIndex = 0, StartCellIndex = 0, EndRowIndex = 0, Auto = true)] + public class Hotel + { + [ExcelColumn(Name = "序号", Sort = 1)] + public int Index { get; set; } + [ExcelColumn(Name = "单位名称", Sort = 2)] + public string Name { get; set; } + [ExcelColumn(Name = "所在旗县(市区)", Sort = 3)] + public string Area { get; set; } + [ExcelColumn(Name = "监管级别(一、二、三)", Sort = 4)] + public string RegulatoryLevel { get; set; } + [ExcelColumn(Name = "概况", Sort = 5)] + public HotelSurvey Survey { get; set; } + [ExcelColumn(Name = "消防安全责任人", Sort = 6)] + public PersonInChargeOfSafety PersonInChargeOfSafetyInfo { get; set; } + [ExcelColumn(Name = "消防安全管理人", Sort = 7)] + public SecurityAdministrator SecurityAdministratorInfo { get; set; } + [ExcelColumn(Name = "经度", Sort = 8)] + public string Longitude { get; set; } + [ExcelColumn(Name = "纬度", Sort = 9)] + public string Latitude { get; set; } + + public Hotel() + { + Survey = new HotelSurvey(); + PersonInChargeOfSafetyInfo = new PersonInChargeOfSafety(); + SecurityAdministratorInfo = new SecurityAdministrator(); + } + } + + [TableColumnDto] + public class HotelSurvey + { + [ExcelColumn(Name = "建筑高度(m)", Sort = 2)] + public string Height { get; set; } + [ExcelColumn(Name = "建筑面积(m2)", Sort = 1)] + public string Area { get; set; } + + [ExcelColumn(Name = "职工人数(人)", Sort = 3)] + public string EmployeeCount { get; set; } + + } +} diff --git a/Application.Shared/Dtos/Units/Imports/ISurvey.cs b/Application.Shared/Dtos/Units/Imports/ISurvey.cs new file mode 100644 index 0000000..42d8cf1 --- /dev/null +++ b/Application.Shared/Dtos/Units/Imports/ISurvey.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Application.Shared.Dtos.Units.Imports +{ + public interface ISurvey + { + } +} diff --git a/Application.Shared/Dtos/Units/Imports/IndustrialEnterprise.cs b/Application.Shared/Dtos/Units/Imports/IndustrialEnterprise.cs new file mode 100644 index 0000000..1ba7e56 --- /dev/null +++ b/Application.Shared/Dtos/Units/Imports/IndustrialEnterprise.cs @@ -0,0 +1,84 @@ +using Infrastructure.Excel.Attributes; +using System; +using System.Collections.Generic; +using System.Text; + +namespace Application.Shared.Dtos.Units.Imports +{ + [TableDto(Name = "工业企业统计表")] + [TableHeader(Title = "工业企业统计表",HorizontalAlignment = HeaderHorizontalAlignment.Center,StartRowIndex = 0,StartCellIndex = 0,EndRowIndex = 0,Auto = true)] + public class IndustrialEnterprise + { + [ExcelColumn(Name = "序号", Sort = 1)] + public int Index { get; set; } + [ExcelColumn(Name = "单位名称", Sort = 2)] + public string Name { get; set; } + [ExcelColumn(Name = "所在旗县(市区)",Sort = 3)] + public string Area { get; set; } + [ExcelColumn(Name = "监管级别(一、二、三)", Sort = 4)] + public string RegulatoryLevel { get; set; } + [ExcelColumn(Name = "概况", Sort = 5)] + public IndustrialSurvey Survey { get; set; } + [ExcelColumn(Name = "消防安全责任人", Sort = 6)] + public PersonInChargeOfSafety PersonInChargeOfSafetyInfo { get; set; } + [ExcelColumn(Name = "消防安全管理人", Sort = 7)] + public SecurityAdministrator SecurityAdministratorInfo { get; set; } + [ExcelColumn(Name = "经度", Sort = 8)] + public string Longitude { get; set; } + [ExcelColumn(Name = "纬度", Sort = 9)] + public string Latitude { get; set; } + public IndustrialEnterprise() + { + Survey = new IndustrialSurvey(); + PersonInChargeOfSafetyInfo = new PersonInChargeOfSafety(); + SecurityAdministratorInfo = new SecurityAdministrator(); + } + } + + [TableColumnDto] + public class IndustrialSurvey + { + [ExcelColumn(Name = "主要产品", Sort = 1)] + public string MainProduct { get; set; } + [ExcelColumn(Name = "年产值", Sort = 2)] + public string AnnualOutputValue { get; set; } + + [ExcelColumn(Name = "职工人数(人)", Sort = 3)] + public string EmployeeCount { get; set; } + + public int EmployeeCountValue { get; set; } + + [ExcelColumn(Name = "建筑高度(m)", Sort = 4)] + public string BuildingHeight { get; set; } + + public int BuildingHeightValue { get; set; } + + [ExcelColumn(Name = "占地面积(m2)", Sort = 5)] + public string AreaCovered { get; set; } + + public decimal AreaCoveredValue { get; set; } + + [ExcelColumn(Name = "建筑面积(m2)", Sort = 6)] + public string BuildUpArea { get; set; } + + public int BuildUpAreaValue { get; set; } + } + [TableColumnDto] + public class PersonInChargeOfSafety + { + [ExcelColumn(Name = "姓名", Sort = 1)] + public string Name { get; set; } + + [ExcelColumn(Name = "联系电话", Sort = 2)] + public string Phone { get; set; } + } + [TableColumnDto] + public class SecurityAdministrator + { + [ExcelColumn(Name = "姓名", Sort = 1)] + public string Name { get; set; } + + [ExcelColumn(Name = "联系电话", Sort = 2)] + public string Phone { get; set; } + } +} diff --git a/Application.Shared/Dtos/Units/Imports/InflammableAndExplosiveProductionUnit.cs b/Application.Shared/Dtos/Units/Imports/InflammableAndExplosiveProductionUnit.cs new file mode 100644 index 0000000..c61c288 --- /dev/null +++ b/Application.Shared/Dtos/Units/Imports/InflammableAndExplosiveProductionUnit.cs @@ -0,0 +1,44 @@ +using Infrastructure.Excel.Attributes; +using System; +using System.Collections.Generic; +using System.Text; + +namespace Application.Shared.Dtos.Units.Imports +{ + [TableDto(Name = "易燃易爆生产单位")] + [TableHeader(Title = "易燃易爆危险品生产单位统计表", HorizontalAlignment = HeaderHorizontalAlignment.Center, StartRowIndex = 0, StartCellIndex = 0, EndRowIndex = 0, Auto = true)] + public class InflammableAndExplosiveProductionUnit + { + [ExcelColumn(Name = "序号", Sort = 1)] + public int Index { get; set; } + [ExcelColumn(Name = "单位名称", Sort = 2)] + public string Name { get; set; } + [ExcelColumn(Name = "所在旗县(市区)", Sort = 3)] + public string Area { get; set; } + [ExcelColumn(Name = "监管级别(一、二、三)", Sort = 4)] + public string RegulatoryLevel { get; set; } + [ExcelColumn(Name = "概况", Sort = 5)] + public IEPUSurvey Survey { get; set; } + [ExcelColumn(Name = "消防安全责任人", Sort = 6)] + public PersonInChargeOfSafety PersonInChargeOfSafetyInfo { get; set; } + [ExcelColumn(Name = "消防安全管理人", Sort = 7)] + public SecurityAdministrator SecurityAdministratorInfo { get; set; } + [ExcelColumn(Name = "经度", Sort = 8)] + public string Longitude { get; set; } + [ExcelColumn(Name = "纬度", Sort = 9)] + public string Latitude { get; set; } + } + + [TableColumnDto] + public class IEPUSurvey + { + [ExcelColumn(Name = "主要危险物品名称", Sort = 1)] + public string MainDangerousProduct { get; set; } + + [ExcelColumn(Name = "储存量(m3)", Sort = 2)] + public string Storage { get; set; } + + [ExcelColumn(Name = "占地面积(m2)", Sort = 3)] + public string Area { get; set; } + } +} diff --git a/Application.Shared/Dtos/Units/Imports/InflammableAndExplosiveStore.cs b/Application.Shared/Dtos/Units/Imports/InflammableAndExplosiveStore.cs new file mode 100644 index 0000000..6e21aa4 --- /dev/null +++ b/Application.Shared/Dtos/Units/Imports/InflammableAndExplosiveStore.cs @@ -0,0 +1,46 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Infrastructure.Excel.Attributes; + +namespace Application.Shared.Dtos.Units.Imports +{ + [TableDto(Name = "易燃易爆物品库")] + [TableHeader(Title = "易燃易爆危险品存储库统计表", HorizontalAlignment = HeaderHorizontalAlignment.Center, StartRowIndex = 0, StartCellIndex = 0, EndRowIndex = 0, Auto = true)] + public class InflammableAndExplosiveStore + { + [ExcelColumn(Name = "序号", Sort = 1)] + public int Index { get; set; } + [ExcelColumn(Name = "单位名称", Sort = 2)] + public string Name { get; set; } + [ExcelColumn(Name = "所在旗县(市区)", Sort = 3)] + public string Area { get; set; } + [ExcelColumn(Name = "监管级别(一、二、三)", Sort = 4)] + public string RegulatoryLevel { get; set; } + [ExcelColumn(Name = "概况", Sort = 5)] + public IESSurvey Survey { get; set; } + [ExcelColumn(Name = "消防安全责任人", Sort = 6)] + public PersonInChargeOfSafety PersonInChargeOfSafetyInfo { get; set; } + [ExcelColumn(Name = "消防安全管理人", Sort = 7)] + public SecurityAdministrator SecurityAdministratorInfo { get; set; } + [ExcelColumn(Name = "经度", Sort = 8)] + public string Longitude { get; set; } + [ExcelColumn(Name = "纬度", Sort = 9)] + public string Latitude { get; set; } + } + + [TableColumnDto] + public class IESSurvey + { + [ExcelColumn(Name = "主要危险物品名称", Sort = 1)] + public string MainDangerousProduct { get; set; } + + [ExcelColumn(Name = "储量(m3)", Sort = 2)] + public string Storage { get; set; } + public double StorageValue { get; set; } + + [ExcelColumn(Name = "占地面积(m2)", Sort = 3)] + public string Area { get; set; } + public double AreaValue { get; set; } + } +} diff --git a/Application.Shared/Dtos/Units/Imports/LiquefiedGasStation.cs b/Application.Shared/Dtos/Units/Imports/LiquefiedGasStation.cs new file mode 100644 index 0000000..6a14a05 --- /dev/null +++ b/Application.Shared/Dtos/Units/Imports/LiquefiedGasStation.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Infrastructure.Excel.Attributes; + +namespace Application.Shared.Dtos.Units.Imports +{ + [TableDto(Name = "液化气站")] + [TableHeader(Title = "石油液化气、天然气站统计表", HorizontalAlignment = HeaderHorizontalAlignment.Center, StartRowIndex = 0, StartCellIndex = 0, EndRowIndex = 0, Auto = true)] + public class LiquefiedGasStation + { + [ExcelColumn(Name = "序号", Sort = 1)] + public int Index { get; set; } + [ExcelColumn(Name = "单位名称", Sort = 2)] + public string Name { get; set; } + [ExcelColumn(Name = "所在旗县(市区)", Sort = 3)] + public string Area { get; set; } + [ExcelColumn(Name = "监管级别(一、二、三)", Sort = 4, Enums = new[] { "一", "二", "三" })] + public string RegulatoryLevel { get; set; } + [ExcelColumn(Name = "总储量(m3)", Sort = 5)] + public string TotalReserves { get; set; } + [ExcelColumn(Name = "消防安全责任人", Sort = 6)] + public PersonInChargeOfSafety PersonInChargeOfSafetyInfo { get; set; } + [ExcelColumn(Name = "消防安全管理人", Sort = 7)] + public SecurityAdministrator SecurityAdministratorInfo { get; set; } + [ExcelColumn(Name = "经度", Sort = 8)] + public string Longitude { get; set; } + [ExcelColumn(Name = "纬度", Sort = 9)] + public string Latitude { get; set; } + } +} diff --git a/Application.Shared/Dtos/Units/Imports/Market.cs b/Application.Shared/Dtos/Units/Imports/Market.cs new file mode 100644 index 0000000..21c30bd --- /dev/null +++ b/Application.Shared/Dtos/Units/Imports/Market.cs @@ -0,0 +1,46 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Infrastructure.Excel.Attributes; + +namespace Application.Shared.Dtos.Units.Imports +{ + [TableDto(Name = "商场、集贸市场")] + [TableHeader(Title = "商场、集贸市场统计表", HorizontalAlignment = HeaderHorizontalAlignment.Center, StartRowIndex = 0, StartCellIndex = 0, EndRowIndex = 0, Auto = true)] + public class Market + { + [ExcelColumn(Name = "序号", Sort = 1)] + public int Index { get; set; } + [ExcelColumn(Name = "单位名称", Sort = 2)] + public string Name { get; set; } + [ExcelColumn(Name = "所在旗县(市区)", Sort = 3)] + public string Area { get; set; } + [ExcelColumn(Name = "监管级别(一、二、三)", Sort = 4)] + public string RegulatoryLevel { get; set; } + [ExcelColumn(Name = "概况", Sort = 5)] + public MarketSurvey Survey { get; set; } + [ExcelColumn(Name = "消防安全责任人", Sort = 6)] + public PersonInChargeOfSafety PersonInChargeOfSafetyInfo { get; set; } + [ExcelColumn(Name = "消防安全管理人", Sort = 7)] + public SecurityAdministrator SecurityAdministratorInfo { get; set; } + [ExcelColumn(Name = "经度", Sort = 8)] + public string Longitude { get; set; } + [ExcelColumn(Name = "纬度", Sort = 9)] + public string Latitude { get; set; } + } + + [TableColumnDto] + public class MarketSurvey + { + [ExcelColumn(Name = "建筑高度(米)", Sort = 1)] + public string Height { get; set; } + public int HeightValue { get; set; } + [ExcelColumn(Name = "建筑面积(m2)", Sort = 3)] + public string Area { get; set; } + public double AreaValue { get; set; } + + [ExcelColumn(Name = "建筑层数(层)", Sort = 2)] + public string UsageNature { get; set; } + public string UsageNatureValue { get; set; } + } +} diff --git a/Application.Shared/Dtos/Units/Imports/MedicalInstitution.cs b/Application.Shared/Dtos/Units/Imports/MedicalInstitution.cs new file mode 100644 index 0000000..fb83928 --- /dev/null +++ b/Application.Shared/Dtos/Units/Imports/MedicalInstitution.cs @@ -0,0 +1,32 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Infrastructure.Excel.Attributes; + +namespace Application.Shared.Dtos.Units.Imports +{ + [TableDto(Name = "医疗机构")] + [TableHeader(Title = "医疗机构统计表", HorizontalAlignment = HeaderHorizontalAlignment.Center, StartRowIndex = 0, StartCellIndex = 0, EndRowIndex = 0, Auto = true)] + public class MedicalInstitution + { + + [ExcelColumn(Name = "序号", Sort = 1)] + public int Index { get; set; } + [ExcelColumn(Name = "单位名称", Sort = 2)] + public string Name { get; set; } + [ExcelColumn(Name = "所在旗县(市区)", Sort = 3)] + public string Area { get; set; } + [ExcelColumn(Name = "监管级别(一、二、三)", Sort = 4)] + public string RegulatoryLevel { get; set; } + [ExcelColumn(Name = "概况", Sort = 5)] + public WelfareInstitutionSurvey Survey { get; set; } + [ExcelColumn(Name = "消防安全责任人", Sort = 6)] + public PersonInChargeOfSafety PersonInChargeOfSafetyInfo { get; set; } + [ExcelColumn(Name = "消防安全管理人", Sort = 7)] + public SecurityAdministrator SecurityAdministratorInfo { get; set; } + [ExcelColumn(Name = "经度", Sort = 8)] + public string Longitude { get; set; } + [ExcelColumn(Name = "纬度", Sort = 9)] + public string Latitude { get; set; } + } +} diff --git a/Application.Shared/Dtos/Units/Imports/Other.cs b/Application.Shared/Dtos/Units/Imports/Other.cs new file mode 100644 index 0000000..af9e429 --- /dev/null +++ b/Application.Shared/Dtos/Units/Imports/Other.cs @@ -0,0 +1,56 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Infrastructure.Excel.Attributes; + +namespace Application.Shared.Dtos.Units.Imports +{ + [TableDto(Name = "其他")] + [TableHeader(Title = "其他社会单位统计表", HorizontalAlignment = HeaderHorizontalAlignment.Center, StartRowIndex = 0, StartCellIndex = 0, EndRowIndex = 0, Auto = true)] + public class Other + { + [ExcelColumn(Name = "序号", Sort = 1)] + public int Index { get; set; } + [ExcelColumn(Name = "单位名称", Sort = 2)] + public string Name { get; set; } + [ExcelColumn(Name = "所在旗县(市区)", Sort = 3)] + public string Area { get; set; } + [ExcelColumn(Name = "监管级别(一、二、三)", Sort = 4)] + public string RegulatoryLevel { get; set; } + [ExcelColumn(Name = "概况", Sort = 5)] + public OtherSurvey Survey { get; set; } + [ExcelColumn(Name = "消防安全责任人", Sort = 6)] + public PersonInChargeOfSafety PersonInChargeOfSafetyInfo { get; set; } + [ExcelColumn(Name = "消防安全管理人", Sort = 7)] + public SecurityAdministrator SecurityAdministratorInfo { get; set; } + [ExcelColumn(Name = "经度", Sort = 8)] + public string Longitude { get; set; } + [ExcelColumn(Name = "纬度", Sort = 9)] + public string Latitude { get; set; } + + public Other() + { + Survey = new OtherSurvey(); + PersonInChargeOfSafetyInfo = new PersonInChargeOfSafety(); + SecurityAdministratorInfo = new SecurityAdministrator(); + } + } + + [TableColumnDto] + public class OtherSurvey + { + [ExcelColumn(Name = "建筑高度(米)", Sort = 3)] + public string Height { get; set; } + public int HeightValue { get; set; } + [ExcelColumn(Name = "建筑面积(平方米)", Sort = 4)] + public string Area { get; set; } + public double AreaValue { get; set; } + + [ExcelColumn(Name = "使用性质", Sort = 1)] + public string UsageNature { get; set; } + + [ExcelColumn(Name = "职工人数(人)", Sort = 2)] + public string EmployeeCount { get; set; } + public int EmployeeCountValue { get; set; } + } +} diff --git a/Application.Shared/Dtos/Units/Imports/PublicEntertainment.cs b/Application.Shared/Dtos/Units/Imports/PublicEntertainment.cs new file mode 100644 index 0000000..ef67b24 --- /dev/null +++ b/Application.Shared/Dtos/Units/Imports/PublicEntertainment.cs @@ -0,0 +1,50 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Infrastructure.Excel.Attributes; + +namespace Application.Shared.Dtos.Units.Imports +{ + [TableDto(Name = "公共娱乐")] + [TableHeader(Title = "公共娱乐场所统计表", HorizontalAlignment = HeaderHorizontalAlignment.Center, StartRowIndex = 0, StartCellIndex = 0, EndRowIndex = 0, Auto = true)] + public class PublicEntertainment + { + + [ExcelColumn(Name = "序号", Sort = 1)] + public int Index { get; set; } + [ExcelColumn(Name = "单位名称", Sort = 2)] + public string Name { get; set; } + [ExcelColumn(Name = "所在旗县(市区)", Sort = 3)] + public string Area { get; set; } + [ExcelColumn(Name = "监管级别(一、二、三)", Sort = 4)] + public string RegulatoryLevel { get; set; } + [ExcelColumn(Name = "概况", Sort = 5)] + public PublicEntertainmentSurvey Survey { get; set; } + [ExcelColumn(Name = "消防安全责任人", Sort = 6)] + public PersonInChargeOfSafety PersonInChargeOfSafetyInfo { get; set; } + [ExcelColumn(Name = "消防安全管理人", Sort = 7)] + public SecurityAdministrator SecurityAdministratorInfo { get; set; } + [ExcelColumn(Name = "经度", Sort = 8)] + public string Longitude { get; set; } + [ExcelColumn(Name = "纬度", Sort = 9)] + public string Latitude { get; set; } + } + + + [TableColumnDto] + public class PublicEntertainmentSurvey + { + [ExcelColumn(Name = "许可容纳人数(人)", Sort = 1)] + public string PeopleCount { get; set; } + public int PeopleCountValue { get; set; } + [ExcelColumn(Name = "建筑层数(层)", Sort = 2)] + public string FloorNumber { get; set; } + + [ExcelColumn(Name = "建筑高度(米)", Sort = 3)] + public string Height { get; set; } + public int HeightValue { get; set; } + [ExcelColumn(Name = "建筑面积(平方米)", Sort = 4)] + public string Area { get; set; } + public double AreaValue { get; set; } + } +} diff --git a/Application.Shared/Dtos/Units/Imports/School.cs b/Application.Shared/Dtos/Units/Imports/School.cs new file mode 100644 index 0000000..bb64ebb --- /dev/null +++ b/Application.Shared/Dtos/Units/Imports/School.cs @@ -0,0 +1,53 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Infrastructure.Excel.Attributes; + +namespace Application.Shared.Dtos.Units.Imports +{ + [TableDto(Name = "学校")] + [TableHeader(Title = "学校统计表", HorizontalAlignment = HeaderHorizontalAlignment.Center, StartRowIndex = 0, StartCellIndex = 0, EndRowIndex = 0, Auto = true)] + public class School + { + [ExcelColumn(Name = "序号", Sort = 1)] + public int Index { get; set; } + [ExcelColumn(Name = "单位名称", Sort = 2)] + public string Name { get; set; } + [ExcelColumn(Name = "所在旗县(市区)", Sort = 3)] + public string Area { get; set; } + [ExcelColumn(Name = "监管级别(一、二、三)", Sort = 4)] + public string RegulatoryLevel { get; set; } + [ExcelColumn(Name = "概况", Sort = 5)] + public SchoolSurvey Survey { get; set; } + [ExcelColumn(Name = "消防安全责任人", Sort = 6)] + public PersonInChargeOfSafety PersonInChargeOfSafetyInfo { get; set; } + [ExcelColumn(Name = "消防安全管理人", Sort = 7)] + public SecurityAdministrator SecurityAdministratorInfo { get; set; } + [ExcelColumn(Name = "经度", Sort = 8)] + public string Longitude { get; set; } + [ExcelColumn(Name = "纬度", Sort = 9)] + public string Latitude { get; set; } + } + + + [TableColumnDto] + public class SchoolSurvey + { + [ExcelColumn(Name = "类别(大学、中学、小学、幼儿园)", Sort = 1,Enums = new []{ "幼儿园", "小学", "中学", "大学"})] + public string Type { get; set; } + [ExcelColumn(Name = "学生人数 (人)", Sort = 2)] + public string StudentCount { get; set; } + public int StudentCountValue { get; set; } + + [ExcelColumn(Name = "建筑层数 (层)", Sort = 3)] + public string UsageNature { get; set; } + public string UsageNatureValue { get; set; } + + [ExcelColumn(Name = "建筑高度 (米)", Sort = 4)] + public string Height { get; set; } + public int HeightValue { get; set; } + [ExcelColumn(Name = "建筑面积(平方米)", Sort = 5)] + public string Area { get; set; } + public double AreaValue { get; set; } + } +} diff --git a/Application.Shared/Dtos/Units/Imports/StateOrgan.cs b/Application.Shared/Dtos/Units/Imports/StateOrgan.cs new file mode 100644 index 0000000..84ebc2c --- /dev/null +++ b/Application.Shared/Dtos/Units/Imports/StateOrgan.cs @@ -0,0 +1,46 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Infrastructure.Excel.Attributes; + +namespace Application.Shared.Dtos.Units.Imports +{ + [TableDto(Name = "国家机关")] + [TableHeader(Title = "国家机关统计表", HorizontalAlignment = HeaderHorizontalAlignment.Center, StartRowIndex = 0, StartCellIndex = 0, EndRowIndex = 0, Auto = true)] + public class StateOrgan + { + [ExcelColumn(Name = "序号", Sort = 1)] + public int Index { get; set; } + [ExcelColumn(Name = "建筑名称", Sort = 2)] + public string Name { get; set; } + [ExcelColumn(Name = "所在旗县(市区)", Sort = 3)] + public string Area { get; set; } + [ExcelColumn(Name = "监管级别(一、二、三)", Sort = 4)] + public string RegulatoryLevel { get; set; } + [ExcelColumn(Name = "概况", Sort = 5)] + public StateOrganSurvey Survey { get; set; } + [ExcelColumn(Name = "消防安全责任人", Sort = 6)] + public PersonInChargeOfSafety PersonInChargeOfSafetyInfo { get; set; } + [ExcelColumn(Name = "消防安全管理人", Sort = 7)] + public SecurityAdministrator SecurityAdministratorInfo { get; set; } + [ExcelColumn(Name = "经度", Sort = 8)] + public string Longitude { get; set; } + [ExcelColumn(Name = "纬度", Sort = 9)] + public string Latitude { get; set; } + } + + [TableColumnDto] + public class StateOrganSurvey + { + [ExcelColumn(Name = "建筑高度(米)", Sort = 2)] + public string Height { get; set; } + public int HeightValue { get; set; } + [ExcelColumn(Name = "建筑面积(平方米)", Sort = 3)] + public string Area { get; set; } + public double AreaValue { get; set; } + + [ExcelColumn(Name = "建筑层数(层)", Sort = 1)] + public string UsageNature { get; set; } + public string UsageNatureValue { get; set; } + } +} diff --git a/Application.Shared/Dtos/Units/Imports/Storage.cs b/Application.Shared/Dtos/Units/Imports/Storage.cs new file mode 100644 index 0000000..c2cb972 --- /dev/null +++ b/Application.Shared/Dtos/Units/Imports/Storage.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Infrastructure.Excel.Attributes; + +namespace Application.Shared.Dtos.Units.Imports +{ + [TableDto(Name = "仓储")] + [TableHeader(Title = "仓储、物流单位统计表", HorizontalAlignment = HeaderHorizontalAlignment.Center, StartRowIndex = 0, StartCellIndex = 0, EndRowIndex = 0, Auto = true)] + public class Storage + { + [ExcelColumn(Name = "序号", Sort = 1)] + public int Index { get; set; } + [ExcelColumn(Name = "单位名称", Sort = 2)] + public string Name { get; set; } + [ExcelColumn(Name = "所在旗县(市区)", Sort = 3)] + public string Area { get; set; } + [ExcelColumn(Name = "监管级别(一、二、三)", Sort = 4)] + public string RegulatoryLevel { get; set; } + [ExcelColumn(Name = "概况", Sort = 5)] + public StorageSurvey Survey { get; set; } + [ExcelColumn(Name = "消防安全责任人", Sort = 6)] + public PersonInChargeOfSafety PersonInChargeOfSafetyInfo { get; set; } + [ExcelColumn(Name = "消防安全管理人", Sort = 7)] + public SecurityAdministrator SecurityAdministratorInfo { get; set; } + [ExcelColumn(Name = "经度", Sort = 8)] + public string Longitude { get; set; } + [ExcelColumn(Name = "纬度", Sort = 9)] + public string Latitude { get; set; } + } + + [TableColumnDto] + public class StorageSurvey + { + [ExcelColumn(Name = "仓储物品种类", Sort = 1)] + public string StorageGoods { get; set; } + [ExcelColumn(Name = "建筑面积(m2)", Sort = 2)] + public string Area { get; set; } + [ExcelColumn(Name = "储量(吨)", Sort = 3)] + public string Reserves { get; set; } + } +} diff --git a/Application.Shared/Dtos/Units/Imports/TallBuilding.cs b/Application.Shared/Dtos/Units/Imports/TallBuilding.cs new file mode 100644 index 0000000..41dc28e --- /dev/null +++ b/Application.Shared/Dtos/Units/Imports/TallBuilding.cs @@ -0,0 +1,52 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Infrastructure.Excel.Attributes; + +namespace Application.Shared.Dtos.Units.Imports +{ + + [TableDto(Name = "高层")] + [TableHeader(Title = "高层公共建筑统计表", HorizontalAlignment = HeaderHorizontalAlignment.Center, StartRowIndex = 0, StartCellIndex = 0, EndRowIndex = 0, Auto = true)] + public class TallBuilding + { + [ExcelColumn(Name = "序号", Sort = 1)] + public int Index { get; set; } + [ExcelColumn(Name = "建筑名称", Sort = 2)] + public string Name { get; set; } + [ExcelColumn(Name = "所在旗县(市区)", Sort = 3)] + public string Area { get; set; } + [ExcelColumn(Name = "监管级别(一、二、三)", Sort = 4)] + public string RegulatoryLevel { get; set; } + [ExcelColumn(Name = "概况", Sort = 5)] + public BuildingSurvey Survey { get; set; } + [ExcelColumn(Name = "消防安全责任人", Sort = 6)] + public PersonInChargeOfSafety PersonInChargeOfSafetyInfo { get; set; } + [ExcelColumn(Name = "消防安全管理人", Sort = 7)] + public SecurityAdministrator SecurityAdministratorInfo { get; set; } + [ExcelColumn(Name = "经度", Sort = 8)] + public string Longitude { get; set; } + [ExcelColumn(Name = "纬度", Sort = 9)] + public string Latitude { get; set; } + public TallBuilding() + { + Survey=new BuildingSurvey(); + PersonInChargeOfSafetyInfo = new PersonInChargeOfSafety(); + SecurityAdministratorInfo = new SecurityAdministrator(); + } + } + + [TableColumnDto] + public class BuildingSurvey + { + [ExcelColumn(Name = "建筑高度(m)", Sort = 1)] + public string Height { get; set; } + public int HeightValue { get; set; } + [ExcelColumn(Name = "建筑面积(m2)", Sort = 2)] + public string Area { get; set; } + public double AreaValue { get; set; } + + [ExcelColumn(Name = "使用性质", Sort = 3)] + public string UsageNature { get; set; } + } +} diff --git a/Application.Shared/Dtos/Units/Imports/UnderGround.cs b/Application.Shared/Dtos/Units/Imports/UnderGround.cs new file mode 100644 index 0000000..454c4e6 --- /dev/null +++ b/Application.Shared/Dtos/Units/Imports/UnderGround.cs @@ -0,0 +1,51 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Infrastructure.Excel.Attributes; + +namespace Application.Shared.Dtos.Units.Imports +{ + [TableDto(Name = "地下")] + [TableHeader(Title = "地下建筑统计表", HorizontalAlignment = HeaderHorizontalAlignment.Center, StartRowIndex = 0, StartCellIndex = 0, EndRowIndex = 0, Auto = true)] + public class UnderGround + { + [ExcelColumn(Name = "序号", Sort = 1)] + public int Index { get; set; } + [ExcelColumn(Name = "建筑名称", Sort = 2)] + public string Name { get; set; } + [ExcelColumn(Name = "所在旗县(市区)", Sort = 3)] + public string Area { get; set; } + [ExcelColumn(Name = "监管级别(一、二、三)", Sort = 4)] + public string RegulatoryLevel { get; set; } + [ExcelColumn(Name = "概况", Sort = 5)] + public UnderGroundSurvey Survey { get; set; } + [ExcelColumn(Name = "消防安全责任人", Sort = 6)] + public PersonInChargeOfSafety PersonInChargeOfSafetyInfo { get; set; } + [ExcelColumn(Name = "消防安全管理人", Sort = 7)] + public SecurityAdministrator SecurityAdministratorInfo { get; set; } + + [ExcelColumn(Name = "经度", Sort = 8)] + public string Longitude { get; set; } + [ExcelColumn(Name = "纬度", Sort = 9)] + public string Latitude { get; set; } + + public UnderGround() + { + Survey = new UnderGroundSurvey(); + PersonInChargeOfSafetyInfo = new PersonInChargeOfSafety(); + SecurityAdministratorInfo = new SecurityAdministrator(); + } + } + + [TableColumnDto] + public class UnderGroundSurvey + { + public int HeightValue { get; set; } + [ExcelColumn(Name = "建筑面积(m2)", Sort = 1)] + public string Area { get; set; } + public double AreaValue { get; set; } + + [ExcelColumn(Name = "使用性质", Sort = 2)] + public string UsageNature { get; set; } + } +} diff --git a/Application.Shared/Dtos/Units/Imports/WelfareInstitution.cs b/Application.Shared/Dtos/Units/Imports/WelfareInstitution.cs new file mode 100644 index 0000000..5d29d54 --- /dev/null +++ b/Application.Shared/Dtos/Units/Imports/WelfareInstitution.cs @@ -0,0 +1,46 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Infrastructure.Excel.Attributes; + +namespace Application.Shared.Dtos.Units.Imports +{ + [TableDto(Name = "福利机构")] + [TableHeader(Title = "社会福利机构统计表", HorizontalAlignment = HeaderHorizontalAlignment.Center, StartRowIndex = 0, StartCellIndex = 0, EndRowIndex = 0, Auto = true)] + public class WelfareInstitution + { + [ExcelColumn(Name = "序号", Sort = 1)] + public int Index { get; set; } + [ExcelColumn(Name = "单位名称", Sort = 2)] + public string Name { get; set; } + [ExcelColumn(Name = "所在旗县(市区)", Sort = 3)] + public string Area { get; set; } + [ExcelColumn(Name = "监管级别(一、二、三)", Sort = 4)] + public string RegulatoryLevel { get; set; } + [ExcelColumn(Name = "概况", Sort = 5)] + public WelfareInstitutionSurvey Survey { get; set; } + [ExcelColumn(Name = "消防安全责任人", Sort = 6)] + public PersonInChargeOfSafety PersonInChargeOfSafetyInfo { get; set; } + [ExcelColumn(Name = "消防安全管理人", Sort = 7)] + public SecurityAdministrator SecurityAdministratorInfo { get; set; } + [ExcelColumn(Name = "经度", Sort = 8)] + public string Longitude { get; set; } + [ExcelColumn(Name = "纬度", Sort = 9)] + public string Latitude { get; set; } + + } + + [TableColumnDto] + public class WelfareInstitutionSurvey + { + [ExcelColumn(Name = "床位数(张)", Sort = 1)] + public string BedCount { get; set; } + [ExcelColumn(Name = "建筑层数(层)", Sort = 2)] + public string FloorNumber { get; set; } + + [ExcelColumn(Name = "建筑高度(米)", Sort = 3)] + public string Height { get; set; } + [ExcelColumn(Name = "建筑面积(平方米)", Sort = 4)] + public string Area { get; set; } + } +} diff --git a/Application.Shared/Dtos/Units/UnitOutputDto.cs b/Application.Shared/Dtos/Units/UnitOutputDto.cs new file mode 100644 index 0000000..4518717 --- /dev/null +++ b/Application.Shared/Dtos/Units/UnitOutputDto.cs @@ -0,0 +1,92 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Application.Shared.Dtos.Units +{ + public class UnitOutputDto + { + public int Id { get; set; } + /// + /// 微擎小程序/公众号ID + /// + public int Uniacid { get; set; } + + /// + /// 团体ID + /// + public int GroupId { get; set; } + /// + /// 单位分类ID,关联表building_category + /// + public int CategoryId { get; set; } + /// + /// 坐标纬度 + /// + public float Latitude { get; set; } + /// + /// 坐标经度 + /// + public float Longitude { get; set; } + /// + /// 地址名称 + /// + public string LocationName { get; set; } + /// + /// 单位名称 + /// + public string Name { get; set; } + /// + /// 重要等级 + /// + public Int16 ImportantRating { get; set; } + /// + /// 监管等级 + /// + public Int16 SuperviseLevel { get; set; } + /// + /// 上级单位ID + /// + public int ParentUnitId { get; set; } + /// + /// 负责人姓名 + /// + public string PrincipalName { get; set; } + /// + /// 负责人联系电话 + /// + public string PrincipalPhoneNum { get; set; } + /// + /// 人数 + /// + public Int16 PeopleNum { get; set; } + /// + /// 占地面积 + /// + public int CoverArea { get; set; } + /// + /// 使用面积 + /// + public int UseArea { get; set; } + /// + /// 图片集合 + /// + public string Imgs { get; set; } + /// + /// 备注 + /// + public string Remark { get; set; } + /// + /// 附件信息集合 + /// + public string Attachments { get; set; } + /// + /// 操作员ID + /// + public int OperatorId { get; set; } + /// + /// 更新时间 + /// + public DateTime UpdateTime { get; set; } + } +} diff --git a/Application.Shared/Dtos/Waters/Imports/Water.cs b/Application.Shared/Dtos/Waters/Imports/Water.cs new file mode 100644 index 0000000..f6464bd --- /dev/null +++ b/Application.Shared/Dtos/Waters/Imports/Water.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Text; +using Infrastructure.Excel.Attributes; + +namespace Application.Shared.Dtos.Waters.Imports +{ + [TableDto(Name = "伊金霍洛旗中队")] + [TableHeader(Title = "伊旗中队水源普查台账统计表", HorizontalAlignment = HeaderHorizontalAlignment.Center, StartRowIndex = 0, StartCellIndex = 0, EndRowIndex = 0, Auto = true)] + [TableHeader(Title = "填报人:苗境楷(通讯员)普查人:颜炳亮(中队长) 审核人:蔺鹏宏(大队长)", HorizontalAlignment = HeaderHorizontalAlignment.Center, StartRowIndex = 0, StartCellIndex = 0, EndRowIndex = 0, Auto = true)] + public class Water + { + [ExcelColumn(Name = "序号", Sort = 1)] + public int Index { get; set; } + [ExcelColumn(Name = "旗(县、区)", Sort = 3)] + public string Area { get; set; } + [ExcelColumn(Name = "街道(路段)", Sort = 4)] + public string Street { get; set; } + [ExcelColumn(Name = "具体位置", Sort = 5)] + public string Position { get; set; } + [ExcelColumn(Name = "水源现状", Sort = 6)] + public string WaterStatus { get; set; } + [ExcelColumn(Name = "坐标", Sort = 7)] + public WaterPoint Point { get; set; } + [ExcelColumn(Name = "建设日期", Sort = 8)] + public string ConstructionDate { get; set; } + [ExcelColumn(Name = "普查日期", Sort = 9)] + public string CensusDate { get; set; } + } + + [TableColumnDto] + public class WaterPoint + { + [ExcelColumn(Name = "N", Sort = 1)] + public string NorthLatitude { get; set; } + [ExcelColumn(Name = "E", Sort = 2)] + public string EastLongitude { get; set; } + } +} diff --git a/Application.Shared/obj/Application.Shared.csproj.nuget.dgspec.json b/Application.Shared/obj/Application.Shared.csproj.nuget.dgspec.json new file mode 100644 index 0000000..aab0c1c --- /dev/null +++ b/Application.Shared/obj/Application.Shared.csproj.nuget.dgspec.json @@ -0,0 +1,150 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application.Shared\\Application.Shared.csproj": {} + }, + "projects": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application.Shared\\Application.Shared.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application.Shared\\Application.Shared.csproj", + "projectName": "Application.Shared", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application.Shared\\Application.Shared.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application.Shared\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj", + "projectName": "Infrastructure", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "dependencies": { + "Autofac": { + "target": "Package", + "version": "[6.2.0, )" + }, + "Autofac.Extensions.DependencyInjection": { + "target": "Package", + "version": "[7.1.0, )" + }, + "Autofac.Extras.DynamicProxy": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.AspNetCore.Mvc.Core": { + "target": "Package", + "version": "[2.2.5, )" + }, + "Microsoft.Extensions.DependencyModel": { + "target": "Package", + "version": "[5.0.0, )" + }, + "NPOI": { + "target": "Package", + "version": "[2.5.3, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Application.Shared/obj/Application.Shared.csproj.nuget.g.props b/Application.Shared/obj/Application.Shared.csproj.nuget.g.props new file mode 100644 index 0000000..1168ab9 --- /dev/null +++ b/Application.Shared/obj/Application.Shared.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\NineFishes\.nuget\packages\ + PackageReference + 6.1.0 + + + + + \ No newline at end of file diff --git a/Application.Shared/obj/Application.Shared.csproj.nuget.g.targets b/Application.Shared/obj/Application.Shared.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/Application.Shared/obj/Application.Shared.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Application.Shared/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/Application.Shared/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs new file mode 100644 index 0000000..ad8dfe1 --- /dev/null +++ b/Application.Shared/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] diff --git a/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.AssemblyInfo.cs b/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.AssemblyInfo.cs new file mode 100644 index 0000000..9586f5f --- /dev/null +++ b/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Application.Shared")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Application.Shared")] +[assembly: System.Reflection.AssemblyTitleAttribute("Application.Shared")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.AssemblyInfoInputs.cache b/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.AssemblyInfoInputs.cache new file mode 100644 index 0000000..2ecdabf --- /dev/null +++ b/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +cccd3f9fe8024b56b9e57e122f65e9779d501b6f diff --git a/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.GeneratedMSBuildEditorConfig.editorconfig b/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..8460de0 --- /dev/null +++ b/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,3 @@ +is_global = true +build_property.RootNamespace = Application.Shared +build_property.ProjectDir = C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Application.Shared\ diff --git a/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.assets.cache b/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.assets.cache new file mode 100644 index 0000000..8b7c0c5 Binary files /dev/null and b/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.assets.cache differ diff --git a/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.csproj.AssemblyReference.cache b/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.csproj.AssemblyReference.cache new file mode 100644 index 0000000..5a588b3 Binary files /dev/null and b/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.csproj.AssemblyReference.cache differ diff --git a/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.csproj.BuildWithSkipAnalyzers b/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.csproj.CopyComplete b/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.csproj.CoreCompileInputs.cache b/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..546fcf4 --- /dev/null +++ b/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +225709680ddbd3ef998cff4980e6b471b068f3c1 diff --git a/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.csproj.FileListAbsolute.txt b/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..e22ce2c --- /dev/null +++ b/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.csproj.FileListAbsolute.txt @@ -0,0 +1,13 @@ +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Application.Shared\bin\Debug\netcoreapp3.1\Application.Shared.deps.json +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Application.Shared\bin\Debug\netcoreapp3.1\Application.Shared.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Application.Shared\bin\Debug\netcoreapp3.1\Application.Shared.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Application.Shared\bin\Debug\netcoreapp3.1\Infrastructure.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Application.Shared\bin\Debug\netcoreapp3.1\Infrastructure.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Application.Shared\obj\Debug\netcoreapp3.1\Application.Shared.csproj.AssemblyReference.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Application.Shared\obj\Debug\netcoreapp3.1\Application.Shared.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Application.Shared\obj\Debug\netcoreapp3.1\Application.Shared.AssemblyInfoInputs.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Application.Shared\obj\Debug\netcoreapp3.1\Application.Shared.AssemblyInfo.cs +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Application.Shared\obj\Debug\netcoreapp3.1\Application.Shared.csproj.CoreCompileInputs.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Application.Shared\obj\Debug\netcoreapp3.1\Application.Shared.csproj.CopyComplete +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Application.Shared\obj\Debug\netcoreapp3.1\Application.Shared.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Application.Shared\obj\Debug\netcoreapp3.1\Application.Shared.pdb diff --git a/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.dll b/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.dll new file mode 100644 index 0000000..40a2280 Binary files /dev/null and b/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.dll differ diff --git a/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.pdb b/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.pdb new file mode 100644 index 0000000..d23a361 Binary files /dev/null and b/Application.Shared/obj/Debug/netcoreapp3.1/Application.Shared.pdb differ diff --git a/Application.Shared/obj/project.assets.json b/Application.Shared/obj/project.assets.json new file mode 100644 index 0000000..a7e10d0 --- /dev/null +++ b/Application.Shared/obj/project.assets.json @@ -0,0 +1,6711 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": { + "Autofac/6.2.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "4.7.1" + }, + "compile": { + "lib/netstandard2.1/Autofac.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Autofac.dll": {} + } + }, + "Autofac.Extensions.DependencyInjection/7.1.0": { + "type": "package", + "dependencies": { + "Autofac": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {} + } + }, + "Autofac.Extras.DynamicProxy/6.0.0": { + "type": "package", + "dependencies": { + "Autofac": "6.0.0", + "Castle.Core": "4.4.0" + }, + "compile": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {} + } + }, + "Castle.Core/4.4.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Castle.Core.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.Core/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Authorization": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {} + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Core/2.2.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Core": "2.2.0", + "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Mvc.Abstractions": "2.2.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Routing": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.Extensions.DependencyModel": "2.1.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Diagnostics.DiagnosticSource": "4.5.0", + "System.Threading.Tasks.Extensions": "4.5.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {} + } + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {} + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {} + } + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0" + }, + "compile": { + "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DependencyModel/5.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "5.0.0", + "System.Text.Json": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {} + } + }, + "Microsoft.Extensions.Options/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.Primitives": "2.2.0", + "System.ComponentModel.Annotations": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Primitives/2.2.0": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.1", + "System.Runtime.CompilerServices.Unsafe": "4.5.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.SystemEvents/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "NPOI/2.5.3": { + "type": "package", + "dependencies": { + "Portable.BouncyCastle": "1.8.6", + "SharpZipLib": "[1.2.0]", + "System.Configuration.ConfigurationManager": "4.5.0", + "System.Drawing.Common": "4.5.0" + }, + "compile": { + "lib/netstandard2.1/NPOI.OOXML.dll": {}, + "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {}, + "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {}, + "lib/netstandard2.1/NPOI.dll": {} + }, + "runtime": { + "lib/netstandard2.1/NPOI.OOXML.dll": {}, + "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {}, + "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {}, + "lib/netstandard2.1/NPOI.dll": {} + } + }, + "Portable.BouncyCastle/1.8.6": { + "type": "package", + "compile": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + }, + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "SharpZipLib/1.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {} + }, + "runtime": { + "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {} + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Configuration.ConfigurationManager/4.5.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.5.0", + "System.Security.Permissions": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.7.1": { + "type": "package", + "compile": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Drawing.Common/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.Win32.SystemEvents": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Memory/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/4.5.1": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.AccessControl/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/4.5.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.Encodings.Web/5.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Text.Encodings.Web.dll": {} + } + }, + "System.Text.Json/5.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/System.Text.Json.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Text.Json.dll": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "Infrastructure/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v3.1", + "dependencies": { + "Autofac": "6.2.0", + "Autofac.Extensions.DependencyInjection": "7.1.0", + "Autofac.Extras.DynamicProxy": "6.0.0", + "Microsoft.AspNetCore.Mvc.Core": "2.2.5", + "Microsoft.Extensions.DependencyModel": "5.0.0", + "NPOI": "2.5.3", + "Newtonsoft.Json": "13.0.1" + }, + "compile": { + "bin/placeholder/Infrastructure.dll": {} + }, + "runtime": { + "bin/placeholder/Infrastructure.dll": {} + } + } + } + }, + "libraries": { + "Autofac/6.2.0": { + "sha512": "BX8IM0GANE38uSr4QwXL4PgA8vWWYt2P5cZzipn/vDnf0fDbPSGKSHEroJ09rB7ANxdyf7MdEgVs+pvL8kwYCg==", + "type": "package", + "path": "autofac/6.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "autofac.6.2.0.nupkg.sha512", + "autofac.nuspec", + "icon.png", + "lib/net5.0/Autofac.dll", + "lib/net5.0/Autofac.pdb", + "lib/net5.0/Autofac.xml", + "lib/netstandard2.0/Autofac.dll", + "lib/netstandard2.0/Autofac.pdb", + "lib/netstandard2.0/Autofac.xml", + "lib/netstandard2.1/Autofac.dll", + "lib/netstandard2.1/Autofac.pdb", + "lib/netstandard2.1/Autofac.xml" + ] + }, + "Autofac.Extensions.DependencyInjection/7.1.0": { + "sha512": "nm6rZREZ9tjdKXu9cmT69zHkZODagjCPlRRCOhiS1VqFFis9LQnMl18L4OYr8yfCW1WAQkFDD2CNaK/kF5Eqeg==", + "type": "package", + "path": "autofac.extensions.dependencyinjection/7.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512", + "autofac.extensions.dependencyinjection.nuspec", + "icon.png", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.pdb", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.pdb", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml" + ] + }, + "Autofac.Extras.DynamicProxy/6.0.0": { + "sha512": "Z86ZX33qYZ09xhdnYEyD/xilGUQBiITSAdHVZw59Qb+bN+tN/WFVDBZGQZZnI3+l8+hdjM2zWdcK4sgUEavRzw==", + "type": "package", + "path": "autofac.extras.dynamicproxy/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "autofac.extras.dynamicproxy.6.0.0.nupkg.sha512", + "autofac.extras.dynamicproxy.nuspec", + "icon.png", + "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll", + "lib/netstandard2.0/Autofac.Extras.DynamicProxy.pdb", + "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml", + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll", + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.pdb", + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml" + ] + }, + "Castle.Core/4.4.0": { + "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "type": "package", + "path": "castle.core/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ASL - Apache Software Foundation License.txt", + "CHANGELOG.md", + "LICENSE", + "castle.core.4.4.0.nupkg.sha512", + "castle.core.nuspec", + "lib/net35/Castle.Core.dll", + "lib/net35/Castle.Core.xml", + "lib/net40/Castle.Core.dll", + "lib/net40/Castle.Core.xml", + "lib/net45/Castle.Core.dll", + "lib/net45/Castle.Core.xml", + "lib/netstandard1.3/Castle.Core.dll", + "lib/netstandard1.3/Castle.Core.xml", + "lib/netstandard1.5/Castle.Core.dll", + "lib/netstandard1.5/Castle.Core.xml", + "readme.txt" + ] + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "sha512": "VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.xml", + "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Authentication.Core/2.2.0": { + "sha512": "XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.core/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.xml", + "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.core.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "sha512": "/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "sha512": "aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", + "type": "package", + "path": "microsoft.aspnetcore.authorization.policy/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.xml", + "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authorization.policy.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml", + "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", + "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.server.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http/2.2.0": { + "sha512": "YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==", + "type": "package", + "path": "microsoft.aspnetcore.http/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml", + "microsoft.aspnetcore.http.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "type": "package", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml", + "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "sha512": "2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", + "type": "package", + "path": "microsoft.aspnetcore.http.extensions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml", + "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "type": "package", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml", + "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.features.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { + "sha512": "ET6uZpfVbGR1NjCuLaLy197cQ3qZUjzl7EG5SL4GfJH/c9KRE89MMBrQegqWsh0w1iRUB/zQaK0anAjxa/pz4g==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.xml", + "microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Core/2.2.5": { + "sha512": "/8sr8ixIUD57UFwUntha9bOwex7/AkZfdk1f9oNJG1Ek7p/uuKVa7fuHmYZpQOf35Oxrt+2Ku4WPwMSbNxOuWg==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.core/2.2.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.xml", + "microsoft.aspnetcore.mvc.core.2.2.5.nupkg.sha512", + "microsoft.aspnetcore.mvc.core.nuspec" + ] + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { + "sha512": "CIHWEKrHzZfFp7t57UXsueiSA/raku56TgRYauV/W1+KAQq6vevz60zjEKaazt3BI76zwMz3B4jGWnCwd8kwQw==", + "type": "package", + "path": "microsoft.aspnetcore.responsecaching.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml", + "microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.responsecaching.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "sha512": "jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", + "type": "package", + "path": "microsoft.aspnetcore.routing/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.xml", + "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.routing.nuspec" + ] + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "sha512": "lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", + "type": "package", + "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml", + "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.routing.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "sha512": "9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", + "type": "package", + "path": "microsoft.aspnetcore.webutilities/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml", + "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.webutilities.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/2.2.0": { + "sha512": "65MrmXCziWaQFrI0UHkQbesrX5wTwf9XPjY5yFm/VkgJKFJ5gqvXRoXjIZcf2wLi5ZlwGz/oMYfyURVCWbM5iw==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection/2.2.0": { + "sha512": "MZtBIwfDFork5vfjpJdG5g8wuJFt7d/y3LOSVVtDK/76wlbtz6cjltfKHqLx2TKVqTj5/c41t77m1+h20zqtPA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Microsoft.Extensions.DependencyInjection.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.xml", + "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.2.2.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": { + "sha512": "f9hstgjVmr6rmrfGSpfsVOl2irKAgr1QjrSi3FgnS7kulxband50f2brRLwySAQTADPZeTdow0mpSMcoAdadCw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.DependencyModel/5.0.0": { + "sha512": "umBECCoMC+sOUgm083yFr8SxTobUOcPFH4AXigdO2xJiszCHAnmeDl4qPphJt+oaJ/XIfV1wOjIts2nRnki61Q==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net451/Microsoft.Extensions.DependencyModel.dll", + "lib/net451/Microsoft.Extensions.DependencyModel.xml", + "lib/net461/Microsoft.Extensions.DependencyModel.dll", + "lib/net461/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.5.0.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { + "sha512": "EcnaSsPTqx2MGnHrmWOD0ugbuuqVT8iICqSqPzi45V5/MA1LjUNb0kwgcxBGqizV1R+WeBK7/Gw25Jzkyk9bIw==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { + "sha512": "+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "sha512": "B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "sha512": "gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", + "type": "package", + "path": "microsoft.extensions.objectpool/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml", + "microsoft.extensions.objectpool.2.2.0.nupkg.sha512", + "microsoft.extensions.objectpool.nuspec" + ] + }, + "Microsoft.Extensions.Options/2.2.0": { + "sha512": "UpZLNLBpIZ0GTebShui7xXYh6DmBHjWM8NxGxZbdQh/bPZ5e6YswqI+bru6BnEL5eWiOdodsXtEz3FROcgi/qg==", + "type": "package", + "path": "microsoft.extensions.options/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.2.2.0.nupkg.sha512", + "microsoft.extensions.options.nuspec" + ] + }, + "Microsoft.Extensions.Primitives/2.2.0": { + "sha512": "azyQtqbm4fSaDzZHD/J+V6oWMFaf2tWP4WEGIYePLCMw3+b2RQdj9ybgbQyjCshcitQKQ4lEDOZjmSlTTrHxUg==", + "type": "package", + "path": "microsoft.extensions.primitives/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.2.2.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec" + ] + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "sha512": "iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", + "type": "package", + "path": "microsoft.net.http.headers/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml", + "microsoft.net.http.headers.2.2.0.nupkg.sha512", + "microsoft.net.http.headers.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "sha512": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==", + "type": "package", + "path": "microsoft.netcore.platforms/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.2.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Win32.SystemEvents/4.5.0": { + "sha512": "LuI1oG+24TUj1ZRQQjM5Ew73BKnZE5NZ/7eAdh1o8ST5dPhUnJvIkiIn2re3MwnkRy6ELRnvEbBxHP8uALKhJw==", + "type": "package", + "path": "microsoft.win32.systemevents/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "microsoft.win32.systemevents.4.5.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "NPOI/2.5.3": { + "sha512": "+DDU8JOHNhhiyAHr8Ew1hp85uPTcEw+O93+R2GDRB7sI5KpiQ+1i65DlY2OzfOq43+R3+39MyM7BTvjQi2KbfA==", + "type": "package", + "path": "npoi/2.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "Read Me.txt", + "lib/net45/NPOI.OOXML.XML", + "lib/net45/NPOI.OOXML.dll", + "lib/net45/NPOI.OpenXml4Net.XML", + "lib/net45/NPOI.OpenXml4Net.dll", + "lib/net45/NPOI.OpenXmlFormats.dll", + "lib/net45/NPOI.XML", + "lib/net45/NPOI.dll", + "lib/netstandard2.0/NPOI.OOXML.dll", + "lib/netstandard2.0/NPOI.OOXML.xml", + "lib/netstandard2.0/NPOI.OpenXml4Net.dll", + "lib/netstandard2.0/NPOI.OpenXml4Net.xml", + "lib/netstandard2.0/NPOI.OpenXmlFormats.dll", + "lib/netstandard2.0/NPOI.dll", + "lib/netstandard2.0/NPOI.xml", + "lib/netstandard2.1/NPOI.OOXML.dll", + "lib/netstandard2.1/NPOI.OOXML.xml", + "lib/netstandard2.1/NPOI.OpenXml4Net.dll", + "lib/netstandard2.1/NPOI.OpenXml4Net.xml", + "lib/netstandard2.1/NPOI.OpenXmlFormats.dll", + "lib/netstandard2.1/NPOI.dll", + "lib/netstandard2.1/NPOI.xml", + "logo/120_120.jpg", + "logo/240_240.png", + "logo/32_32.jpg", + "logo/60_60.jpg", + "npoi.2.5.3.nupkg.sha512", + "npoi.nuspec" + ] + }, + "Portable.BouncyCastle/1.8.6": { + "sha512": "y+GvZomzhY+Lwu5mMeNmFFYLHiEr2xFDOANhABn/wgg64/QpTzfgpNGPct+pXgQHjmutd363ZCur/91DLaBxOw==", + "type": "package", + "path": "portable.bouncycastle/1.8.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40/BouncyCastle.Crypto.dll", + "lib/net40/BouncyCastle.Crypto.xml", + "lib/netstandard2.0/BouncyCastle.Crypto.dll", + "lib/netstandard2.0/BouncyCastle.Crypto.xml", + "portable.bouncycastle.1.8.6.nupkg.sha512", + "portable.bouncycastle.nuspec" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "SharpZipLib/1.2.0": { + "sha512": "zvWa/L02JHNatdtjya6Swpudb2YEHaOLHL1eRrqpjm71iGRNUNONO5adUF/9CHbSJbzhELW1UoH4NGy7n7+3bQ==", + "type": "package", + "path": "sharpziplib/1.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/ICSharpCode.SharpZipLib.dll", + "lib/net45/ICSharpCode.SharpZipLib.pdb", + "lib/net45/ICSharpCode.SharpZipLib.xml", + "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll", + "lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb", + "lib/netstandard2.0/ICSharpCode.SharpZipLib.xml", + "sharpziplib.1.2.0.nupkg.sha512", + "sharpziplib.nuspec" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.5.0": { + "sha512": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==", + "type": "package", + "path": "system.buffers/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "lib/uap10.0.16299/_._", + "ref/net45/System.Buffers.dll", + "ref/net45/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "ref/uap10.0.16299/_._", + "system.buffers.4.5.0.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Collections.NonGeneric/4.3.0": { + "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "type": "package", + "path": "system.collections.nongeneric/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.3.0.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.3.0": { + "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "type": "package", + "path": "system.collections.specialized/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/netstandard1.3/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.xml", + "ref/netstandard1.3/de/System.Collections.Specialized.xml", + "ref/netstandard1.3/es/System.Collections.Specialized.xml", + "ref/netstandard1.3/fr/System.Collections.Specialized.xml", + "ref/netstandard1.3/it/System.Collections.Specialized.xml", + "ref/netstandard1.3/ja/System.Collections.Specialized.xml", + "ref/netstandard1.3/ko/System.Collections.Specialized.xml", + "ref/netstandard1.3/ru/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.specialized.4.3.0.nupkg.sha512", + "system.collections.specialized.nuspec" + ] + }, + "System.ComponentModel/4.3.0": { + "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "type": "package", + "path": "system.componentmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.3.0.nupkg.sha512", + "system.componentmodel.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.5.0": { + "sha512": "UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==", + "type": "package", + "path": "system.componentmodel.annotations/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/netstandard2.0/System.ComponentModel.Annotations.dll", + "lib/portable-net45+win8/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/net461/System.ComponentModel.Annotations.xml", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard2.0/System.ComponentModel.Annotations.dll", + "ref/netstandard2.0/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.4.5.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ComponentModel.Primitives/4.3.0": { + "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "type": "package", + "path": "system.componentmodel.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.Primitives.dll", + "lib/netstandard1.0/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.primitives.4.3.0.nupkg.sha512", + "system.componentmodel.primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "type": "package", + "path": "system.componentmodel.typeconverter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/net462/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/net462/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "system.componentmodel.typeconverter.nuspec" + ] + }, + "System.Configuration.ConfigurationManager/4.5.0": { + "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==", + "type": "package", + "path": "system.configuration.configurationmanager/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.xml", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.4.5.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Console/4.3.0": { + "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "type": "package", + "path": "system.console/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.3.0.nupkg.sha512", + "system.console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/4.7.1": { + "sha512": "j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.7.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/System.Diagnostics.DiagnosticSource.dll", + "lib/net45/System.Diagnostics.DiagnosticSource.xml", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.3.0": { + "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "type": "package", + "path": "system.diagnostics.tracesource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.TraceSource.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "system.diagnostics.tracesource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Drawing.Common/4.5.0": { + "sha512": "AiJFxxVPdeITstiRS5aAu8+8Dpf5NawTMoapZ53Gfirml24p7HIfhjmCRxdXnmmf3IUA3AX3CcW7G73CjWxW/Q==", + "type": "package", + "path": "system.drawing.common/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "system.drawing.common.4.5.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Dynamic.Runtime/4.3.0": { + "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "type": "package", + "path": "system.dynamic.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.3.0.nupkg.sha512", + "system.dynamic.runtime.nuspec" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Memory/4.5.1": { + "sha512": "sDJYJpGtTgx+23Ayu5euxG5mAXWdkDb4+b0rD0Cab0M1oQS9H0HXGPriKcqpXuiJDTV7fTp/d+fMDJmnr6sNvA==", + "type": "package", + "path": "system.memory/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "ref/netstandard1.1/System.Memory.dll", + "ref/netstandard1.1/System.Memory.xml", + "ref/netstandard2.0/System.Memory.dll", + "ref/netstandard2.0/System.Memory.xml", + "system.memory.4.5.1.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.CompilerServices.Unsafe/4.5.1": { + "sha512": "Zh8t8oqolRaFa9vmOZfdQm/qKejdqz0J9kr7o2Fu0vPeoH3BL1EOXipKWwkWtLT1JPzjByrF19fGuFlNbmPpiw==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.4.5.1.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Security.AccessControl/4.5.0": { + "sha512": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==", + "type": "package", + "path": "system.security.accesscontrol/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.5.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.3.0": { + "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "type": "package", + "path": "system.security.cryptography.cng/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "system.security.cryptography.cng.4.3.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==", + "type": "package", + "path": "system.security.cryptography.protecteddata/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Permissions/4.5.0": { + "sha512": "9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", + "type": "package", + "path": "system.security.permissions/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.4.5.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.5.0": { + "sha512": "U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==", + "type": "package", + "path": "system.security.principal.windows/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.5.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Encodings.Web/5.0.0": { + "sha512": "EEslUvHKll1ftizbn20mX3Ix/l4Ygk/bdJ2LY6/X6FlGaP0RIhKMo9nS6JIGnKKT6KBP2PGj6JC3B9/ZF6ErqQ==", + "type": "package", + "path": "system.text.encodings.web/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.0/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.0/System.Text.Encodings.Web.xml", + "lib/netstandard1.0/System.Text.Encodings.Web.dll", + "lib/netstandard1.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.1/System.Text.Encodings.Web.dll", + "lib/netstandard2.1/System.Text.Encodings.Web.xml", + "system.text.encodings.web.5.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Json/5.0.0": { + "sha512": "+luxMQNZ2WqeffBU7Ml6njIvxc8169NW2oU+ygNudXQGZiarjE7DOtN7bILiQjTZjkmwwRZGTtLzmdrSI/Ustw==", + "type": "package", + "path": "system.text.json/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/netcoreapp3.0/System.Text.Json.dll", + "lib/netcoreapp3.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.5.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.5.1": { + "sha512": "WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "ref/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "ref/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "ref/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.1.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.3.0": { + "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "type": "package", + "path": "system.xml.xmldocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.3.0.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + }, + "Infrastructure/1.0.0": { + "type": "project", + "path": "../Infrastructure/Infrastructure.csproj", + "msbuildProject": "../Infrastructure/Infrastructure.csproj" + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [ + "Infrastructure >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\NineFishes\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application.Shared\\Application.Shared.csproj", + "projectName": "Application.Shared", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application.Shared\\Application.Shared.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application.Shared\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Application.Shared/obj/project.nuget.cache b/Application.Shared/obj/project.nuget.cache new file mode 100644 index 0000000..9de16d2 --- /dev/null +++ b/Application.Shared/obj/project.nuget.cache @@ -0,0 +1,137 @@ +{ + "version": 2, + "dgSpecHash": "vtd89qPRNaQdVUvovNAa83X8OFgtXNBzsXXNUsYtm/gj+bfnQwg4FusnSiv56M2X6BXQCH6Nr/ZVGUYxZ2M+eQ==", + "success": true, + "projectFilePath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application.Shared\\Application.Shared.csproj", + "expectedPackageFiles": [ + "C:\\Users\\NineFishes\\.nuget\\packages\\autofac\\6.2.0\\autofac.6.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\autofac.extensions.dependencyinjection\\7.1.0\\autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\autofac.extras.dynamicproxy\\6.0.0\\autofac.extras.dynamicproxy.6.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\castle.core\\4.4.0\\castle.core.4.4.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authentication.abstractions\\2.2.0\\microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authentication.core\\2.2.0\\microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authorization\\2.2.0\\microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authorization.policy\\2.2.0\\microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.hosting.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.hosting.server.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http\\2.2.0\\microsoft.aspnetcore.http.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http.abstractions\\2.2.0\\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http.extensions\\2.2.0\\microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.mvc.abstractions\\2.2.0\\microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.mvc.core\\2.2.5\\microsoft.aspnetcore.mvc.core.2.2.5.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.responsecaching.abstractions\\2.2.0\\microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.routing\\2.2.0\\microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.routing.abstractions\\2.2.0\\microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.webutilities\\2.2.0\\microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\2.2.0\\microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\2.2.0\\microsoft.extensions.dependencyinjection.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\2.2.0\\microsoft.extensions.dependencyinjection.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.dependencymodel\\5.0.0\\microsoft.extensions.dependencymodel.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\2.2.0\\microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\2.2.0\\microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\2.2.0\\microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.objectpool\\2.2.0\\microsoft.extensions.objectpool.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.options\\2.2.0\\microsoft.extensions.options.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.primitives\\2.2.0\\microsoft.extensions.primitives.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.net.http.headers\\2.2.0\\microsoft.net.http.headers.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.netcore.platforms\\2.0.0\\microsoft.netcore.platforms.2.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.win32.systemevents\\4.5.0\\microsoft.win32.systemevents.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\npoi\\2.5.3\\npoi.2.5.3.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\portable.bouncycastle\\1.8.6\\portable.bouncycastle.1.8.6.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\sharpziplib\\1.2.0\\sharpziplib.1.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.buffers\\4.5.0\\system.buffers.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel.annotations\\4.5.0\\system.componentmodel.annotations.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.configuration.configurationmanager\\4.5.0\\system.configuration.configurationmanager.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.7.1\\system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.tracesource\\4.3.0\\system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.drawing.common\\4.5.0\\system.drawing.common.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.memory\\4.5.1\\system.memory.4.5.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.5.1\\system.runtime.compilerservices.unsafe.4.5.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.accesscontrol\\4.5.0\\system.security.accesscontrol.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.5.0\\system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.permissions\\4.5.0\\system.security.permissions.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.principal.windows\\4.5.0\\system.security.principal.windows.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.encodings.web\\5.0.0\\system.text.encodings.web.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.json\\5.0.0\\system.text.json.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.1\\system.threading.tasks.extensions.4.5.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/Application/Application.csproj b/Application/Application.csproj new file mode 100644 index 0000000..bc392d2 --- /dev/null +++ b/Application/Application.csproj @@ -0,0 +1,17 @@ + + + + netcoreapp3.1 + + + + + + + + + + + + + diff --git a/Application/AutoMapperProfiles.cs b/Application/AutoMapperProfiles.cs new file mode 100644 index 0000000..4e55c63 --- /dev/null +++ b/Application/AutoMapperProfiles.cs @@ -0,0 +1,17 @@ +using Application.Shared.Dtos.Units; +using AutoMapper; +using Domain.Models.Units; +using System; +using System.Collections.Generic; +using System.Text; + +namespace Application +{ + public class AutoMapperProfiles:Profile + { + public AutoMapperProfiles() + { + CreateMap(); + } + } +} diff --git a/Application/Class1.cs b/Application/Class1.cs new file mode 100644 index 0000000..ef89a90 --- /dev/null +++ b/Application/Class1.cs @@ -0,0 +1,8 @@ +using System; + +namespace Application +{ + public class Class1 + { + } +} diff --git a/Application/Services/FireHydrants/FireHydrantAppService.cs b/Application/Services/FireHydrants/FireHydrantAppService.cs new file mode 100644 index 0000000..291f602 --- /dev/null +++ b/Application/Services/FireHydrants/FireHydrantAppService.cs @@ -0,0 +1,31 @@ +using BackGround.Hangfire.JobRegisters.FireHydrant; +using Domain.Service.FileUpload; +using Infrastructure.Application; +using Microsoft.AspNetCore.Http; +using System; +using System.Collections.Generic; +using System.Text; +using System.Threading.Tasks; + +namespace Application.Services.FireHydrants +{ + public class FireHydrantAppService:ApplicationService, IFireHydrantAppService + { + private readonly IFileUploader _fileUploader; + private readonly ImportFireHydrantsJobRegister _jobRegister; + public FireHydrantAppService(IFileUploader fileUploader, ImportFireHydrantsJobRegister jobRegister) + { + _fileUploader = fileUploader; + _jobRegister = jobRegister; + } + + public async Task ImportFireHydrants(IFormFileCollection files, int unitId, int uniacid, int groupId) + { + var fileUploadResult = await _fileUploader.UploadFiles(files, unitId, uniacid, groupId); + foreach (var uploadResult in fileUploadResult) + { + _jobRegister.Register(uploadResult.Item2); + } + } + } +} diff --git a/Application/Services/FireHydrants/IFireHydrantAppService.cs b/Application/Services/FireHydrants/IFireHydrantAppService.cs new file mode 100644 index 0000000..65ea2db --- /dev/null +++ b/Application/Services/FireHydrants/IFireHydrantAppService.cs @@ -0,0 +1,13 @@ +using Microsoft.AspNetCore.Http; +using System; +using System.Collections.Generic; +using System.Text; +using System.Threading.Tasks; + +namespace Application.Services.FireHydrants +{ + public interface IFireHydrantAppService + { + Task ImportFireHydrants(IFormFileCollection files, int unitId, int uniacid, int groupId); + } +} diff --git a/Application/Services/UMEs/IUMEsAppService.cs b/Application/Services/UMEs/IUMEsAppService.cs new file mode 100644 index 0000000..f20889b --- /dev/null +++ b/Application/Services/UMEs/IUMEsAppService.cs @@ -0,0 +1,13 @@ +using Microsoft.AspNetCore.Http; +using System; +using System.Collections.Generic; +using System.Text; +using System.Threading.Tasks; + +namespace Application.Services.UMEs +{ + public interface IUMEsAppService + { + Task ImportUMEs(IFormFileCollection files, int unitId, int uniacid, int groupId); + } +} diff --git a/Application/Services/UMEs/UMEsAppService.cs b/Application/Services/UMEs/UMEsAppService.cs new file mode 100644 index 0000000..d31569e --- /dev/null +++ b/Application/Services/UMEs/UMEsAppService.cs @@ -0,0 +1,32 @@ +using BackGround.Hangfire.JobRegisters.FireHydrant; +using BackGround.Hangfire.JobRegisters.UMEs; +using Domain.Service.FileUpload; +using Infrastructure.Application; +using Microsoft.AspNetCore.Http; +using System; +using System.Collections.Generic; +using System.Text; +using System.Threading.Tasks; + +namespace Application.Services.UMEs +{ + public class UMEsAppService:ApplicationService, IUMEsAppService + { + private readonly IFileUploader _fileUploader; + private readonly UMEImportJobRegister _jobRegister; + public UMEsAppService(IFileUploader fileUploader, UMEImportJobRegister jobRegister) + { + _fileUploader = fileUploader; + _jobRegister = jobRegister; + } + + public async Task ImportUMEs(IFormFileCollection files,int unitId, int uniacid, int groupId) + { + var fileUploadResult = await _fileUploader.UploadFiles(files, unitId, uniacid, groupId); + foreach (var uploadResult in fileUploadResult) + { + _jobRegister.Register(uploadResult.Item2); + } + } + } +} diff --git a/Application/Services/Units/IUnitAppService.cs b/Application/Services/Units/IUnitAppService.cs new file mode 100644 index 0000000..f463338 --- /dev/null +++ b/Application/Services/Units/IUnitAppService.cs @@ -0,0 +1,16 @@ +using Application.Shared.Dtos.Units; +using Domain.Models.Units; +using Microsoft.AspNetCore.Http; +using System; +using System.Collections.Generic; +using System.Text; +using System.Threading.Tasks; + +namespace Application.Services.Units +{ + public interface IUnitAppService + { + Task> GetUnits(); + Task ImportUnits(IFormFileCollection files, int unitId, int uniacid, int groupId); + } +} diff --git a/Application/Services/Units/UnitAppService.cs b/Application/Services/Units/UnitAppService.cs new file mode 100644 index 0000000..d048e66 --- /dev/null +++ b/Application/Services/Units/UnitAppService.cs @@ -0,0 +1,48 @@ +using Application.Shared.Dtos.Units; +using AutoMapper; +using BackGround.Hangfire.JobRegisters.Units; +using Domain.Models.Units; +using Domain.Service.FileUpload; +using EntityFramework; +using Infrastructure.Application; +using Microsoft.AspNetCore.Http; +using Microsoft.EntityFrameworkCore; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Application.Services.Units +{ + public class UnitAppservice:ApplicationService, IUnitAppService + { + private readonly FireStationDbContext _context; + private readonly IFileUploader _fileUploader; + private readonly IMapper _mapper; + private readonly ImportJobRegister _importJobRegister; + public UnitAppservice(FireStationDbContext context,IMapper mapper, IFileUploader fileUploader, ImportJobRegister importJobRegister) + { + _context = context; + _mapper = mapper; + _fileUploader = fileUploader; + _importJobRegister = importJobRegister; + } + + public async Task> GetUnits() + { + var unitQuery = _context.Units.AsQueryable(); + var units= await unitQuery.ToListAsync(); + return _mapper.Map, List>(units); + } + + public async Task ImportUnits(IFormFileCollection files,int unitId, int uniacid, int groupId) + { + var fileUploadResult = await _fileUploader.UploadFiles(files, unitId, uniacid, groupId); + foreach(var uploadResult in fileUploadResult) + { + _importJobRegister.Register(uploadResult.Item2); + } + } + } +} diff --git a/Application/Services/Water/IWaterAppService.cs b/Application/Services/Water/IWaterAppService.cs new file mode 100644 index 0000000..978c8dd --- /dev/null +++ b/Application/Services/Water/IWaterAppService.cs @@ -0,0 +1,13 @@ +using Microsoft.AspNetCore.Http; +using System; +using System.Collections.Generic; +using System.Text; +using System.Threading.Tasks; + +namespace Application.Services.Water +{ + public interface IWaterAppService + { + Task ImportWater(IFormFileCollection files, int unitId, int uniacid, int groupId,int categoryId); + } +} diff --git a/Application/Services/Water/WaterAppService.cs b/Application/Services/Water/WaterAppService.cs new file mode 100644 index 0000000..165a62e --- /dev/null +++ b/Application/Services/Water/WaterAppService.cs @@ -0,0 +1,34 @@ +using BackGround.Hangfire.JobRegisters.Water; +using Domain.Service.FileUpload; +using EntityFramework; +using Infrastructure.Application; +using Microsoft.AspNetCore.Http; +using System; +using System.Collections.Generic; +using System.Text; +using System.Threading.Tasks; + +namespace Application.Services.Water +{ + public class WaterAppService:ApplicationService, IWaterAppService + { + private readonly FireStationDbContext _context; + private readonly IFileUploader _fileUploader; + private readonly ImportWaterJobRegister _importWaterJobRegister; + public WaterAppService(FireStationDbContext context, IFileUploader fileUploader, ImportWaterJobRegister importWaterJobRegister) + { + _context = context; + _fileUploader = fileUploader; + _importWaterJobRegister = importWaterJobRegister; + } + + public async Task ImportWater(IFormFileCollection files, int unitId, int uniacid, int groupId,int categoryId) + { + var fileUploadResult = await _fileUploader.UploadFiles(files, unitId, uniacid, groupId); + foreach (var uploadResult in fileUploadResult) + { + _importWaterJobRegister.Register(uploadResult.Item2,categoryId); + } + } + } +} diff --git a/BackGround/BackGround.csproj b/BackGround/BackGround.csproj new file mode 100644 index 0000000..2440c86 --- /dev/null +++ b/BackGround/BackGround.csproj @@ -0,0 +1,19 @@ + + + + netcoreapp3.1 + + + + + + + + + + + + + + + diff --git a/BackGround/Hangfire/JobRegisters/FireHydrant/ImportFireHydrantsJobRegister.cs b/BackGround/Hangfire/JobRegisters/FireHydrant/ImportFireHydrantsJobRegister.cs new file mode 100644 index 0000000..0178c03 --- /dev/null +++ b/BackGround/Hangfire/JobRegisters/FireHydrant/ImportFireHydrantsJobRegister.cs @@ -0,0 +1,22 @@ +using BackGround.Hangfire.Jobs.FireHydrant; +using Hangfire; +using Infrastructure.Abstructions; +using System; +using System.Collections.Generic; +using System.Text; + +namespace BackGround.Hangfire.JobRegisters.FireHydrant +{ + public class ImportFireHydrantsJobRegister:ITransientDependency + { + private readonly IImportFireHydrantsJob _job; + public ImportFireHydrantsJobRegister(IImportFireHydrantsJob job) + { + _job = job; + } + public void Register(Guid fileId) + { + BackgroundJob.Enqueue(() => _job.Execute(fileId)); + } + } +} diff --git a/BackGround/Hangfire/JobRegisters/UMEs/UMEImportJobRegister.cs b/BackGround/Hangfire/JobRegisters/UMEs/UMEImportJobRegister.cs new file mode 100644 index 0000000..135264a --- /dev/null +++ b/BackGround/Hangfire/JobRegisters/UMEs/UMEImportJobRegister.cs @@ -0,0 +1,22 @@ +using BackGround.Hangfire.Jobs.UMEs; +using Hangfire; +using Infrastructure.Abstructions; +using System; +using System.Collections.Generic; +using System.Text; + +namespace BackGround.Hangfire.JobRegisters.UMEs +{ + public class UMEImportJobRegister:ITransientDependency + { + private readonly ImportUMEsJob _job; + public UMEImportJobRegister(ImportUMEsJob job) + { + _job = job; + } + public void Register(Guid fileId) + { + BackgroundJob.Enqueue(() => _job.Execute(fileId)); + } + } +} diff --git a/BackGround/Hangfire/JobRegisters/Units/ImportJobRegister.cs b/BackGround/Hangfire/JobRegisters/Units/ImportJobRegister.cs new file mode 100644 index 0000000..d4986bf --- /dev/null +++ b/BackGround/Hangfire/JobRegisters/Units/ImportJobRegister.cs @@ -0,0 +1,22 @@ +using BackGround.Hangfire.Jobs.Units; +using Hangfire; +using Infrastructure.Abstructions; +using System; +using System.Collections.Generic; +using System.Text; + +namespace BackGround.Hangfire.JobRegisters.Units +{ + public class ImportJobRegister: ITransientDependency + { + private readonly IImportUnitsJob _importUnitsJob; + public ImportJobRegister(IImportUnitsJob importUnitsJob) + { + _importUnitsJob = importUnitsJob; + } + public void Register(Guid fileId) + { + BackgroundJob.Enqueue(() => _importUnitsJob.Execute(fileId)); + } + } +} diff --git a/BackGround/Hangfire/JobRegisters/Water/ImportWaterJobRegister.cs b/BackGround/Hangfire/JobRegisters/Water/ImportWaterJobRegister.cs new file mode 100644 index 0000000..2b32f4f --- /dev/null +++ b/BackGround/Hangfire/JobRegisters/Water/ImportWaterJobRegister.cs @@ -0,0 +1,22 @@ +using BackGround.Hangfire.Jobs.Waters; +using Hangfire; +using Infrastructure.Abstructions; +using System; +using System.Collections.Generic; +using System.Text; + +namespace BackGround.Hangfire.JobRegisters.Water +{ + public class ImportWaterJobRegister:ITransientDependency + { + private readonly IImportWaterJob _job; + public ImportWaterJobRegister(IImportWaterJob job) + { + _job = job; + } + public void Register(Guid fileId,int categoryId) + { + BackgroundJob.Enqueue(() => _job.Execute(fileId,categoryId)); + } + } +} diff --git a/BackGround/Hangfire/Jobs/FireHydrant/IImportFireHydrantsJob.cs b/BackGround/Hangfire/Jobs/FireHydrant/IImportFireHydrantsJob.cs new file mode 100644 index 0000000..1d8a398 --- /dev/null +++ b/BackGround/Hangfire/Jobs/FireHydrant/IImportFireHydrantsJob.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Text; +using System.Threading.Tasks; + +namespace BackGround.Hangfire.Jobs.FireHydrant +{ + public interface IImportFireHydrantsJob + { + Task Execute(Guid fileId); + } +} diff --git a/BackGround/Hangfire/Jobs/FireHydrant/ImportFireHydrantsJob.cs b/BackGround/Hangfire/Jobs/FireHydrant/ImportFireHydrantsJob.cs new file mode 100644 index 0000000..49dc9d9 --- /dev/null +++ b/BackGround/Hangfire/Jobs/FireHydrant/ImportFireHydrantsJob.cs @@ -0,0 +1,201 @@ +using BackGround.Hangfire.Jobs.Units; +using Domain.Models.UnitEquipments; +using Domain.Models.Waters; +using EntityFramework; +using Infrastructure.Abstructions; +using Infrastructure.Converts; +using Infrastructure.Word; +using Microsoft.EntityFrameworkCore; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Text.RegularExpressions; +using System.Threading.Tasks; +using static Infrastructure.Converts.Converter; + +namespace BackGround.Hangfire.Jobs.FireHydrant +{ + public class ImportFireHydrantsJob:ITransientDependency, IImportFireHydrantsJob + { + private readonly FireHydrantTableResolver _fireHydrantTableResolver; + private readonly FireStationDbContext _context; + private readonly IConverter _converter; + private readonly IWordParser _parser; + public ImportFireHydrantsJob(FireHydrantTableResolver fireHydrantTableResolver, FireStationDbContext context, IConverter converter, IWordParser parser) + { + _fireHydrantTableResolver = fireHydrantTableResolver; + _context = context; + _converter = converter; + _parser = parser; + } + public async Task Execute(Guid fileId) + { + var file = await _context.UploadedFiles.Where(u => u.Id == fileId).FirstOrDefaultAsync(); + if (file == null) + { + throw new Exception($"没有找到id为{fileId}的文件"); + } + var fileUnit = await _context.FileUnits.FirstOrDefaultAsync(f => f.FileId == fileId); + if (fileUnit == null) + { + throw new Exception($"没有找到文件{fileId}的单位关联记录"); + } + var unitId = fileUnit.UnitId; + int uniacid = fileUnit.Uniacid; + int groupId = fileUnit.GroupId; + var fileName = file.Path; + var errorMessages = new List(); + var waterQuery = _context.Water.AsQueryable(); + var word = _parser.ReadDocument(fileName); + var parseResult= _parser.Parse(word, _fireHydrantTableResolver); + word.Close(); + foreach (var dict in parseResult) + { + try + { + var water = BuildWater(dict,uniacid,groupId); + var existWater = waterQuery.FirstOrDefault(w => w.LocationName == water.LocationName); + if (existWater == null) + { + await _context.Water.AddAsync(water); + } + else + { + existWater.Type = water.Type; + existWater.Code = water.Code; + existWater.GuanwangDiam = water.GuanwangDiam; + existWater.GuanwangPressure = water.GuanwangPressure; + existWater.GuanangType = water.GuanangType; + existWater.SupplyCompany = water.SupplyCompany; + existWater.PrincipalName = water.SupplyCompany; + existWater.PrincipalPhoneNum = water.PrincipalPhoneNum; + existWater.InstallDate = water.InstallDate; + existWater.UpdateTime = water.UpdateTime; + existWater.CancelDate = water.CancelDate; + existWater.UpdateTime = DateTime.Now; + } + await _context.SaveChangesAsync(); + } + catch(Exception e) + { + if (!errorMessages.Contains(e.Message)) + errorMessages.Add(e.Message); + } + + } + if (errorMessages.Any()) + { + var message = string.Join(';', errorMessages); + throw new Exception(message); + } + } + + private Water BuildWater(Dictionary dictionary, int uniacid, int groupId) + { + var water = new Water + { + Uniacid=uniacid, + GroupId=groupId, + LocationName = dictionary["位置"].ToString(), + CategoryId = 1, + Type = (short)(dictionary["形式(地上、地下)"].ToString().Trim() == "地上" ? 0 : 1), + Code = dictionary["消火栓编号"].ToString(), + Status = 1, + Latitude = 0, + Longitude = 0, + GuanangType = (short)(dictionary["管网形式(环状、枝状)"].ToString().Contains("环") ? 0 : 1), + SupplyCompany = dictionary["供水单位"].ToString(), + PrincipalName = dictionary["负责人"].ToString(), + PrincipalPhoneNum = dictionary["电话"].ToString(), + InstallDate = dictionary["安装日期"].ToString(), + ChangeDate = dictionary["变更日期"].ToString(), + CancelDate = dictionary["注销日期"].ToString(), + GuanwangDiam = (float)ConvertLength(dictionary["管网直径"].ToString()), + GuanwangPressure = (float)ConvertPresure(dictionary["管网压力"].ToString()), + UpdateTime=DateTime.Now, + + }; + return water; + + } + + private double ConvertLength(string length) + { + var pattern = "\\d+\\.?\\d*"; + var match= Regex.Match(length, pattern); + if (match.Success) + { + var value = double.Parse(match.Value); + var unitStr = length.Replace(value.ToString(), "").ToLower(); + LengthUnits unit; + if (unitStr == LengthUnits.mm.ToString()) + { + unit = LengthUnits.mm; + } + else if (unitStr == LengthUnits.cm.ToString()) + { + unit = LengthUnits.cm; + } + else if (unitStr == LengthUnits.dm.ToString()) + { + unit = LengthUnits.dm; + } + else if (unitStr == LengthUnits.m.ToString()) + { + unit = LengthUnits.m; + } + else if (unitStr == LengthUnits.km.ToString()) + { + unit = LengthUnits.km; + } + else + { + throw new Exception($"错误的长度值{length}"); + } + return _converter.ConvertLength(value, unit, LengthUnits.mm); + } + else + { + throw new Exception($"错误的长度值{length}"); + } + } + private double ConvertPresure(string presure) + { + var pattern = "\\d+\\.?\\d*"; + var match = Regex.Match(presure, pattern); + if (match.Success) + { + var value = double.Parse(match.Value); + var unit = presure.Replace(value.ToString(), "").ToLower(); + PresureUnits presureUnit ; + if (unit == PresureUnits.pa.ToString()) + { + presureUnit = PresureUnits.pa; + } + else if(unit == PresureUnits.hpa.ToString()) + { + presureUnit = PresureUnits.hpa; + } + else if (unit == PresureUnits.kpa.ToString()) + { + presureUnit = PresureUnits.kpa; + } + else if (unit == PresureUnits.mpa.ToString()) + { + presureUnit = PresureUnits.mpa; + } + else + { + throw new Exception($"压力值非法{presure}"); + } + var presureValue = _converter.ConvertPresure(value, presureUnit, PresureUnits.pa); + return presureValue; + } + else + { + throw new Exception($"压力值非法{presure}"); + } + } + } +} diff --git a/BackGround/Hangfire/Jobs/UMEs/ImportUMEsJob.cs b/BackGround/Hangfire/Jobs/UMEs/ImportUMEsJob.cs new file mode 100644 index 0000000..b3acf6d --- /dev/null +++ b/BackGround/Hangfire/Jobs/UMEs/ImportUMEsJob.cs @@ -0,0 +1,145 @@ +using Domain.Models.FireMen; +using Domain.Models.UnitEquipments; +using EntityFramework; +using Infrastructure.Abstructions; +using Infrastructure.Converts; +using Infrastructure.Word; +using Microsoft.EntityFrameworkCore; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Text.RegularExpressions; +using System.Threading.Tasks; + +namespace BackGround.Hangfire.Jobs.UMEs +{ + public class ImportUMEsJob : ITransientDependency + { + private readonly FireStationDbContext _context; + private readonly UMETableResolver _resolver; + private readonly IConverter _converter; + private readonly IWordParser _parser; + public ImportUMEsJob(FireStationDbContext context, IConverter converter, IWordParser parser, UMETableResolver resolver) + { + _context = context; + _converter = converter; + _parser = parser; + _resolver = resolver; + } + public async Task Execute(Guid fileId) + { + var file = await _context.UploadedFiles.Where(u => u.Id == fileId).FirstOrDefaultAsync(); + if (file == null) + { + throw new Exception($"没有找到id为{fileId}的文件"); + } + var fileUnit = await _context.FileUnits.FirstOrDefaultAsync(f => f.FileId == fileId); + if (fileUnit == null) + { + throw new Exception($"没有找到文件{fileId}的单位关联记录"); + } + var unitId = fileUnit.UnitId; + int uniacid = fileUnit.Uniacid; + var fileName = file.Path; + var errorMessages = new List(); + var waterQuery = _context.Water.AsQueryable(); + var word = _parser.ReadDocument(fileName); + var parseResult = _parser.Parse(word, _resolver); + word.Close(); + + foreach (var dic in parseResult) + { + var fireMenInfos = (List>)dic["队员情况"]; + await SaveFireMen(fireMenInfos, unitId,uniacid); + var eqInfos = (List>)dic["消防装备器材配备"]; + await SaveEquipments(eqInfos, unitId, uniacid); + } + + } + + private async Task SaveFireMen(List> fireMenInfos,int unitId, int uniacid) + { + foreach (var fireMenInfo in fireMenInfos) + { + var fireMen = new FireMen + { + Uniacid=uniacid, + Name = fireMenInfo["姓名"].ToString(), + Gender = fireMenInfo["性别"].ToString().Trim().Contains("男") ? Domain.Shared.GenderType.Male : Domain.Shared.GenderType.Female, + BirthDay = fireMenInfo["出生年月"].ToString(), + Job = fireMenInfo["站内职务"].ToString(), + PhoneNumber = fireMenInfo["联系电话"].ToString(), + UnitId=unitId, + UpdateTime=DateTime.Now + }; + var existFireMen = await _context.FireMen.Where(f => f.Name == fireMen.Name && f.Gender == fireMen.Gender && f.PhoneNumber == fireMen.PhoneNumber).FirstOrDefaultAsync(); + if (existFireMen == null) + { + await _context.FireMen.AddAsync(fireMen); + } + else + { + if (existFireMen.Job != fireMen.Job) + { existFireMen.Job = fireMen.Job; + _context.FireMen.Update(existFireMen); + } + } + + } + await _context.SaveChangesAsync(); + } + + private async Task SaveEquipments(List> equipmentInfos,int unitId, int uniacid) + { + foreach(var equipmentInfo in equipmentInfos) + { + + foreach(var dict in equipmentInfo) + { + if (!string.IsNullOrEmpty(dict.Key) && !string.IsNullOrWhiteSpace(dict.Key)) + { + var unitEquipment = new UnitEquipment + { + Uniacid=uniacid, + Name = dict.Key, + Count = GetCount(dict.Value.ToString()), + UpdateTime=DateTime.Now, + UnitId=unitId + }; + var existEquipment = await _context.UnitEquipments.Where(e => e.Name == unitEquipment.Name).FirstOrDefaultAsync(); + if (existEquipment == null) + { + await _context.UnitEquipments.AddAsync(unitEquipment); + } + else + { + if (existEquipment.Count != unitEquipment.Count) + { + existEquipment.Count = unitEquipment.Count; + _context.UnitEquipments.Update(existEquipment); + } + + } + } + + } + await _context.SaveChangesAsync(); + } + } + + private int GetCount(string countStr) + { + var pattern = "\\d+"; + var matchResult = Regex.Match(countStr, pattern); + if (matchResult.Success) + { + return int.Parse(matchResult.Value); + } + else + { + return 0; + } + } + } +} diff --git a/BackGround/Hangfire/Jobs/UMEs/UMETableResolver.cs b/BackGround/Hangfire/Jobs/UMEs/UMETableResolver.cs new file mode 100644 index 0000000..fb61d37 --- /dev/null +++ b/BackGround/Hangfire/Jobs/UMEs/UMETableResolver.cs @@ -0,0 +1,130 @@ +using Infrastructure.Abstructions; +using Infrastructure.Word; +using NPOI.XWPF.UserModel; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace BackGround.Hangfire.Jobs.UMEs +{ + public class UMETableResolver : IWordTableResolver, ITransientDependency + { + private List fmkeys = new List { "姓名", "性别", "出生年月", "站内职务", "兼任职务", "联系电话" }; + public Dictionary Resolve(XWPFTable table) + { + var result = new Dictionary { { "队员情况", new List>() }, { "消防装备器材配备", new List>() } }; + var currentTableName = string.Empty; + var fireMenInfoRows = new List(); + var equipmentInfoRows = new List(); + var otherEquipmentRows = new List(); + bool isHeaderRow = false; + bool isUnderOtherEqRow = false; + foreach(var row in table.Rows) + { + var cells = row.GetTableCells(); + var tableName = GetStringContentOfCell(cells[0]); + if (!string.IsNullOrEmpty(tableName)) + { + isHeaderRow = true; + currentTableName = tableName; + } + else + { + isHeaderRow = false; + } + if(currentTableName.Trim()== "队员情况") + { + if (!isHeaderRow) + { + fireMenInfoRows.Add(row); + } + } + else if(currentTableName == "消防装备器材配备") + { + var cell1Value = GetStringContentOfCell(cells[1]); + if(cell1Value.Trim()== "其他消防装备、器材") + { + isUnderOtherEqRow = true; + continue; + } + if (isUnderOtherEqRow) + { + otherEquipmentRows.Add(row); + } + else + { + equipmentInfoRows.Add(row); + } + + } + } + + ((List>)result["队员情况"]).AddRange(GetFireMenInfos(fireMenInfoRows)); + ((List>)result["消防装备器材配备"]).Add(GetEuipmentMenInfos(equipmentInfoRows)); + ((List>)result["消防装备器材配备"]).Add(GetOtherEuipmentMenInfos(otherEquipmentRows)); + return result; + } + + private string GetStringContentOfCell(XWPFTableCell cell) + { + var names = cell.Paragraphs.Select(p => p.ParagraphText); + return string.Join(null, names); + } + + private List> GetFireMenInfos(List rows) + { + var result = new List>(); + rows.ForEach(row => + { + var cells = row.GetTableCells(); + var infoOfMenDict = new Dictionary(); + for (var i = 1; i < cells.Count; i++) + { + var cellcontenText = GetStringContentOfCell(cells[i]); + infoOfMenDict.Add(fmkeys[i - 1], cellcontenText); + } + result.Add(infoOfMenDict); + }); + return result; + } + + private Dictionary GetEuipmentMenInfos(List rows) + { + var result = new Dictionary(); + for(var i=0; i < rows.Count;) + { + var keyCells = rows[i].GetTableCells(); + var valveCells= rows[i+1].GetTableCells(); + for (var j=1; j < keyCells.Count; j++) + { + var key = keyCells[j].Paragraphs[0].ParagraphText; + var value = GetStringContentOfCell(valveCells[j]); + if (!result.ContainsKey(key)) + result.Add(key, value); + } + i = i + 2; + } + return result; + } + + private Dictionary GetOtherEuipmentMenInfos(List rows) + { + var result = new Dictionary(); + for (var i = 0; i < rows.Count;) + { + var keyCells = rows[i].GetTableCells(); + var valveCells = rows[i + 1].GetTableCells(); + for (var j = 2; j < keyCells.Count; j++) + { + var key = GetStringContentOfCell(keyCells[j]); + var value = GetStringContentOfCell(valveCells[j]); + if (!result.ContainsKey(key)) + result.Add(key, value); + } + i = i + 2; + } + return result; + } + } +} diff --git a/BackGround/Hangfire/Jobs/Units/FireHydrantTableResolver.cs b/BackGround/Hangfire/Jobs/Units/FireHydrantTableResolver.cs new file mode 100644 index 0000000..c1306a3 --- /dev/null +++ b/BackGround/Hangfire/Jobs/Units/FireHydrantTableResolver.cs @@ -0,0 +1,49 @@ +using Infrastructure.Abstructions; +using Infrastructure.Word; +using NPOI.XWPF.UserModel; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace BackGround.Hangfire.Jobs.Units +{ + public class FireHydrantTableResolver : IWordTableResolver,ITransientDependency + { + private string[] keys; + + public FireHydrantTableResolver() + { + keys = new string[] { "消火栓编号", "形式(地上、地下)", "位置", "管网形式(环状、枝状)", + "管网直径", "管网压力","供水单位","负责人","电话","安装日期","变更日期","注销日期" }; + } + public Dictionary Resolve(XWPFTable table) + { + var result = new Dictionary(); + var cellList = new List(); + foreach (XWPFTableRow row in table.Rows) + { + var rowIndex = table.Rows.IndexOf(row);//获取该循环在List集合中的索引 + //3.循环没行中的列 + foreach (XWPFTableCell cell in row.GetTableCells()) + { + cellList.Add(cell); + } + } + foreach (var key in keys) + { + var cell = cellList.FirstOrDefault(c => c.Paragraphs.FirstOrDefault(p => p.ParagraphText.Trim() == key) != null); + if (cell != null) + { + var index = cellList.IndexOf(cell); + if (index <= cellList.Count - 2) + { + var value = cellList[index + 1]; + result.Add(key, value.Paragraphs[0].Text); + } + } + } + return result; + } + } +} diff --git a/BackGround/Hangfire/Jobs/Units/IImportUnitsJob.cs b/BackGround/Hangfire/Jobs/Units/IImportUnitsJob.cs new file mode 100644 index 0000000..1983e32 --- /dev/null +++ b/BackGround/Hangfire/Jobs/Units/IImportUnitsJob.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Text; +using System.Threading.Tasks; + +namespace BackGround.Hangfire.Jobs.Units +{ + public interface IImportUnitsJob + { + Task Execute(Guid fileId); + } +} diff --git a/BackGround/Hangfire/Jobs/Units/ImportUnitsJob.cs b/BackGround/Hangfire/Jobs/Units/ImportUnitsJob.cs new file mode 100644 index 0000000..d978d47 --- /dev/null +++ b/BackGround/Hangfire/Jobs/Units/ImportUnitsJob.cs @@ -0,0 +1,937 @@ +using Application.Shared.Dtos.Units.Imports; +using Domain.Models.Units; +using EntityFramework; +using Infrastructure.Abstructions; +using Infrastructure.Converts; +using Infrastructure.Excel; +using Microsoft.EntityFrameworkCore; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Text.RegularExpressions; +using System.Threading.Tasks; + +namespace BackGround.Hangfire.Jobs.Units +{ + public class ImportUnitsJob : ITransientDependency, IImportUnitsJob + { + private readonly IParser _excelParser; + private readonly FireStationDbContext _context; + private readonly IConverter _converter; + public ImportUnitsJob(IParser parser, FireStationDbContext context, IConverter converter) + { + _excelParser = parser; + _context = context; + _converter = converter; + } + public async Task Execute(Guid fileId) + { + var file =await _context.UploadedFiles.Where(u => u.Id == fileId).FirstOrDefaultAsync(); + if (file == null) + { + throw new Exception($"没有找到id为{fileId}的文件"); + } + var fileUnit = await _context.FileUnits.FirstOrDefaultAsync(f => f.FileId == fileId); + if (fileUnit == null) + { + throw new Exception($"没有找到文件{fileId}的单位关联记录"); + } + var unitId = fileUnit.UnitId; + int uniacid = fileUnit.Uniacid; + int groupId = fileUnit.GroupId; + var fileName = file.Path; + var workBook = _excelParser.ReadExcel(fileName); + var industrialEnterprises = _excelParser.ParseExcel(workBook); + var tallBuildings = _excelParser.ParseExcel(workBook); + var underGrunds = _excelParser.ParseExcel(workBook); + var hotels = _excelParser.ParseExcel(workBook); + var others = _excelParser.ParseExcel(workBook); + var welfareInstitutions = _excelParser.ParseExcel(workBook); + var stateOrgans = _excelParser.ParseExcel(workBook); + var bPCs = _excelParser.ParseExcel(workBook); + var schools = _excelParser.ParseExcel(workBook); + var medicalInstitutions = _excelParser.ParseExcel(workBook); + var publicEntertainments = _excelParser.ParseExcel(workBook); + var markets = _excelParser.ParseExcel(workBook); + var inflammableAndExplosiveProductionUnits = _excelParser.ParseExcel(workBook); + var inflammableAndExplosiveStores = _excelParser.ParseExcel(workBook); + var gasStations = _excelParser.ParseExcel(workBook); + var liquefiedGasStations = _excelParser.ParseExcel(workBook); + var storages = _excelParser.ParseExcel(workBook); + workBook.Close(); + await SaveIndustrialEnterprises(industrialEnterprises, uniacid, groupId); + await SaveTallBuildings(tallBuildings, uniacid, groupId); + await SaveUnderGrounds(underGrunds, uniacid, groupId); + await SaveHotels(hotels, uniacid, groupId); + await SaveOthers(others, uniacid, groupId); + await SaveWelfareInstitution(welfareInstitutions, uniacid, groupId); + await SaveStateOrgans(stateOrgans, uniacid, groupId); + await SavePBCs(bPCs, uniacid, groupId); + await SaveSchools(schools, uniacid, groupId); + await SaveMedicalInstitutions(medicalInstitutions, uniacid, groupId); + await SavePublicEntertainments(publicEntertainments, uniacid, groupId); + await SaveMarkets(markets, uniacid, groupId); + await SaveInflammableAndExplosiveProductionUnits(inflammableAndExplosiveProductionUnits, uniacid, groupId); + await SaveInflammableAndExplosiveStores(inflammableAndExplosiveStores, uniacid, groupId); + await SaveGasStation(gasStations, uniacid, groupId); + await SaveLiquefiedGasStations(liquefiedGasStations, uniacid, groupId); + await SaveStorages(storages, uniacid, groupId); + await _context.SaveChangesAsync(); + } + + private async Task SaveStorages(List storages, int uniacid, int groupId) + { + var errors = new List(); + var existCategory = await GetOrAddCategory(typeof(Storage),groupId,uniacid); + var unitQuery = _context.Units.AsQueryable(); + foreach (var storage in storages) + { + var existUnit = await unitQuery.Where(u => u.Name == storage.Name && u.LocationName == storage.Area + && u.Uniacid==uniacid && u.GroupId==groupId).FirstOrDefaultAsync(); + if (existUnit == null) + { + var unit = new Unit + { + Uniacid=uniacid, + GroupId=groupId, + CategoryId = existCategory.Id, + LocationName = storage.Area, + Name = storage.Name, + SuperviseLevel = ConvertRegulatoryLevelToInt(storage.RegulatoryLevel), + PrincipalName = storage.PersonInChargeOfSafetyInfo?.Name, + PrincipalPhoneNum = storage.PersonInChargeOfSafetyInfo?.Phone, + UseArea=ConvertAreaSizeToInt(storage.Survey.Area), + UpdateTime = DateTime.Now, + Longitude = ParseGeoPoints(storage.Longitude), + Latitude = ParseGeoPoints(storage.Latitude), + }; + await _context.Units.AddAsync(unit); + } + else + { + existUnit.CategoryId = existCategory.Id; + existUnit.LocationName = storage.Area; + existUnit.Name = storage.Name; + existUnit.SuperviseLevel = ConvertRegulatoryLevelToInt(storage.RegulatoryLevel); + existUnit.PrincipalName = storage.PersonInChargeOfSafetyInfo?.Name; + existUnit.PrincipalPhoneNum = storage.PersonInChargeOfSafetyInfo?.Phone; + existUnit.UseArea = ConvertAreaSizeToInt(storage.Survey.Area); + existUnit.UpdateTime = DateTime.Now; + existUnit.Longitude = ParseGeoPoints(storage.Longitude); + existUnit.Latitude = ParseGeoPoints(storage.Latitude); + _context.Units.Update(existUnit); + } + await _context.SaveChangesAsync(); + } + } + private async Task SaveLiquefiedGasStations(List gasStations, int uniacid, int groupId) + { + var existCategory = await GetOrAddCategory(typeof(LiquefiedGasStation), groupId, uniacid); + var unitQuery = _context.Units.AsQueryable(); + foreach (var gasStation in gasStations) + { + var existUnit = await unitQuery.Where(u => u.Name == gasStation.Name && u.LocationName == gasStation.Area + && u.Uniacid==uniacid && u.GroupId==groupId).FirstOrDefaultAsync(); + if (existUnit == null) + { + var unit = new Unit + { + Uniacid=uniacid, + GroupId=groupId, + CategoryId = existCategory.Id, + LocationName = gasStation.Area, + Name = gasStation.Name, + SuperviseLevel = ConvertRegulatoryLevelToInt(gasStation.RegulatoryLevel), + PrincipalName = gasStation.PersonInChargeOfSafetyInfo?.Name, + PrincipalPhoneNum = gasStation.PersonInChargeOfSafetyInfo?.Phone, + UpdateTime = DateTime.Now, + Longitude = ParseGeoPoints(gasStation.Longitude), + Latitude = ParseGeoPoints(gasStation.Latitude), + }; + await _context.Units.AddAsync(unit); + } + else + { + existUnit.CategoryId = existCategory.Id; + existUnit.LocationName = gasStation.Area; + existUnit.Name = gasStation.Name; + existUnit.SuperviseLevel = ConvertRegulatoryLevelToInt(gasStation.RegulatoryLevel); + existUnit.PrincipalName = gasStation.PersonInChargeOfSafetyInfo?.Name; + existUnit.PrincipalPhoneNum = gasStation.PersonInChargeOfSafetyInfo?.Phone; + existUnit.UpdateTime = DateTime.Now; + existUnit.Longitude = ParseGeoPoints(gasStation.Longitude); + existUnit.Latitude = ParseGeoPoints(gasStation.Latitude); + _context.Units.Update(existUnit); + } + await _context.SaveChangesAsync(); + } + } + private async Task SaveGasStation(List gasStations, int uniacid, int groupId) + { + var existCategory = await GetOrAddCategory(typeof(GasStation), groupId, uniacid); + var unitQuery = _context.Units.AsQueryable(); + foreach (var gasStation in gasStations) + { + var existUnit = await unitQuery.Where(u => u.Name == gasStation.Name && u.LocationName == gasStation.Area + && u.Uniacid == uniacid && u.GroupId == groupId).FirstOrDefaultAsync(); + if (existUnit == null) + { + var unit = new Unit + { + Uniacid=uniacid, + GroupId=groupId, + CategoryId = existCategory.Id, + LocationName = gasStation.Area, + Name = gasStation.Name, + SuperviseLevel = ConvertRegulatoryLevelToInt(gasStation.RegulatoryLevel), + PrincipalName = gasStation.PersonInChargeOfSafetyInfo?.Name, + PrincipalPhoneNum = gasStation.PersonInChargeOfSafetyInfo?.Phone, + Longitude = ParseGeoPoints(gasStation.Longitude), + Latitude = ParseGeoPoints(gasStation.Latitude), + UpdateTime = DateTime.Now, + }; + await _context.Units.AddAsync(unit); + } + else + { + existUnit.CategoryId = existCategory.Id; + existUnit.LocationName = gasStation.Area; + existUnit.Name = gasStation.Name; + existUnit.SuperviseLevel = ConvertRegulatoryLevelToInt(gasStation.RegulatoryLevel); + existUnit.PrincipalName = gasStation.PersonInChargeOfSafetyInfo?.Name; + existUnit.PrincipalPhoneNum = gasStation.PersonInChargeOfSafetyInfo?.Phone; + existUnit.UpdateTime = DateTime.Now; + existUnit.Longitude = ParseGeoPoints(gasStation.Longitude); + existUnit.Latitude = ParseGeoPoints(gasStation.Latitude); + _context.Units.Update(existUnit); + } + await _context.SaveChangesAsync(); + } + } + private async Task SaveInflammableAndExplosiveStores(List inflammableAndExplosiveStores, int uniacid, int groupId) + { + var existCategory = await GetOrAddCategory(typeof(InflammableAndExplosiveStore), groupId, uniacid); + var unitQuery = _context.Units.AsQueryable(); + foreach (var inflammableAndExplosiveStore in inflammableAndExplosiveStores) + { + var existUnit = await unitQuery.Where(u => u.Name == inflammableAndExplosiveStore.Name && u.LocationName == inflammableAndExplosiveStore.Area + && u.Uniacid == uniacid && u.GroupId == groupId).FirstOrDefaultAsync(); + if (existUnit == null) + { + var unit = new Unit + { + Uniacid=uniacid, + GroupId=groupId, + CategoryId = existCategory.Id, + LocationName = inflammableAndExplosiveStore.Area, + Name = inflammableAndExplosiveStore.Name, + SuperviseLevel = ConvertRegulatoryLevelToInt(inflammableAndExplosiveStore.RegulatoryLevel), + PrincipalName = inflammableAndExplosiveStore.PersonInChargeOfSafetyInfo?.Name, + PrincipalPhoneNum = inflammableAndExplosiveStore.PersonInChargeOfSafetyInfo?.Phone, + UseArea = ConvertAreaSizeToInt(inflammableAndExplosiveStore.Survey.Area), + Longitude = ParseGeoPoints(inflammableAndExplosiveStore.Longitude), + Latitude = ParseGeoPoints(inflammableAndExplosiveStore.Latitude), + UpdateTime = DateTime.Now, + }; + await _context.Units.AddAsync(unit); + } + else + { + existUnit.CategoryId = existCategory.Id; + existUnit.LocationName = inflammableAndExplosiveStore.Area; + existUnit.Name = inflammableAndExplosiveStore.Name; + existUnit.SuperviseLevel = ConvertRegulatoryLevelToInt(inflammableAndExplosiveStore.RegulatoryLevel); + existUnit.PrincipalName = inflammableAndExplosiveStore.PersonInChargeOfSafetyInfo?.Name; + existUnit.PrincipalPhoneNum = inflammableAndExplosiveStore.PersonInChargeOfSafetyInfo?.Phone; + existUnit.UseArea = ConvertAreaSizeToInt(inflammableAndExplosiveStore.Survey.Area); + existUnit.UpdateTime = DateTime.Now; + existUnit.Longitude = ParseGeoPoints(inflammableAndExplosiveStore.Longitude); + existUnit.Latitude = ParseGeoPoints(inflammableAndExplosiveStore.Latitude); + _context.Units.Update(existUnit); + } + await _context.SaveChangesAsync(); + } + } + private async Task SaveInflammableAndExplosiveProductionUnits(List inflammableAndExplosiveProductionUnits, int uniacid, int groupId) + { + var existCategory = await GetOrAddCategory(typeof(InflammableAndExplosiveProductionUnit), groupId, uniacid); + var unitQuery = _context.Units.AsQueryable(); + foreach (var inflammableAndExplosiveProductionUnit in inflammableAndExplosiveProductionUnits) + { + var existUnit = await unitQuery.Where(u => u.Name == inflammableAndExplosiveProductionUnit.Name && u.LocationName == inflammableAndExplosiveProductionUnit.Area + && u.Uniacid==uniacid && u.GroupId==groupId).FirstOrDefaultAsync(); + if (existUnit == null) + { + var unit = new Unit + { + Uniacid=uniacid, + GroupId=groupId, + CategoryId = existCategory.Id, + LocationName = inflammableAndExplosiveProductionUnit.Area, + Name = inflammableAndExplosiveProductionUnit.Name, + SuperviseLevel = ConvertRegulatoryLevelToInt(inflammableAndExplosiveProductionUnit.RegulatoryLevel), + PrincipalName = inflammableAndExplosiveProductionUnit.PersonInChargeOfSafetyInfo?.Name, + PrincipalPhoneNum = inflammableAndExplosiveProductionUnit.PersonInChargeOfSafetyInfo?.Phone, + UseArea = ConvertAreaSizeToInt(inflammableAndExplosiveProductionUnit.Survey.Area), + Longitude = ParseGeoPoints(inflammableAndExplosiveProductionUnit.Longitude), + Latitude = ParseGeoPoints(inflammableAndExplosiveProductionUnit.Latitude), + UpdateTime = DateTime.Now, + }; + await _context.Units.AddAsync(unit); + } + else + { + existUnit.CategoryId = existCategory.Id; + existUnit.LocationName = inflammableAndExplosiveProductionUnit.Area; + existUnit.Name = inflammableAndExplosiveProductionUnit.Name; + existUnit.SuperviseLevel = ConvertRegulatoryLevelToInt(inflammableAndExplosiveProductionUnit.RegulatoryLevel); + existUnit.PrincipalName = inflammableAndExplosiveProductionUnit.PersonInChargeOfSafetyInfo?.Name; + existUnit.PrincipalPhoneNum = inflammableAndExplosiveProductionUnit.PersonInChargeOfSafetyInfo?.Phone; + existUnit.UseArea = ConvertAreaSizeToInt(inflammableAndExplosiveProductionUnit.Survey.Area); + existUnit.UpdateTime = DateTime.Now; + existUnit.Longitude = ParseGeoPoints(inflammableAndExplosiveProductionUnit.Longitude); + existUnit.Latitude = ParseGeoPoints(inflammableAndExplosiveProductionUnit.Latitude); + _context.Units.Update(existUnit); + } + await _context.SaveChangesAsync(); + } + } + private async Task SaveMarkets(List markets, int uniacid, int groupId) + { + var existCategory = await GetOrAddCategory(typeof(Market), groupId, uniacid); + var unitQuery = _context.Units.AsQueryable(); + foreach (var market in markets) + { + var existUnit = await unitQuery.Where(u => u.Name == market.Name && u.LocationName == market.Area + && u.Uniacid == uniacid && u.GroupId == groupId).FirstOrDefaultAsync(); + if (existUnit == null) + { + var unit = new Unit + { + Uniacid=uniacid, + GroupId=groupId, + CategoryId = existCategory.Id, + LocationName = market.Area, + Name = market.Name, + SuperviseLevel = ConvertRegulatoryLevelToInt(market.RegulatoryLevel), + PrincipalName = market.PersonInChargeOfSafetyInfo?.Name, + PrincipalPhoneNum = market.PersonInChargeOfSafetyInfo?.Phone, + UseArea = ConvertAreaSizeToInt(market.Survey.Area), + Longitude = ParseGeoPoints(market.Longitude), + Latitude = ParseGeoPoints(market.Latitude), + UpdateTime = DateTime.Now, + }; + await _context.Units.AddAsync(unit); + } + else + { + existUnit.CategoryId = existCategory.Id; + existUnit.LocationName = market.Area; + existUnit.Name = market.Name; + existUnit.SuperviseLevel = ConvertRegulatoryLevelToInt(market.RegulatoryLevel); + existUnit.PrincipalName = market.PersonInChargeOfSafetyInfo?.Name; + existUnit.PrincipalPhoneNum = market.PersonInChargeOfSafetyInfo?.Phone; + existUnit.UseArea = ConvertAreaSizeToInt(market.Survey.Area); + existUnit.UpdateTime = DateTime.Now; + existUnit.Longitude = ParseGeoPoints(market.Longitude); + existUnit.Latitude = ParseGeoPoints(market.Latitude); + _context.Units.Update(existUnit); + } + await _context.SaveChangesAsync(); + } + } + private async Task SavePublicEntertainments(List publicEntertainments, int uniacid, int groupId) + { + var existCategory = await GetOrAddCategory(typeof(PublicEntertainment), groupId, uniacid); + var unitQuery = _context.Units.AsQueryable(); + foreach (var publicEntertainment in publicEntertainments) + { + var existUnit = await unitQuery.Where(u => u.Name == publicEntertainment.Name && u.LocationName == publicEntertainment.Area + && u.Uniacid == uniacid && u.GroupId == groupId).FirstOrDefaultAsync(); + if (existUnit == null) + { + var unit = new Unit + { + Uniacid=uniacid, + GroupId=groupId, + CategoryId = existCategory.Id, + LocationName = publicEntertainment.Area, + Name = publicEntertainment.Name, + SuperviseLevel = ConvertRegulatoryLevelToInt(publicEntertainment.RegulatoryLevel), + PrincipalName = publicEntertainment.PersonInChargeOfSafetyInfo?.Name, + PrincipalPhoneNum = publicEntertainment.PersonInChargeOfSafetyInfo?.Phone, + UseArea = ConvertAreaSizeToInt(publicEntertainment.Survey.Area), + Longitude = ParseGeoPoints(publicEntertainment.Longitude), + Latitude = ParseGeoPoints(publicEntertainment.Latitude), + UpdateTime = DateTime.Now, + }; + await _context.Units.AddAsync(unit); + } + else + { + existUnit.CategoryId = existCategory.Id; + existUnit.LocationName = publicEntertainment.Area; + existUnit.Name = publicEntertainment.Name; + existUnit.SuperviseLevel = ConvertRegulatoryLevelToInt(publicEntertainment.RegulatoryLevel); + existUnit.PrincipalName = publicEntertainment.PersonInChargeOfSafetyInfo?.Name; + existUnit.PrincipalPhoneNum = publicEntertainment.PersonInChargeOfSafetyInfo?.Phone; + existUnit.UseArea = ConvertAreaSizeToInt(publicEntertainment.Survey.Area); + existUnit.UpdateTime = DateTime.Now; + existUnit.Longitude = ParseGeoPoints(publicEntertainment.Longitude); + existUnit.Latitude = ParseGeoPoints(publicEntertainment.Latitude); + _context.Units.Update(existUnit); + } + await _context.SaveChangesAsync(); + } + } + private async Task SaveMedicalInstitutions(List medicalInstitutions, int uniacid, int groupId) + { + var existCategory = await GetOrAddCategory(typeof(MedicalInstitution), groupId, uniacid); + var unitQuery = _context.Units.AsQueryable(); + foreach (var medicalInstitution in medicalInstitutions) + { + var existUnit = await unitQuery.Where(u => u.Name == medicalInstitution.Name && u.LocationName == medicalInstitution.Area + && u.Uniacid == uniacid && u.GroupId == groupId).FirstOrDefaultAsync(); + if (existUnit == null) + { + var unit = new Unit + { + Uniacid=uniacid, + GroupId=groupId, + CategoryId = existCategory.Id, + LocationName = medicalInstitution.Area, + Name = medicalInstitution.Name, + SuperviseLevel = ConvertRegulatoryLevelToInt(medicalInstitution.RegulatoryLevel), + PrincipalName = medicalInstitution.PersonInChargeOfSafetyInfo?.Name, + PrincipalPhoneNum = medicalInstitution.PersonInChargeOfSafetyInfo?.Phone, + UseArea = ConvertAreaSizeToInt(medicalInstitution.Survey.Area), + UpdateTime = DateTime.Now, + Longitude = ParseGeoPoints(medicalInstitution.Longitude), + Latitude = ParseGeoPoints(medicalInstitution.Latitude), + }; + await _context.Units.AddAsync(unit); + } + else + { + existUnit.CategoryId = existCategory.Id; + existUnit.LocationName = medicalInstitution.Area; + existUnit.Name = medicalInstitution.Name; + existUnit.SuperviseLevel = ConvertRegulatoryLevelToInt(medicalInstitution.RegulatoryLevel); + existUnit.PrincipalName = medicalInstitution.PersonInChargeOfSafetyInfo?.Name; + existUnit.PrincipalPhoneNum = medicalInstitution.PersonInChargeOfSafetyInfo?.Phone; + existUnit.UseArea = ConvertAreaSizeToInt(medicalInstitution.Survey.Area); + existUnit.UpdateTime = DateTime.Now; + existUnit.Longitude = ParseGeoPoints(medicalInstitution.Longitude); + existUnit.Latitude = ParseGeoPoints(medicalInstitution.Latitude); + _context.Units.Update(existUnit); + } + await _context.SaveChangesAsync(); + } + } + private async Task SaveSchools(List schools, int uniacid, int groupId) + { + var existCategory = await GetOrAddCategory(typeof(School), groupId, uniacid); + var unitQuery = _context.Units.AsQueryable(); + foreach (var school in schools) + { + var existUnit = await unitQuery.Where(u => u.Name == school.Name && u.LocationName == school.Area + && u.Uniacid == uniacid && u.GroupId == groupId).FirstOrDefaultAsync(); + if (existUnit == null) + { + var unit = new Unit + { + Uniacid = uniacid, + GroupId = groupId, + CategoryId = existCategory.Id, + LocationName = school.Area, + Name = school.Name, + SuperviseLevel = ConvertRegulatoryLevelToInt(school.RegulatoryLevel), + PrincipalName = school.PersonInChargeOfSafetyInfo?.Name, + PrincipalPhoneNum = school.PersonInChargeOfSafetyInfo?.Phone, + UseArea = ConvertAreaSizeToInt(school.Survey.Area), + PeopleNum = ConvertPeopleCount(school.Survey.StudentCount), + Longitude = ParseGeoPoints(school.Longitude), + Latitude = ParseGeoPoints(school.Latitude), + UpdateTime = DateTime.Now, + }; + await _context.Units.AddAsync(unit); + } + else + { + existUnit.CategoryId = existCategory.Id; + existUnit.LocationName = school.Area; + existUnit.Name = school.Name; + existUnit.SuperviseLevel = ConvertRegulatoryLevelToInt(school.RegulatoryLevel); + existUnit.PrincipalName = school.PersonInChargeOfSafetyInfo?.Name; + existUnit.PrincipalPhoneNum = school.PersonInChargeOfSafetyInfo?.Phone; + existUnit.UseArea = ConvertAreaSizeToInt(school.Survey.Area); + existUnit.PeopleNum = ConvertPeopleCount(school.Survey.StudentCount); + existUnit.UpdateTime = DateTime.Now; + existUnit.Longitude = ParseGeoPoints(school.Longitude); + existUnit.Latitude = ParseGeoPoints(school.Latitude); + _context.Units.Update(existUnit); + } + await _context.SaveChangesAsync(); + } + } + private async Task SavePBCs(List bPCs, int uniacid, int groupId) + { + var existCategory = await GetOrAddCategory(typeof(BPC), groupId, uniacid); + var unitQuery = _context.Units.AsQueryable(); + foreach (var bpc in bPCs) + { + var existUnit = await unitQuery.Where(u => u.Name == bpc.Name && u.LocationName == bpc.Area && u.Uniacid == uniacid && u.GroupId == groupId).FirstOrDefaultAsync(); + if (existUnit == null) + { + var unit = new Unit + { + Uniacid=uniacid, + GroupId=groupId, + CategoryId = existCategory.Id, + LocationName = bpc.Area, + Name = bpc.Name, + SuperviseLevel = ConvertRegulatoryLevelToInt(bpc.RegulatoryLevel), + PrincipalName = bpc.PersonInChargeOfSafetyInfo?.Name, + PrincipalPhoneNum = bpc.PersonInChargeOfSafetyInfo?.Phone, + UseArea = ConvertAreaSizeToInt(bpc.Survey.Area), + Longitude = ParseGeoPoints(bpc.Longitude), + Latitude = ParseGeoPoints(bpc.Latitude), + UpdateTime = DateTime.Now, + }; + await _context.Units.AddAsync(unit); + } + else + { + existUnit.CategoryId = existCategory.Id; + existUnit.LocationName = bpc.Area; + existUnit.Name = bpc.Name; + existUnit.SuperviseLevel = ConvertRegulatoryLevelToInt(bpc.RegulatoryLevel); + existUnit.PrincipalName = bpc.PersonInChargeOfSafetyInfo?.Name; + existUnit.PrincipalPhoneNum = bpc.PersonInChargeOfSafetyInfo?.Phone; + existUnit.UseArea = ConvertAreaSizeToInt(bpc.Survey.Area); + existUnit.Longitude = ParseGeoPoints(bpc.Longitude); + existUnit.Latitude = ParseGeoPoints(bpc.Latitude); + existUnit.UpdateTime = DateTime.Now; + _context.Units.Update(existUnit); + } + await _context.SaveChangesAsync(); + } + } + private async Task SaveStateOrgans(List stateOrgans, int uniacid, int groupId) + { + var existCategory = await GetOrAddCategory(typeof(StateOrgan), groupId, uniacid); + var unitQuery = _context.Units.AsQueryable(); + foreach (var stateOrgan in stateOrgans) + { + var existUnit = await unitQuery.Where(u => u.Name == stateOrgan.Name && u.LocationName == stateOrgan.Area + && u.Uniacid == uniacid && u.GroupId == groupId).FirstOrDefaultAsync(); + if (existUnit == null) + { + var unit = new Unit + { + Uniacid=uniacid, + GroupId=groupId, + CategoryId = existCategory.Id, + LocationName = stateOrgan.Area, + Name = stateOrgan.Name, + SuperviseLevel = ConvertRegulatoryLevelToInt(stateOrgan.RegulatoryLevel), + PrincipalName = stateOrgan.PersonInChargeOfSafetyInfo?.Name, + PrincipalPhoneNum = stateOrgan.PersonInChargeOfSafetyInfo?.Phone, + UseArea = ConvertAreaSizeToInt(stateOrgan.Survey.Area), + Longitude = ParseGeoPoints(stateOrgan.Longitude), + Latitude = ParseGeoPoints(stateOrgan.Latitude), + UpdateTime = DateTime.Now, + }; + await _context.Units.AddAsync(unit); + } + else + { + existUnit.CategoryId = existCategory.Id; + existUnit.LocationName = stateOrgan.Area; + existUnit.Name = stateOrgan.Name; + existUnit.SuperviseLevel = ConvertRegulatoryLevelToInt(stateOrgan.RegulatoryLevel); + existUnit.PrincipalName = stateOrgan.PersonInChargeOfSafetyInfo?.Name; + existUnit.PrincipalPhoneNum = stateOrgan.PersonInChargeOfSafetyInfo?.Phone; + existUnit.UseArea = ConvertAreaSizeToInt(stateOrgan.Survey.Area); + existUnit.UpdateTime = DateTime.Now; + existUnit.Longitude = ParseGeoPoints(stateOrgan.Longitude); + existUnit.Latitude = ParseGeoPoints(stateOrgan.Latitude); + _context.Units.Update(existUnit); + } + await _context.SaveChangesAsync(); + } + } + private async Task SaveWelfareInstitution(List welfareInstitutions, int uniacid, int groupId) + { + var existCategory = await GetOrAddCategory(typeof(WelfareInstitution), groupId, uniacid); + var unitQuery = _context.Units.AsQueryable(); + foreach (var welfareInstitution in welfareInstitutions) + { + var existUnit = await unitQuery.Where(u => u.Name == welfareInstitution.Name && u.LocationName == welfareInstitution.Area + && u.Uniacid == uniacid && u.GroupId == groupId).FirstOrDefaultAsync(); + if (existUnit == null) + { + var unit = new Unit + { + Uniacid = uniacid, + GroupId = groupId, + CategoryId = existCategory.Id, + LocationName = welfareInstitution.Area, + Name = welfareInstitution.Name, + SuperviseLevel = ConvertRegulatoryLevelToInt(welfareInstitution.RegulatoryLevel), + PrincipalName = welfareInstitution.PersonInChargeOfSafetyInfo?.Name, + PrincipalPhoneNum = welfareInstitution.PersonInChargeOfSafetyInfo?.Phone, + UseArea = ConvertAreaSizeToInt(welfareInstitution.Survey.Area), + Longitude = ParseGeoPoints(welfareInstitution.Longitude), + Latitude = ParseGeoPoints(welfareInstitution.Latitude), + UpdateTime = DateTime.Now, + }; + await _context.Units.AddAsync(unit); + } + else + { + existUnit.CategoryId = existCategory.Id; + existUnit.LocationName = welfareInstitution.Area; + existUnit.Name = welfareInstitution.Name; + existUnit.SuperviseLevel = ConvertRegulatoryLevelToInt(welfareInstitution.RegulatoryLevel); + existUnit.PrincipalName = welfareInstitution.PersonInChargeOfSafetyInfo?.Name; + existUnit.PrincipalPhoneNum = welfareInstitution.PersonInChargeOfSafetyInfo?.Phone; + existUnit.UseArea = ConvertAreaSizeToInt(welfareInstitution.Survey.Area); + existUnit.UpdateTime = DateTime.Now; + existUnit.Longitude = ParseGeoPoints(welfareInstitution.Longitude); + existUnit.Latitude = ParseGeoPoints(welfareInstitution.Latitude); + _context.Units.Update(existUnit); + } + try + { + await _context.SaveChangesAsync(); + } + catch (Exception e) + { + + } + } + } + private async Task SaveOthers(List others, int uniacid, int groupId) + { + var existCategory = await GetOrAddCategory(typeof(Other), groupId, uniacid); + var unitQuery = _context.Units.AsQueryable(); + foreach (var other in others) + { + var existUnit = await unitQuery.Where(u => u.Name == other.Name && u.LocationName == other.Area && + u.Uniacid == uniacid && u.GroupId == groupId).FirstOrDefaultAsync(); + if (existUnit == null) + { + var unit = new Unit + { + Uniacid = uniacid, + GroupId = groupId, + CategoryId = existCategory.Id, + LocationName = other.Area, + Name = other.Name, + SuperviseLevel = ConvertRegulatoryLevelToInt(other.RegulatoryLevel), + PrincipalName = other.PersonInChargeOfSafetyInfo?.Name, + PrincipalPhoneNum = other.PersonInChargeOfSafetyInfo?.Phone, + UseArea = ConvertAreaSizeToInt(other.Survey.Area), + PeopleNum = ConvertPeopleCount(other.Survey.EmployeeCount), + Longitude = ParseGeoPoints(other.Longitude), + Latitude = ParseGeoPoints(other.Latitude), + UpdateTime = DateTime.Now, + }; + await _context.Units.AddAsync(unit); + } + else + { + existUnit.CategoryId = existCategory.Id; + existUnit.LocationName = other.Area; + existUnit.Name = other.Name; + existUnit.SuperviseLevel = ConvertRegulatoryLevelToInt(other.RegulatoryLevel); + existUnit.PrincipalName = other.PersonInChargeOfSafetyInfo?.Name; + existUnit.PrincipalPhoneNum = other.PersonInChargeOfSafetyInfo?.Phone; + existUnit.UseArea = ConvertAreaSizeToInt(other.Survey.Area); + existUnit.PeopleNum = ConvertPeopleCount(other.Survey.EmployeeCount); + existUnit.Longitude = ParseGeoPoints(other.Longitude); + existUnit.Latitude = ParseGeoPoints(other.Latitude); + existUnit.UpdateTime = DateTime.Now; + _context.Units.Update(existUnit); + } + await _context.SaveChangesAsync(); + } + } + private async Task SaveHotels(List hotels, int uniacid, int groupId) + { + var existCategory = await GetOrAddCategory(typeof(Hotel), groupId, uniacid); + var unitQuery = _context.Units.AsQueryable(); + foreach (var hotel in hotels) + { + var existUnit = await unitQuery.Where(u => u.Name == hotel.Name && u.LocationName == hotel.Area && u.Uniacid == uniacid && u.GroupId == groupId).FirstOrDefaultAsync(); + if (existUnit == null) + { + var unit = new Unit + { + Uniacid=uniacid, + GroupId=groupId, + CategoryId = existCategory.Id, + LocationName = hotel.Area, + Name = hotel.Name, + SuperviseLevel = ConvertRegulatoryLevelToInt(hotel.RegulatoryLevel), + PrincipalName = hotel.PersonInChargeOfSafetyInfo?.Name, + PrincipalPhoneNum = hotel.PersonInChargeOfSafetyInfo?.Phone, + UseArea = ConvertAreaSizeToInt(hotel.Survey.Area), + PeopleNum = ConvertPeopleCount(hotel.Survey.EmployeeCount), + Longitude = ParseGeoPoints(hotel.Longitude), + Latitude = ParseGeoPoints(hotel.Latitude), + UpdateTime = DateTime.Now, + }; + await _context.Units.AddAsync(unit); + } + else + { + existUnit.CategoryId = existCategory.Id; + existUnit.LocationName = hotel.Area; + existUnit.Name = hotel.Name; + existUnit.SuperviseLevel = ConvertRegulatoryLevelToInt(hotel.RegulatoryLevel); + existUnit.PrincipalName = hotel.PersonInChargeOfSafetyInfo?.Name; + existUnit.PrincipalPhoneNum = hotel.PersonInChargeOfSafetyInfo?.Phone; + existUnit.UseArea = ConvertAreaSizeToInt(hotel.Survey.Area); + existUnit.PeopleNum = ConvertPeopleCount(hotel.Survey.EmployeeCount); + existUnit.Longitude = ParseGeoPoints(hotel.Longitude); + existUnit.Latitude = ParseGeoPoints(hotel.Latitude); + existUnit.UpdateTime = DateTime.Now; + _context.Units.Update(existUnit); + } + await _context.SaveChangesAsync(); + } + } + private async Task SaveUnderGrounds(List underGrounds, int uniacid, int groupId) + { + var existCategory = await GetOrAddCategory(typeof(UnderGround), groupId, uniacid); + var unitQuery = _context.Units.AsQueryable(); + foreach (var underGround in underGrounds) + { + var existUnit = await unitQuery.Where(u => u.Name == underGround.Name && u.LocationName == underGround.Area && + u.Uniacid == uniacid && u.GroupId == groupId).FirstOrDefaultAsync(); + if (existUnit == null) + { + var unit = new Unit + { + Uniacid=uniacid, + GroupId=groupId, + CategoryId = existCategory.Id, + LocationName = underGround.Area, + Name = underGround.Name, + SuperviseLevel = ConvertRegulatoryLevelToInt(underGround.RegulatoryLevel), + PrincipalName = underGround.PersonInChargeOfSafetyInfo?.Name, + PrincipalPhoneNum = underGround.PersonInChargeOfSafetyInfo?.Phone, + UseArea = ConvertAreaSizeToInt(underGround.Survey.Area), + Longitude = ParseGeoPoints(underGround.Longitude), + Latitude = ParseGeoPoints(underGround.Latitude), + UpdateTime =DateTime.Now, + }; + await _context.Units.AddAsync(unit); + } + else + { + existUnit.CategoryId = existCategory.Id; + existUnit.LocationName = underGround.Area; + existUnit.Name = underGround.Name; + existUnit.SuperviseLevel = ConvertRegulatoryLevelToInt(underGround.RegulatoryLevel); + existUnit.PrincipalName = underGround.PersonInChargeOfSafetyInfo?.Name; + existUnit.PrincipalPhoneNum = underGround.PersonInChargeOfSafetyInfo?.Phone; + existUnit.UseArea = ConvertAreaSizeToInt(underGround.Survey.Area); + existUnit.Longitude = ParseGeoPoints(underGround.Longitude); + existUnit.Latitude = ParseGeoPoints(underGround.Latitude); + existUnit.UpdateTime = DateTime.Now; + _context.Units.Update(existUnit); + } + await _context.SaveChangesAsync(); + } + } + private async Task SaveTallBuildings(List tallBuildings, int uniacid, int groupId) + { + var existCategory = await GetOrAddCategory(typeof(TallBuilding), groupId, uniacid); + var unitQuery = _context.Units.AsQueryable(); + foreach (var tallBuilding in tallBuildings) + { + var existUnit = await unitQuery.Where(u => u.Name == tallBuilding.Name && u.LocationName == tallBuilding.Area && + u.Uniacid == uniacid && u.GroupId == groupId).FirstOrDefaultAsync(); + if (existUnit == null) + { + var unit = new Unit + { + Uniacid=uniacid, + GroupId=groupId, + CategoryId = existCategory.Id, + LocationName = tallBuilding.Area, + Name = tallBuilding.Name, + SuperviseLevel = ConvertRegulatoryLevelToInt(tallBuilding.RegulatoryLevel), + PrincipalName = tallBuilding.PersonInChargeOfSafetyInfo?.Name, + PrincipalPhoneNum = tallBuilding.PersonInChargeOfSafetyInfo?.Phone, + UseArea = ConvertAreaSizeToInt(tallBuilding.Survey.Area), + Longitude = ParseGeoPoints(tallBuilding.Longitude), + Latitude = ParseGeoPoints(tallBuilding.Latitude), + UpdateTime = DateTime.Now, + }; + await _context.Units.AddAsync(unit); + } + else + { + existUnit.CategoryId = existCategory.Id; + existUnit.LocationName = tallBuilding.Area; + existUnit.Name = tallBuilding.Name; + existUnit.SuperviseLevel = ConvertRegulatoryLevelToInt(tallBuilding.RegulatoryLevel); + existUnit.PrincipalName = tallBuilding.PersonInChargeOfSafetyInfo?.Name; + existUnit.PrincipalPhoneNum = tallBuilding.PersonInChargeOfSafetyInfo?.Phone; + existUnit.UseArea = ConvertAreaSizeToInt(tallBuilding.Survey.Area); + existUnit.Longitude = ParseGeoPoints(tallBuilding.Longitude); + existUnit.Latitude = ParseGeoPoints(tallBuilding.Latitude); + existUnit.UpdateTime = DateTime.Now; + _context.Units.Update(existUnit); + } + await _context.SaveChangesAsync(); + } + } + private async Task SaveIndustrialEnterprises(List industrialEnterprises, int uniacid, int groupId) + { + var existCategory = await GetOrAddCategory(typeof(IndustrialEnterprise), groupId, uniacid); + var unitQuery = _context.Units.AsQueryable(); + foreach (var industrialEnterprise in industrialEnterprises) + { + var existUnit = await unitQuery.Where(u => u.Name == industrialEnterprise.Name && u.LocationName == industrialEnterprise.Area && + u.Uniacid == uniacid && u.GroupId == groupId).FirstOrDefaultAsync(); + if (existUnit == null) + { + var unit = new Unit + { + Uniacid=uniacid, + GroupId=groupId, + CategoryId = existCategory.Id, + LocationName = industrialEnterprise.Area, + Name = industrialEnterprise.Name, + SuperviseLevel = ConvertRegulatoryLevelToInt(industrialEnterprise.RegulatoryLevel), + PrincipalName = industrialEnterprise.PersonInChargeOfSafetyInfo?.Name, + PrincipalPhoneNum = industrialEnterprise.PersonInChargeOfSafetyInfo?.Phone, + CoverArea = ConvertAreaSizeToInt(industrialEnterprise.Survey.AreaCovered), + UseArea = ConvertAreaSizeToInt(industrialEnterprise.Survey.BuildUpArea), + Longitude= ParseGeoPoints(industrialEnterprise.Longitude), + Latitude= ParseGeoPoints(industrialEnterprise.Latitude), + UpdateTime = DateTime.Now + }; + await _context.Units.AddAsync(unit); + } + else + { + existUnit.CategoryId = existCategory.Id; + existUnit.LocationName = industrialEnterprise.Area; + existUnit.Name = industrialEnterprise.Name; + existUnit.SuperviseLevel = ConvertRegulatoryLevelToInt(industrialEnterprise.RegulatoryLevel); + existUnit.PrincipalName = industrialEnterprise.PersonInChargeOfSafetyInfo?.Name; + existUnit.PrincipalPhoneNum = industrialEnterprise.PersonInChargeOfSafetyInfo?.Phone; + existUnit.CoverArea = ConvertAreaSizeToInt(industrialEnterprise.Survey.AreaCovered); + existUnit.UseArea = ConvertAreaSizeToInt(industrialEnterprise.Survey.BuildUpArea); + existUnit.Longitude = ParseGeoPoints(industrialEnterprise.Longitude); + existUnit.Latitude = ParseGeoPoints(industrialEnterprise.Latitude); + existUnit.UpdateTime = DateTime.Now; + _context.Units.Update(existUnit); + } + await _context.SaveChangesAsync(); + + } + } + + private short ConvertPeopleCount(string peopleCount) + { + peopleCount = peopleCount.Replace("人", "").Trim(); + return Int16.Parse(peopleCount); + } + private Int16 ConvertRegulatoryLevelToInt(string regulatoryLevel) + { + var strValue = regulatoryLevel.Replace("级", "").Trim(); + try + { + return (Int16)_converter.ParseCnToInt(strValue); + } + catch + { + throw new Exception($"错误级值:{regulatoryLevel}"); + } + + } + private async Task GetOrAddCategory(Type type,int groupId,int uniacid) + { + var unitCategoryQuery = _context.UnitCategories.AsQueryable(); + var sheetName = _excelParser.GetSheetName(type).Trim(); + var existCategory = await unitCategoryQuery.FirstOrDefaultAsync(c => c.Name == sheetName && c.GroupId==groupId && c.Uniacid==uniacid); + if (existCategory == null) + { + var maxSort = await unitCategoryQuery.MaxAsync(c => (int?)c.Sort); + maxSort = maxSort.HasValue ? maxSort.Value : 0; + var unitCategory = new UnitCategory + { + Sort = maxSort.Value + 1, + Name = sheetName, + GroupId=groupId, + Uniacid=uniacid, + UpdateTime = DateTime.Now + }; + var entity = await _context.UnitCategories.AddAsync(unitCategory); + await _context.SaveChangesAsync(); + existCategory = entity.Entity; + } + return existCategory; + } + + private float ParseGeoPoints(string geo) + { + float.TryParse(geo, out var value); + return value; + } + private int ConvertAreaSizeToInt(string area) + { + area = area.Trim(); + var pattern = "^\\d+\\.?\\d*"; + var match = Regex.Match(area, pattern); + var value = 0.0; + if (match.Success) + { + value = double.Parse(match.Value); + } + Converter.AreaUnits sourceUnit; + if (area.Contains(Converter.AreaUnits.m2.ToString()) || area.Contains("㎡")||area.Contains("平方米")) + { + sourceUnit = Converter.AreaUnits.m2; + } + else if (area.Contains(Converter.AreaUnits.km2.ToString()) || area.Contains("k㎡")||area.Contains("平方公里")) + { + sourceUnit = Converter.AreaUnits.km2; + } + else if (area.Contains(Converter.AreaUnits.分.ToString())) + { + sourceUnit = Converter.AreaUnits.分; + } + else if (area.Contains(Converter.AreaUnits.亩.ToString())) + { + sourceUnit = Converter.AreaUnits.亩; + } + else if (area.Contains(Converter.AreaUnits.公亩.ToString())) + { + sourceUnit = Converter.AreaUnits.公亩; + } + else if (area.Contains(Converter.AreaUnits.公顷.ToString())) + { + sourceUnit = Converter.AreaUnits.公顷; + } + else if(string.IsNullOrEmpty(area.Replace(match.Value, "").Trim()) ) + { + sourceUnit = Converter.AreaUnits.m2; + } + else + { + throw new Exception($"非法面积值{area}"); + } + var result = _converter.ConvertArea(value, sourceUnit, Converter.AreaUnits.m2); + return (int)result; + } + } +} diff --git a/BackGround/Hangfire/Jobs/Waters/IImportWaterJob.cs b/BackGround/Hangfire/Jobs/Waters/IImportWaterJob.cs new file mode 100644 index 0000000..8f959ac --- /dev/null +++ b/BackGround/Hangfire/Jobs/Waters/IImportWaterJob.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Text; +using System.Threading.Tasks; + +namespace BackGround.Hangfire.Jobs.Waters +{ + public interface IImportWaterJob + { + Task Execute(Guid fileId,int categoryId); + } +} diff --git a/BackGround/Hangfire/Jobs/Waters/ImportWaterJob.cs b/BackGround/Hangfire/Jobs/Waters/ImportWaterJob.cs new file mode 100644 index 0000000..25089b9 --- /dev/null +++ b/BackGround/Hangfire/Jobs/Waters/ImportWaterJob.cs @@ -0,0 +1,156 @@ +using EntityFramework; +using Infrastructure.Abstructions; +using Infrastructure.Converts; +using Infrastructure.Excel; +using Microsoft.EntityFrameworkCore; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Text.RegularExpressions; +using System.Threading.Tasks; + +namespace BackGround.Hangfire.Jobs.Waters +{ + public class ImportWaterJob : ITransientDependency, IImportWaterJob + { + private readonly IParser _excelParser; + private readonly FireStationDbContext _context; + private readonly IConverter _converter; + public ImportWaterJob(IParser parser, FireStationDbContext context, IConverter converter) + { + _excelParser = parser; + _context = context; + _converter = converter; + } + public async Task Execute(Guid fileId,int categoryId) + { + var file = await _context.UploadedFiles.Where(u => u.Id == fileId).FirstOrDefaultAsync(); + if (file == null) + { + throw new Exception($"没有找到id为{fileId}的文件"); + } + var fileUnit = await _context.FileUnits.FirstOrDefaultAsync(f => f.FileId == fileId); + if (fileUnit == null) + { + throw new Exception($"没有找到文件{fileId}的单位关联记录"); + } + var unitId = fileUnit.UnitId; + int uniacid = fileUnit.Uniacid; + int groupId = fileUnit.GroupId; + var fileName = file.Path; + var waterQuery = _context.Water.AsEnumerable(); + var workBook = _excelParser.ReadExcel(fileName); + var parseResult = _excelParser.ParseExcel(workBook); + if (parseResult.Any()) + { + var currentArea = string.Empty; + foreach (var result in parseResult) + { + try + { + if (!string.IsNullOrEmpty(result.Area)) + { + currentArea = result.Area; + } + var existWater = waterQuery.FirstOrDefault(w => w.LocationName == currentArea + result.Street + result.Position); + if (existWater == null) + { + + var waterEntity = BuildWater(result, currentArea, uniacid, groupId,categoryId); + await _context.Water.AddAsync(waterEntity); + } + else + { + var water = BuildWater(result, currentArea, uniacid, groupId,categoryId); + existWater.Longitude = water.Longitude; + existWater.Latitude = water.Latitude; + existWater.UpdateTime = water.UpdateTime; + existWater.InstallDate = water.InstallDate; + existWater.Status = water.Status; + _context.Water.Update(existWater); + } + await _context.SaveChangesAsync(); + } + catch(Exception e) + { + throw e; + } + + } + } + } + + private Domain.Models.Waters.Water BuildWater(Application.Shared.Dtos.Waters.Imports.Water waterDto, string area, int uniacid, int groupId,int categoryId) + { + var water = new Domain.Models.Waters.Water + { + Uniacid=uniacid, + GroupId=groupId, + LocationName = area + waterDto.Street + waterDto.Position, + CategoryId=categoryId, + UpdateTime = DateTime.Now + }; + if (waterDto.Point != null) + { + var pattern = "\\d+\\.?\\d*"; + if (float.TryParse(waterDto.Point.EastLongitude,out var longitudevalue)) + { + water.Longitude = longitudevalue; + } + else + { + var match= Regex.Match(waterDto.Point.EastLongitude, pattern); + if (match.Success) + { + water.Longitude = float.Parse(match.Value); + } + else + throw new Exception($"经度值{waterDto.Point?.EastLongitude}有误"); + } + + if (float.TryParse(waterDto.Point.NorthLatitude, out var latitudeValue)) + { + water.Latitude = latitudeValue; + } + else + { + var match = Regex.Match(waterDto.Point.NorthLatitude, pattern); + if (match.Success) + { + water.Longitude = float.Parse(match.Value); + } + else + + throw new Exception($"纬度值{waterDto.Point?.EastLongitude}有误"); + } + } + + if (!string.IsNullOrEmpty(waterDto.ConstructionDate)) + { + water.InstallDate = waterDto.ConstructionDate; + + } + if (!string.IsNullOrEmpty(waterDto.WaterStatus)) + { + if (waterDto.WaterStatus.Contains("不好用")) + { + water.Status = 2; + } + else if (waterDto.WaterStatus.Contains("好用")) + { + water.Status = 1; + } + else if (waterDto.WaterStatus.Contains("坏")) + { + water.Status = 0; + } + else + { + water.Status = 2; + } + } + return water; + } + } +} diff --git a/BackGround/HangfireInjection.cs b/BackGround/HangfireInjection.cs new file mode 100644 index 0000000..595705f --- /dev/null +++ b/BackGround/HangfireInjection.cs @@ -0,0 +1,37 @@ +using Hangfire; +using Microsoft.Extensions.DependencyInjection; +using Hangfire.MySql; +using System; +using System.Transactions; +using Microsoft.Extensions.Configuration; + +namespace BackGround +{ + public static class HangfireInjection + { + public static IServiceCollection IntegrateHangfire(this IServiceCollection services, IConfiguration configuration) + { + services.AddHangfire(config => + { + config.SetDataCompatibilityLevel(CompatibilityLevel.Version_170) + .UseSimpleAssemblyNameTypeSerializer() + .UseRecommendedSerializerSettings() + .UseStorage(new MySqlStorage( + configuration.GetConnectionString("default"), + new MySqlStorageOptions + { + TransactionIsolationLevel = IsolationLevel.ReadCommitted, // 事务隔离级别。默认是读取已提交。 + QueuePollInterval = TimeSpan.FromSeconds(15), //- 作业队列轮询间隔。默认值为15秒。 + JobExpirationCheckInterval = TimeSpan.FromHours(1), //- 作业到期检查间隔(管理过期记录)。默认值为1小时。 + CountersAggregateInterval = TimeSpan.FromMinutes(5), //- 聚合计数器的间隔。默认为5分钟。 + PrepareSchemaIfNecessary = true, //- 如果设置为true,则创建数据库表。默认是true。 + DashboardJobListLimit = 50000, //- 仪表板作业列表限制。默认值为50000。 + TransactionTimeout = TimeSpan.FromMinutes(1), //- 交易超时。默认为1分钟 //- 数据库中表的前缀。默认为none + } + )); + }); + services.AddHangfireServer(opt => opt.WorkerCount = 10); + return services; + } + } +} diff --git a/BackGround/obj/BackGround.csproj.nuget.dgspec.json b/BackGround/obj/BackGround.csproj.nuget.dgspec.json new file mode 100644 index 0000000..2ac2ac5 --- /dev/null +++ b/BackGround/obj/BackGround.csproj.nuget.dgspec.json @@ -0,0 +1,411 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\BackGround\\BackGround.csproj": {} + }, + "projects": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application.Shared\\Application.Shared.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application.Shared\\Application.Shared.csproj", + "projectName": "Application.Shared", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application.Shared\\Application.Shared.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application.Shared\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\BackGround\\BackGround.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\BackGround\\BackGround.csproj", + "projectName": "BackGround", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\BackGround\\BackGround.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\BackGround\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application.Shared\\Application.Shared.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application.Shared\\Application.Shared.csproj" + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj" + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "dependencies": { + "Hangfire.AspNetCore": { + "target": "Package", + "version": "[1.7.24, )" + }, + "Hangfire.Core": { + "target": "Package", + "version": "[1.7.24, )" + }, + "Hangfire.MySqlStorage": { + "target": "Package", + "version": "[2.0.3, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj", + "projectName": "Domain.Shared", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj", + "projectName": "Domain", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj" + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj", + "projectName": "EntityFramework", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "dependencies": { + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[5.0.7, )" + }, + "Pomelo.EntityFrameworkCore.MySql": { + "target": "Package", + "version": "[5.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj", + "projectName": "Infrastructure", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "dependencies": { + "Autofac": { + "target": "Package", + "version": "[6.2.0, )" + }, + "Autofac.Extensions.DependencyInjection": { + "target": "Package", + "version": "[7.1.0, )" + }, + "Autofac.Extras.DynamicProxy": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.AspNetCore.Mvc.Core": { + "target": "Package", + "version": "[2.2.5, )" + }, + "Microsoft.Extensions.DependencyModel": { + "target": "Package", + "version": "[5.0.0, )" + }, + "NPOI": { + "target": "Package", + "version": "[2.5.3, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/BackGround/obj/BackGround.csproj.nuget.g.props b/BackGround/obj/BackGround.csproj.nuget.g.props new file mode 100644 index 0000000..1168ab9 --- /dev/null +++ b/BackGround/obj/BackGround.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\NineFishes\.nuget\packages\ + PackageReference + 6.1.0 + + + + + \ No newline at end of file diff --git a/BackGround/obj/BackGround.csproj.nuget.g.targets b/BackGround/obj/BackGround.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/BackGround/obj/BackGround.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/BackGround/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/BackGround/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs new file mode 100644 index 0000000..ad8dfe1 --- /dev/null +++ b/BackGround/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] diff --git a/BackGround/obj/Debug/netcoreapp3.1/BackGround.AssemblyInfo.cs b/BackGround/obj/Debug/netcoreapp3.1/BackGround.AssemblyInfo.cs new file mode 100644 index 0000000..e734d0a --- /dev/null +++ b/BackGround/obj/Debug/netcoreapp3.1/BackGround.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("BackGround")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("BackGround")] +[assembly: System.Reflection.AssemblyTitleAttribute("BackGround")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/BackGround/obj/Debug/netcoreapp3.1/BackGround.AssemblyInfoInputs.cache b/BackGround/obj/Debug/netcoreapp3.1/BackGround.AssemblyInfoInputs.cache new file mode 100644 index 0000000..acd2d54 --- /dev/null +++ b/BackGround/obj/Debug/netcoreapp3.1/BackGround.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +f57720a1dcf9afc1749a3e31479e19d0e22a5abd diff --git a/BackGround/obj/Debug/netcoreapp3.1/BackGround.GeneratedMSBuildEditorConfig.editorconfig b/BackGround/obj/Debug/netcoreapp3.1/BackGround.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..0ec5ace --- /dev/null +++ b/BackGround/obj/Debug/netcoreapp3.1/BackGround.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,3 @@ +is_global = true +build_property.RootNamespace = BackGround +build_property.ProjectDir = C:\Users\NineFishes\Desktop\FireStaionDocuments-master\BackGround\ diff --git a/BackGround/obj/Debug/netcoreapp3.1/BackGround.assets.cache b/BackGround/obj/Debug/netcoreapp3.1/BackGround.assets.cache new file mode 100644 index 0000000..d6adce3 Binary files /dev/null and b/BackGround/obj/Debug/netcoreapp3.1/BackGround.assets.cache differ diff --git a/BackGround/obj/Debug/netcoreapp3.1/BackGround.csproj.AssemblyReference.cache b/BackGround/obj/Debug/netcoreapp3.1/BackGround.csproj.AssemblyReference.cache new file mode 100644 index 0000000..c797359 Binary files /dev/null and b/BackGround/obj/Debug/netcoreapp3.1/BackGround.csproj.AssemblyReference.cache differ diff --git a/BackGround/obj/Debug/netcoreapp3.1/BackGround.csproj.BuildWithSkipAnalyzers b/BackGround/obj/Debug/netcoreapp3.1/BackGround.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/BackGround/obj/Debug/netcoreapp3.1/BackGround.csproj.CopyComplete b/BackGround/obj/Debug/netcoreapp3.1/BackGround.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/BackGround/obj/Debug/netcoreapp3.1/BackGround.csproj.CoreCompileInputs.cache b/BackGround/obj/Debug/netcoreapp3.1/BackGround.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..075f3b4 --- /dev/null +++ b/BackGround/obj/Debug/netcoreapp3.1/BackGround.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +88a16c5149cf31d4a33c3dee4c5303bd2dff6723 diff --git a/BackGround/obj/Debug/netcoreapp3.1/BackGround.csproj.FileListAbsolute.txt b/BackGround/obj/Debug/netcoreapp3.1/BackGround.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..6fd74c0 --- /dev/null +++ b/BackGround/obj/Debug/netcoreapp3.1/BackGround.csproj.FileListAbsolute.txt @@ -0,0 +1,21 @@ +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\BackGround\bin\Debug\netcoreapp3.1\BackGround.deps.json +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\BackGround\bin\Debug\netcoreapp3.1\BackGround.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\BackGround\bin\Debug\netcoreapp3.1\BackGround.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\BackGround\bin\Debug\netcoreapp3.1\Application.Shared.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\BackGround\bin\Debug\netcoreapp3.1\Domain.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\BackGround\bin\Debug\netcoreapp3.1\Domain.Shared.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\BackGround\bin\Debug\netcoreapp3.1\EntityFramework.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\BackGround\bin\Debug\netcoreapp3.1\Infrastructure.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\BackGround\bin\Debug\netcoreapp3.1\Application.Shared.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\BackGround\bin\Debug\netcoreapp3.1\EntityFramework.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\BackGround\bin\Debug\netcoreapp3.1\Infrastructure.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\BackGround\bin\Debug\netcoreapp3.1\Domain.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\BackGround\bin\Debug\netcoreapp3.1\Domain.Shared.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\BackGround\obj\Debug\netcoreapp3.1\BackGround.csproj.AssemblyReference.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\BackGround\obj\Debug\netcoreapp3.1\BackGround.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\BackGround\obj\Debug\netcoreapp3.1\BackGround.AssemblyInfoInputs.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\BackGround\obj\Debug\netcoreapp3.1\BackGround.AssemblyInfo.cs +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\BackGround\obj\Debug\netcoreapp3.1\BackGround.csproj.CoreCompileInputs.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\BackGround\obj\Debug\netcoreapp3.1\BackGround.csproj.CopyComplete +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\BackGround\obj\Debug\netcoreapp3.1\BackGround.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\BackGround\obj\Debug\netcoreapp3.1\BackGround.pdb diff --git a/BackGround/obj/Debug/netcoreapp3.1/BackGround.dll b/BackGround/obj/Debug/netcoreapp3.1/BackGround.dll new file mode 100644 index 0000000..f217582 Binary files /dev/null and b/BackGround/obj/Debug/netcoreapp3.1/BackGround.dll differ diff --git a/BackGround/obj/Debug/netcoreapp3.1/BackGround.pdb b/BackGround/obj/Debug/netcoreapp3.1/BackGround.pdb new file mode 100644 index 0000000..ee33574 Binary files /dev/null and b/BackGround/obj/Debug/netcoreapp3.1/BackGround.pdb differ diff --git a/BackGround/obj/project.assets.json b/BackGround/obj/project.assets.json new file mode 100644 index 0000000..891e1ee --- /dev/null +++ b/BackGround/obj/project.assets.json @@ -0,0 +1,7726 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": { + "Autofac/6.2.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "4.7.1" + }, + "compile": { + "lib/netstandard2.1/Autofac.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Autofac.dll": {} + } + }, + "Autofac.Extensions.DependencyInjection/7.1.0": { + "type": "package", + "dependencies": { + "Autofac": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {} + } + }, + "Autofac.Extras.DynamicProxy/6.0.0": { + "type": "package", + "dependencies": { + "Autofac": "6.0.0", + "Castle.Core": "4.4.0" + }, + "compile": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {} + } + }, + "Castle.Core/4.4.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Castle.Core.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": {} + } + }, + "Dapper/1.50.5": { + "type": "package", + "dependencies": { + "System.Data.SqlClient": "4.4.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.TypeExtensions": "4.4.0" + }, + "compile": { + "lib/netstandard2.0/Dapper.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Dapper.dll": {} + } + }, + "Hangfire.AspNetCore/1.7.24": { + "type": "package", + "dependencies": { + "Hangfire.Core": "[1.7.24]" + }, + "compile": { + "lib/netcoreapp3.0/Hangfire.AspNetCore.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/Hangfire.AspNetCore.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Hangfire.Core/1.7.24": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "11.0.1" + }, + "compile": { + "lib/netstandard2.0/Hangfire.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Hangfire.Core.dll": {} + }, + "resource": { + "lib/netstandard2.0/ca/Hangfire.Core.resources.dll": { + "locale": "ca" + }, + "lib/netstandard2.0/de/Hangfire.Core.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/Hangfire.Core.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fa/Hangfire.Core.resources.dll": { + "locale": "fa" + }, + "lib/netstandard2.0/fr/Hangfire.Core.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/nb/Hangfire.Core.resources.dll": { + "locale": "nb" + }, + "lib/netstandard2.0/nl/Hangfire.Core.resources.dll": { + "locale": "nl" + }, + "lib/netstandard2.0/pt-BR/Hangfire.Core.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/pt-PT/Hangfire.Core.resources.dll": { + "locale": "pt-PT" + }, + "lib/netstandard2.0/pt/Hangfire.Core.resources.dll": { + "locale": "pt" + }, + "lib/netstandard2.0/zh-TW/Hangfire.Core.resources.dll": { + "locale": "zh-TW" + }, + "lib/netstandard2.0/zh/Hangfire.Core.resources.dll": { + "locale": "zh" + } + } + }, + "Hangfire.MySqlStorage/2.0.3": { + "type": "package", + "dependencies": { + "Dapper": "1.50.5", + "Hangfire.Core": "1.6.21", + "Microsoft.CSharp": "4.4.1", + "MySqlConnector": "1.0.0", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Hangfire.MySql.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Hangfire.MySql.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.Core/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Authorization": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {} + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Core/2.2.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Core": "2.2.0", + "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Mvc.Abstractions": "2.2.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Routing": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.Extensions.DependencyModel": "2.1.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Diagnostics.DiagnosticSource": "4.5.0", + "System.Threading.Tasks.Extensions": "4.5.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {} + } + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {} + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {} + } + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {} + } + }, + "Microsoft.CSharp/4.4.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore/5.0.7": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "5.0.7", + "Microsoft.EntityFrameworkCore.Analyzers": "5.0.7", + "Microsoft.Extensions.Caching.Memory": "5.0.0", + "Microsoft.Extensions.DependencyInjection": "5.0.1", + "Microsoft.Extensions.Logging": "5.0.0", + "System.Collections.Immutable": "5.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Diagnostics.DiagnosticSource": "5.0.1" + }, + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/5.0.7": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "5.0.7", + "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {} + } + }, + "Microsoft.Extensions.Caching.Abstractions/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Caching.Memory/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "5.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0", + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/5.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DependencyModel/5.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "5.0.0", + "System.Text.Json": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "5.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0", + "System.Diagnostics.DiagnosticSource": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {} + } + }, + "Microsoft.Extensions.Options/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Primitives/5.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.4.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Security.AccessControl": "4.4.0", + "System.Security.Principal.Windows": "4.4.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MySqlConnector/1.3.10": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/MySqlConnector.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/MySqlConnector.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "NPOI/2.5.3": { + "type": "package", + "dependencies": { + "Portable.BouncyCastle": "1.8.6", + "SharpZipLib": "[1.2.0]", + "System.Configuration.ConfigurationManager": "4.5.0", + "System.Drawing.Common": "4.5.0" + }, + "compile": { + "lib/netstandard2.1/NPOI.OOXML.dll": {}, + "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {}, + "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {}, + "lib/netstandard2.1/NPOI.dll": {} + }, + "runtime": { + "lib/netstandard2.1/NPOI.OOXML.dll": {}, + "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {}, + "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {}, + "lib/netstandard2.1/NPOI.dll": {} + } + }, + "Pomelo.EntityFrameworkCore.MySql/5.0.1": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "[5.0.7, 6.0.0)", + "Microsoft.Extensions.DependencyInjection": "5.0.1", + "MySqlConnector": "1.3.10" + }, + "compile": { + "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {} + } + }, + "Portable.BouncyCastle/1.8.6": { + "type": "package", + "compile": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + }, + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "assetType": "native", + "rid": "win-arm64" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "assetType": "native", + "rid": "win-x64" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "SharpZipLib/1.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {} + }, + "runtime": { + "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {} + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Configuration.ConfigurationManager/4.5.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.5.0", + "System.Security.Permissions": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Data.SqlClient/4.4.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.4.0", + "System.Security.Principal.Windows": "4.4.0", + "System.Text.Encoding.CodePages": "4.4.0", + "runtime.native.System.Data.SqlClient.sni": "4.4.0" + }, + "compile": { + "ref/netstandard2.0/System.Data.SqlClient.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Data.SqlClient.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/5.0.1": { + "type": "package", + "compile": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Drawing.Common/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.Win32.SystemEvents": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.4.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.AccessControl/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/4.5.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.CodePages/4.4.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.Encodings.Web/5.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Text.Encodings.Web.dll": {} + } + }, + "System.Text.Json/5.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/System.Text.Json.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Text.Json.dll": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "Application.Shared/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v3.1", + "dependencies": { + "Infrastructure": "1.0.0" + }, + "compile": { + "bin/placeholder/Application.Shared.dll": {} + }, + "runtime": { + "bin/placeholder/Application.Shared.dll": {} + } + }, + "Domain/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v3.1", + "dependencies": { + "Domain.Shared": "1.0.0", + "Infrastructure": "1.0.0" + }, + "compile": { + "bin/placeholder/Domain.dll": {} + }, + "runtime": { + "bin/placeholder/Domain.dll": {} + } + }, + "Domain.Shared/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v3.1", + "compile": { + "bin/placeholder/Domain.Shared.dll": {} + }, + "runtime": { + "bin/placeholder/Domain.Shared.dll": {} + } + }, + "EntityFramework/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v3.1", + "dependencies": { + "Domain": "1.0.0", + "Microsoft.EntityFrameworkCore": "5.0.7", + "Pomelo.EntityFrameworkCore.MySql": "5.0.1" + }, + "compile": { + "bin/placeholder/EntityFramework.dll": {} + }, + "runtime": { + "bin/placeholder/EntityFramework.dll": {} + } + }, + "Infrastructure/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v3.1", + "dependencies": { + "Autofac": "6.2.0", + "Autofac.Extensions.DependencyInjection": "7.1.0", + "Autofac.Extras.DynamicProxy": "6.0.0", + "Microsoft.AspNetCore.Mvc.Core": "2.2.5", + "Microsoft.Extensions.DependencyModel": "5.0.0", + "NPOI": "2.5.3", + "Newtonsoft.Json": "13.0.1" + }, + "compile": { + "bin/placeholder/Infrastructure.dll": {} + }, + "runtime": { + "bin/placeholder/Infrastructure.dll": {} + } + } + } + }, + "libraries": { + "Autofac/6.2.0": { + "sha512": "BX8IM0GANE38uSr4QwXL4PgA8vWWYt2P5cZzipn/vDnf0fDbPSGKSHEroJ09rB7ANxdyf7MdEgVs+pvL8kwYCg==", + "type": "package", + "path": "autofac/6.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "autofac.6.2.0.nupkg.sha512", + "autofac.nuspec", + "icon.png", + "lib/net5.0/Autofac.dll", + "lib/net5.0/Autofac.pdb", + "lib/net5.0/Autofac.xml", + "lib/netstandard2.0/Autofac.dll", + "lib/netstandard2.0/Autofac.pdb", + "lib/netstandard2.0/Autofac.xml", + "lib/netstandard2.1/Autofac.dll", + "lib/netstandard2.1/Autofac.pdb", + "lib/netstandard2.1/Autofac.xml" + ] + }, + "Autofac.Extensions.DependencyInjection/7.1.0": { + "sha512": "nm6rZREZ9tjdKXu9cmT69zHkZODagjCPlRRCOhiS1VqFFis9LQnMl18L4OYr8yfCW1WAQkFDD2CNaK/kF5Eqeg==", + "type": "package", + "path": "autofac.extensions.dependencyinjection/7.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512", + "autofac.extensions.dependencyinjection.nuspec", + "icon.png", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.pdb", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.pdb", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml" + ] + }, + "Autofac.Extras.DynamicProxy/6.0.0": { + "sha512": "Z86ZX33qYZ09xhdnYEyD/xilGUQBiITSAdHVZw59Qb+bN+tN/WFVDBZGQZZnI3+l8+hdjM2zWdcK4sgUEavRzw==", + "type": "package", + "path": "autofac.extras.dynamicproxy/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "autofac.extras.dynamicproxy.6.0.0.nupkg.sha512", + "autofac.extras.dynamicproxy.nuspec", + "icon.png", + "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll", + "lib/netstandard2.0/Autofac.Extras.DynamicProxy.pdb", + "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml", + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll", + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.pdb", + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml" + ] + }, + "Castle.Core/4.4.0": { + "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "type": "package", + "path": "castle.core/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ASL - Apache Software Foundation License.txt", + "CHANGELOG.md", + "LICENSE", + "castle.core.4.4.0.nupkg.sha512", + "castle.core.nuspec", + "lib/net35/Castle.Core.dll", + "lib/net35/Castle.Core.xml", + "lib/net40/Castle.Core.dll", + "lib/net40/Castle.Core.xml", + "lib/net45/Castle.Core.dll", + "lib/net45/Castle.Core.xml", + "lib/netstandard1.3/Castle.Core.dll", + "lib/netstandard1.3/Castle.Core.xml", + "lib/netstandard1.5/Castle.Core.dll", + "lib/netstandard1.5/Castle.Core.xml", + "readme.txt" + ] + }, + "Dapper/1.50.5": { + "sha512": "1vPpX7WQmQCIb7rwlGOUoVs/yWZhVKvdhuG7WrJV+V+qsP8btnrrCqVWHENAlJxBAnUw5rhWfmuba9/Egei9MA==", + "type": "package", + "path": "dapper/1.50.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dapper.1.50.5.nupkg.sha512", + "dapper.nuspec", + "lib/net451/Dapper.dll", + "lib/net451/Dapper.xml", + "lib/netstandard1.3/Dapper.dll", + "lib/netstandard1.3/Dapper.xml", + "lib/netstandard2.0/Dapper.dll", + "lib/netstandard2.0/Dapper.xml" + ] + }, + "Hangfire.AspNetCore/1.7.24": { + "sha512": "RrX90Pgo+EzwVKpSa2xCokAtVlNfukX2lLUw3skEkRVggxqh8sWR/Krmf1uHFnJ2+rFK6CtrjLtMsZedH8rBFg==", + "type": "package", + "path": "hangfire.aspnetcore/1.7.24", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "COPYING", + "COPYING.LESSER", + "LICENSE.md", + "LICENSE_ROYALTYFREE", + "LICENSE_STANDARD", + "NOTICES", + "hangfire.aspnetcore.1.7.24.nupkg.sha512", + "hangfire.aspnetcore.nuspec", + "lib/net451/Hangfire.AspNetCore.dll", + "lib/net451/Hangfire.AspNetCore.xml", + "lib/net461/Hangfire.AspNetCore.dll", + "lib/net461/Hangfire.AspNetCore.xml", + "lib/netcoreapp3.0/Hangfire.AspNetCore.dll", + "lib/netcoreapp3.0/Hangfire.AspNetCore.xml", + "lib/netstandard1.3/Hangfire.AspNetCore.dll", + "lib/netstandard1.3/Hangfire.AspNetCore.xml", + "lib/netstandard2.0/Hangfire.AspNetCore.dll", + "lib/netstandard2.0/Hangfire.AspNetCore.xml" + ] + }, + "Hangfire.Core/1.7.24": { + "sha512": "3TzxeY8VDEYZR6Fo6EmgPNUBynOnWWiH7zbDB8TUEXZTA2EWnKjQg2p1UyMziRmPSg+qZdizgozKCuQlXPbktw==", + "type": "package", + "path": "hangfire.core/1.7.24", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "COPYING", + "COPYING.LESSER", + "LICENSE.md", + "LICENSE_ROYALTYFREE", + "LICENSE_STANDARD", + "NOTICES", + "hangfire.core.1.7.24.nupkg.sha512", + "hangfire.core.nuspec", + "lib/net45/Hangfire.Core.dll", + "lib/net45/Hangfire.Core.xml", + "lib/net45/ca/Hangfire.Core.resources.dll", + "lib/net45/de/Hangfire.Core.resources.dll", + "lib/net45/es/Hangfire.Core.resources.dll", + "lib/net45/fa/Hangfire.Core.resources.dll", + "lib/net45/fr/Hangfire.Core.resources.dll", + "lib/net45/nb/Hangfire.Core.resources.dll", + "lib/net45/nl/Hangfire.Core.resources.dll", + "lib/net45/pt-BR/Hangfire.Core.resources.dll", + "lib/net45/pt-PT/Hangfire.Core.resources.dll", + "lib/net45/pt/Hangfire.Core.resources.dll", + "lib/net45/zh-TW/Hangfire.Core.resources.dll", + "lib/net45/zh/Hangfire.Core.resources.dll", + "lib/net46/Hangfire.Core.dll", + "lib/net46/Hangfire.Core.xml", + "lib/net46/ca/Hangfire.Core.resources.dll", + "lib/net46/de/Hangfire.Core.resources.dll", + "lib/net46/es/Hangfire.Core.resources.dll", + "lib/net46/fa/Hangfire.Core.resources.dll", + "lib/net46/fr/Hangfire.Core.resources.dll", + "lib/net46/nb/Hangfire.Core.resources.dll", + "lib/net46/nl/Hangfire.Core.resources.dll", + "lib/net46/pt-BR/Hangfire.Core.resources.dll", + "lib/net46/pt-PT/Hangfire.Core.resources.dll", + "lib/net46/pt/Hangfire.Core.resources.dll", + "lib/net46/zh-TW/Hangfire.Core.resources.dll", + "lib/net46/zh/Hangfire.Core.resources.dll", + "lib/netstandard1.3/Hangfire.Core.dll", + "lib/netstandard1.3/Hangfire.Core.xml", + "lib/netstandard1.3/ca/Hangfire.Core.resources.dll", + "lib/netstandard1.3/de/Hangfire.Core.resources.dll", + "lib/netstandard1.3/es/Hangfire.Core.resources.dll", + "lib/netstandard1.3/fa/Hangfire.Core.resources.dll", + "lib/netstandard1.3/fr/Hangfire.Core.resources.dll", + "lib/netstandard1.3/nb/Hangfire.Core.resources.dll", + "lib/netstandard1.3/nl/Hangfire.Core.resources.dll", + "lib/netstandard1.3/pt-BR/Hangfire.Core.resources.dll", + "lib/netstandard1.3/pt-PT/Hangfire.Core.resources.dll", + "lib/netstandard1.3/pt/Hangfire.Core.resources.dll", + "lib/netstandard1.3/zh-TW/Hangfire.Core.resources.dll", + "lib/netstandard1.3/zh/Hangfire.Core.resources.dll", + "lib/netstandard2.0/Hangfire.Core.dll", + "lib/netstandard2.0/Hangfire.Core.xml", + "lib/netstandard2.0/ca/Hangfire.Core.resources.dll", + "lib/netstandard2.0/de/Hangfire.Core.resources.dll", + "lib/netstandard2.0/es/Hangfire.Core.resources.dll", + "lib/netstandard2.0/fa/Hangfire.Core.resources.dll", + "lib/netstandard2.0/fr/Hangfire.Core.resources.dll", + "lib/netstandard2.0/nb/Hangfire.Core.resources.dll", + "lib/netstandard2.0/nl/Hangfire.Core.resources.dll", + "lib/netstandard2.0/pt-BR/Hangfire.Core.resources.dll", + "lib/netstandard2.0/pt-PT/Hangfire.Core.resources.dll", + "lib/netstandard2.0/pt/Hangfire.Core.resources.dll", + "lib/netstandard2.0/zh-TW/Hangfire.Core.resources.dll", + "lib/netstandard2.0/zh/Hangfire.Core.resources.dll" + ] + }, + "Hangfire.MySqlStorage/2.0.3": { + "sha512": "02hKjRxeEl3UQkfu3tHXZd2qe5FwOErX2j8ezhJooFEzCyrrDhFTuB8sXtJW0Hr+sbAuR6oF4nvAwOp+USU6nw==", + "type": "package", + "path": "hangfire.mysqlstorage/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "hangfire.mysqlstorage.2.0.3.nupkg.sha512", + "hangfire.mysqlstorage.nuspec", + "lib/net452/Hangfire.MySql.dll", + "lib/netstandard2.0/Hangfire.MySql.dll" + ] + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "sha512": "VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.xml", + "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Authentication.Core/2.2.0": { + "sha512": "XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.core/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.xml", + "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.core.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "sha512": "/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "sha512": "aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", + "type": "package", + "path": "microsoft.aspnetcore.authorization.policy/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.xml", + "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authorization.policy.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml", + "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", + "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.server.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http/2.2.0": { + "sha512": "YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==", + "type": "package", + "path": "microsoft.aspnetcore.http/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml", + "microsoft.aspnetcore.http.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "type": "package", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml", + "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "sha512": "2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", + "type": "package", + "path": "microsoft.aspnetcore.http.extensions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml", + "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "type": "package", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml", + "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.features.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { + "sha512": "ET6uZpfVbGR1NjCuLaLy197cQ3qZUjzl7EG5SL4GfJH/c9KRE89MMBrQegqWsh0w1iRUB/zQaK0anAjxa/pz4g==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.xml", + "microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Core/2.2.5": { + "sha512": "/8sr8ixIUD57UFwUntha9bOwex7/AkZfdk1f9oNJG1Ek7p/uuKVa7fuHmYZpQOf35Oxrt+2Ku4WPwMSbNxOuWg==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.core/2.2.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.xml", + "microsoft.aspnetcore.mvc.core.2.2.5.nupkg.sha512", + "microsoft.aspnetcore.mvc.core.nuspec" + ] + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { + "sha512": "CIHWEKrHzZfFp7t57UXsueiSA/raku56TgRYauV/W1+KAQq6vevz60zjEKaazt3BI76zwMz3B4jGWnCwd8kwQw==", + "type": "package", + "path": "microsoft.aspnetcore.responsecaching.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml", + "microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.responsecaching.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "sha512": "jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", + "type": "package", + "path": "microsoft.aspnetcore.routing/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.xml", + "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.routing.nuspec" + ] + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "sha512": "lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", + "type": "package", + "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml", + "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.routing.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "sha512": "9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", + "type": "package", + "path": "microsoft.aspnetcore.webutilities/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml", + "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.webutilities.nuspec" + ] + }, + "Microsoft.CSharp/4.4.1": { + "sha512": "A5hI3gk6WpcBI0QGZY6/d5CCaYUxJgi7iENn1uYEng+Olo8RfI5ReGVkjXjeu3VR3srLvVYREATXa2M0X7FYJA==", + "type": "package", + "path": "microsoft.csharp/4.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.4.1.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.EntityFrameworkCore/5.0.7": { + "sha512": "VAvmiQPdw0PUh3X7k9k7haVnCfQuDgyki9rq5XVk0gXJFeh+bwqPzPrY71A08O5TjnIeK9lEggXDnMuhQXUUww==", + "type": "package", + "path": "microsoft.entityframeworkcore/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { + "sha512": "MM5M9vYDLUXCePUGN2WZ0MkNcNj74sIgyVR9v7tW6abRULtBWPcyZf6zLYhZYpRgPXcahcME+Koscz9kP2DxyA==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": { + "sha512": "ZShPEOZaQhBZqDObU3+kigEmlEGug37F8v/jpQgVs1XfHrLeXVyk+p94DBH4f+bUUHUbsEEcIbU6OhUBtWZztg==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "lib/netstandard2.0/_._", + "microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/5.0.7": { + "sha512": "W3nj58s5GX8KFQwZaytERGy3tTqutjWK6309KCpXaVtVvuYf3GE3R0lrouxONzLynLG8hsODcs2gym5QQoqtSg==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/5.0.0": { + "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/5.0.0": { + "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==", + "type": "package", + "path": "microsoft.extensions.caching.memory/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Memory.dll", + "lib/net461/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { + "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/5.0.1": { + "sha512": "//mDNrYeiJ0eh/awFhDFJQzkRVra/njU5Y4fyK7X29g5HScrzbUkKOKlyTtygthcGFt4zNC8G5CFCjb/oizomA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.DependencyInjection.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.xml", + "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { + "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/5.0.0": { + "sha512": "umBECCoMC+sOUgm083yFr8SxTobUOcPFH4AXigdO2xJiszCHAnmeDl4qPphJt+oaJ/XIfV1wOjIts2nRnki61Q==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net451/Microsoft.Extensions.DependencyModel.dll", + "lib/net451/Microsoft.Extensions.DependencyModel.xml", + "lib/net461/Microsoft.Extensions.DependencyModel.dll", + "lib/net461/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.5.0.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { + "sha512": "EcnaSsPTqx2MGnHrmWOD0ugbuuqVT8iICqSqPzi45V5/MA1LjUNb0kwgcxBGqizV1R+WeBK7/Gw25Jzkyk9bIw==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { + "sha512": "+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/5.0.0": { + "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", + "type": "package", + "path": "microsoft.extensions.logging/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.dll", + "lib/net461/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.5.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0": { + "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "sha512": "gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", + "type": "package", + "path": "microsoft.extensions.objectpool/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml", + "microsoft.extensions.objectpool.2.2.0.nupkg.sha512", + "microsoft.extensions.objectpool.nuspec" + ] + }, + "Microsoft.Extensions.Options/5.0.0": { + "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==", + "type": "package", + "path": "microsoft.extensions.options/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.dll", + "lib/net461/Microsoft.Extensions.Options.xml", + "lib/net5.0/Microsoft.Extensions.Options.dll", + "lib/net5.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.5.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Primitives/5.0.0": { + "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==", + "type": "package", + "path": "microsoft.extensions.primitives/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Primitives.dll", + "lib/net461/Microsoft.Extensions.Primitives.xml", + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll", + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.5.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "sha512": "iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", + "type": "package", + "path": "microsoft.net.http.headers/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml", + "microsoft.net.http.headers.2.2.0.nupkg.sha512", + "microsoft.net.http.headers.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "sha512": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==", + "type": "package", + "path": "microsoft.netcore.platforms/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.2.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Win32.Registry/4.4.0": { + "sha512": "dA36TlNVn/XfrZtmf0fiI/z1nd3Wfp2QVzTdj26pqgP9LFWq0i1hYEUAW50xUjGFYn1+/cP3KGuxT2Yn1OUNBQ==", + "type": "package", + "path": "microsoft.win32.registry/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "microsoft.win32.registry.4.4.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/4.5.0": { + "sha512": "LuI1oG+24TUj1ZRQQjM5Ew73BKnZE5NZ/7eAdh1o8ST5dPhUnJvIkiIn2re3MwnkRy6ELRnvEbBxHP8uALKhJw==", + "type": "package", + "path": "microsoft.win32.systemevents/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "microsoft.win32.systemevents.4.5.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MySqlConnector/1.3.10": { + "sha512": "geL3pNiwbSXzUqQLHLm2/igDHuz5Q4qqp2rKczYoIHtdvvrsd5fnYHN8eFgP81qu77Blv0+0IOn69RJATNQoSQ==", + "type": "package", + "path": "mysqlconnector/1.3.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net45/MySqlConnector.dll", + "lib/net45/MySqlConnector.xml", + "lib/net461/MySqlConnector.dll", + "lib/net461/MySqlConnector.xml", + "lib/net471/MySqlConnector.dll", + "lib/net471/MySqlConnector.xml", + "lib/net5.0/MySqlConnector.dll", + "lib/net5.0/MySqlConnector.xml", + "lib/netcoreapp2.1/MySqlConnector.dll", + "lib/netcoreapp2.1/MySqlConnector.xml", + "lib/netcoreapp3.1/MySqlConnector.dll", + "lib/netcoreapp3.1/MySqlConnector.xml", + "lib/netstandard1.3/MySqlConnector.dll", + "lib/netstandard1.3/MySqlConnector.xml", + "lib/netstandard2.0/MySqlConnector.dll", + "lib/netstandard2.0/MySqlConnector.xml", + "lib/netstandard2.1/MySqlConnector.dll", + "lib/netstandard2.1/MySqlConnector.xml", + "logo.png", + "mysqlconnector.1.3.10.nupkg.sha512", + "mysqlconnector.nuspec" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "NPOI/2.5.3": { + "sha512": "+DDU8JOHNhhiyAHr8Ew1hp85uPTcEw+O93+R2GDRB7sI5KpiQ+1i65DlY2OzfOq43+R3+39MyM7BTvjQi2KbfA==", + "type": "package", + "path": "npoi/2.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "Read Me.txt", + "lib/net45/NPOI.OOXML.XML", + "lib/net45/NPOI.OOXML.dll", + "lib/net45/NPOI.OpenXml4Net.XML", + "lib/net45/NPOI.OpenXml4Net.dll", + "lib/net45/NPOI.OpenXmlFormats.dll", + "lib/net45/NPOI.XML", + "lib/net45/NPOI.dll", + "lib/netstandard2.0/NPOI.OOXML.dll", + "lib/netstandard2.0/NPOI.OOXML.xml", + "lib/netstandard2.0/NPOI.OpenXml4Net.dll", + "lib/netstandard2.0/NPOI.OpenXml4Net.xml", + "lib/netstandard2.0/NPOI.OpenXmlFormats.dll", + "lib/netstandard2.0/NPOI.dll", + "lib/netstandard2.0/NPOI.xml", + "lib/netstandard2.1/NPOI.OOXML.dll", + "lib/netstandard2.1/NPOI.OOXML.xml", + "lib/netstandard2.1/NPOI.OpenXml4Net.dll", + "lib/netstandard2.1/NPOI.OpenXml4Net.xml", + "lib/netstandard2.1/NPOI.OpenXmlFormats.dll", + "lib/netstandard2.1/NPOI.dll", + "lib/netstandard2.1/NPOI.xml", + "logo/120_120.jpg", + "logo/240_240.png", + "logo/32_32.jpg", + "logo/60_60.jpg", + "npoi.2.5.3.nupkg.sha512", + "npoi.nuspec" + ] + }, + "Pomelo.EntityFrameworkCore.MySql/5.0.1": { + "sha512": "15t0Zda7kZFIe3U68komYU18KLGBr5K9lFydWBOycN7Xzb98xopVlyvb07GZb2OKJfX+sInhhD/U+jmHY9ceOg==", + "type": "package", + "path": "pomelo.entityframeworkcore.mysql/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll", + "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml", + "pomelo.entityframeworkcore.mysql.5.0.1.nupkg.sha512", + "pomelo.entityframeworkcore.mysql.nuspec" + ] + }, + "Portable.BouncyCastle/1.8.6": { + "sha512": "y+GvZomzhY+Lwu5mMeNmFFYLHiEr2xFDOANhABn/wgg64/QpTzfgpNGPct+pXgQHjmutd363ZCur/91DLaBxOw==", + "type": "package", + "path": "portable.bouncycastle/1.8.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40/BouncyCastle.Crypto.dll", + "lib/net40/BouncyCastle.Crypto.xml", + "lib/netstandard2.0/BouncyCastle.Crypto.dll", + "lib/netstandard2.0/BouncyCastle.Crypto.xml", + "portable.bouncycastle.1.8.6.nupkg.sha512", + "portable.bouncycastle.nuspec" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==", + "type": "package", + "path": "runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.native.system.data.sqlclient.sni.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "type": "package", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-arm64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "type": "package", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "type": "package", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x86/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "SharpZipLib/1.2.0": { + "sha512": "zvWa/L02JHNatdtjya6Swpudb2YEHaOLHL1eRrqpjm71iGRNUNONO5adUF/9CHbSJbzhELW1UoH4NGy7n7+3bQ==", + "type": "package", + "path": "sharpziplib/1.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/ICSharpCode.SharpZipLib.dll", + "lib/net45/ICSharpCode.SharpZipLib.pdb", + "lib/net45/ICSharpCode.SharpZipLib.xml", + "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll", + "lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb", + "lib/netstandard2.0/ICSharpCode.SharpZipLib.xml", + "sharpziplib.1.2.0.nupkg.sha512", + "sharpziplib.nuspec" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.5.0": { + "sha512": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==", + "type": "package", + "path": "system.buffers/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "lib/uap10.0.16299/_._", + "ref/net45/System.Buffers.dll", + "ref/net45/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "ref/uap10.0.16299/_._", + "system.buffers.4.5.0.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Collections.Immutable/5.0.0": { + "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", + "type": "package", + "path": "system.collections.immutable/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Collections.Immutable.dll", + "lib/net461/System.Collections.Immutable.xml", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/netstandard1.3/System.Collections.Immutable.dll", + "lib/netstandard1.3/System.Collections.Immutable.xml", + "lib/netstandard2.0/System.Collections.Immutable.dll", + "lib/netstandard2.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.5.0.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections.NonGeneric/4.3.0": { + "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "type": "package", + "path": "system.collections.nongeneric/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.3.0.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.3.0": { + "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "type": "package", + "path": "system.collections.specialized/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/netstandard1.3/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.xml", + "ref/netstandard1.3/de/System.Collections.Specialized.xml", + "ref/netstandard1.3/es/System.Collections.Specialized.xml", + "ref/netstandard1.3/fr/System.Collections.Specialized.xml", + "ref/netstandard1.3/it/System.Collections.Specialized.xml", + "ref/netstandard1.3/ja/System.Collections.Specialized.xml", + "ref/netstandard1.3/ko/System.Collections.Specialized.xml", + "ref/netstandard1.3/ru/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.specialized.4.3.0.nupkg.sha512", + "system.collections.specialized.nuspec" + ] + }, + "System.ComponentModel/4.3.0": { + "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "type": "package", + "path": "system.componentmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.3.0.nupkg.sha512", + "system.componentmodel.nuspec" + ] + }, + "System.ComponentModel.Annotations/5.0.0": { + "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "type": "package", + "path": "system.componentmodel.annotations/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/netstandard2.0/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.xml", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/net461/System.ComponentModel.Annotations.xml", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard2.0/System.ComponentModel.Annotations.dll", + "ref/netstandard2.0/System.ComponentModel.Annotations.xml", + "ref/netstandard2.1/System.ComponentModel.Annotations.dll", + "ref/netstandard2.1/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.5.0.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ComponentModel.Primitives/4.3.0": { + "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "type": "package", + "path": "system.componentmodel.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.Primitives.dll", + "lib/netstandard1.0/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.primitives.4.3.0.nupkg.sha512", + "system.componentmodel.primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "type": "package", + "path": "system.componentmodel.typeconverter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/net462/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/net462/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "system.componentmodel.typeconverter.nuspec" + ] + }, + "System.Configuration.ConfigurationManager/4.5.0": { + "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==", + "type": "package", + "path": "system.configuration.configurationmanager/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.xml", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.4.5.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Console/4.3.0": { + "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "type": "package", + "path": "system.console/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.3.0.nupkg.sha512", + "system.console.nuspec" + ] + }, + "System.Data.SqlClient/4.4.0": { + "sha512": "fxb9ghn1k1Ua7FFdlvtiBOD4/PsQvD/fk2KnhS+FK7VC6OggEx6P+lP1P0+KMb5V2dqS1+FbR7HCenoqzJMNIA==", + "type": "package", + "path": "system.data.sqlclient/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.SqlClient.dll", + "lib/net46/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.dll", + "lib/netstandard1.2/System.Data.SqlClient.dll", + "lib/netstandard1.3/System.Data.SqlClient.dll", + "lib/netstandard2.0/System.Data.SqlClient.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.SqlClient.dll", + "ref/net46/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.xml", + "ref/netstandard1.2/System.Data.SqlClient.dll", + "ref/netstandard1.2/System.Data.SqlClient.xml", + "ref/netstandard1.2/de/System.Data.SqlClient.xml", + "ref/netstandard1.2/es/System.Data.SqlClient.xml", + "ref/netstandard1.2/fr/System.Data.SqlClient.xml", + "ref/netstandard1.2/it/System.Data.SqlClient.xml", + "ref/netstandard1.2/ja/System.Data.SqlClient.xml", + "ref/netstandard1.2/ko/System.Data.SqlClient.xml", + "ref/netstandard1.2/ru/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard1.3/System.Data.SqlClient.dll", + "ref/netstandard1.3/System.Data.SqlClient.xml", + "ref/netstandard1.3/de/System.Data.SqlClient.xml", + "ref/netstandard1.3/es/System.Data.SqlClient.xml", + "ref/netstandard1.3/fr/System.Data.SqlClient.xml", + "ref/netstandard1.3/it/System.Data.SqlClient.xml", + "ref/netstandard1.3/ja/System.Data.SqlClient.xml", + "ref/netstandard1.3/ko/System.Data.SqlClient.xml", + "ref/netstandard1.3/ru/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard2.0/System.Data.SqlClient.dll", + "ref/netstandard2.0/System.Data.SqlClient.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/win/lib/net451/System.Data.SqlClient.dll", + "runtimes/win/lib/net46/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", + "system.data.sqlclient.4.4.0.nupkg.sha512", + "system.data.sqlclient.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/5.0.1": { + "sha512": "uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/System.Diagnostics.DiagnosticSource.dll", + "lib/net45/System.Diagnostics.DiagnosticSource.xml", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.3.0": { + "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "type": "package", + "path": "system.diagnostics.tracesource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.TraceSource.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "system.diagnostics.tracesource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Drawing.Common/4.5.0": { + "sha512": "AiJFxxVPdeITstiRS5aAu8+8Dpf5NawTMoapZ53Gfirml24p7HIfhjmCRxdXnmmf3IUA3AX3CcW7G73CjWxW/Q==", + "type": "package", + "path": "system.drawing.common/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "system.drawing.common.4.5.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Dynamic.Runtime/4.3.0": { + "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "type": "package", + "path": "system.dynamic.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.3.0.nupkg.sha512", + "system.dynamic.runtime.nuspec" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.4.0": { + "sha512": "dkmh/ySlwnXJp/1qYP9uyKkCK1CXR/REFzl7abHcArxBcV91mY2CgrrzSRA5Z/X4MevJWwXsklGRdR3A7K9zbg==", + "type": "package", + "path": "system.reflection.typeextensions/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net461/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netcoreapp1.0/System.Reflection.TypeExtensions.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/netstandard2.0/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net461/System.Reflection.TypeExtensions.dll", + "ref/net461/System.Reflection.TypeExtensions.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/System.Reflection.TypeExtensions.dll", + "ref/netstandard2.0/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.4.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Security.AccessControl/4.5.0": { + "sha512": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==", + "type": "package", + "path": "system.security.accesscontrol/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.5.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.3.0": { + "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "type": "package", + "path": "system.security.cryptography.cng/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "system.security.cryptography.cng.4.3.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==", + "type": "package", + "path": "system.security.cryptography.protecteddata/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Permissions/4.5.0": { + "sha512": "9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", + "type": "package", + "path": "system.security.permissions/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.4.5.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.5.0": { + "sha512": "U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==", + "type": "package", + "path": "system.security.principal.windows/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.5.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/4.4.0": { + "sha512": "6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==", + "type": "package", + "path": "system.text.encoding.codepages/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Text.Encoding.CodePages.dll", + "ref/netstandard1.3/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml", + "ref/netstandard2.0/System.Text.Encoding.CodePages.dll", + "ref/netstandard2.0/System.Text.Encoding.CodePages.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "system.text.encoding.codepages.4.4.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Encodings.Web/5.0.0": { + "sha512": "EEslUvHKll1ftizbn20mX3Ix/l4Ygk/bdJ2LY6/X6FlGaP0RIhKMo9nS6JIGnKKT6KBP2PGj6JC3B9/ZF6ErqQ==", + "type": "package", + "path": "system.text.encodings.web/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.0/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.0/System.Text.Encodings.Web.xml", + "lib/netstandard1.0/System.Text.Encodings.Web.dll", + "lib/netstandard1.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.1/System.Text.Encodings.Web.dll", + "lib/netstandard2.1/System.Text.Encodings.Web.xml", + "system.text.encodings.web.5.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Json/5.0.0": { + "sha512": "+luxMQNZ2WqeffBU7Ml6njIvxc8169NW2oU+ygNudXQGZiarjE7DOtN7bILiQjTZjkmwwRZGTtLzmdrSI/Ustw==", + "type": "package", + "path": "system.text.json/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/netcoreapp3.0/System.Text.Json.dll", + "lib/netcoreapp3.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.5.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.5.1": { + "sha512": "WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "ref/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "ref/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "ref/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.1.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.3.0": { + "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "type": "package", + "path": "system.xml.xmldocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.3.0.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + }, + "Application.Shared/1.0.0": { + "type": "project", + "path": "../Application.Shared/Application.Shared.csproj", + "msbuildProject": "../Application.Shared/Application.Shared.csproj" + }, + "Domain/1.0.0": { + "type": "project", + "path": "../Domain/Domain.csproj", + "msbuildProject": "../Domain/Domain.csproj" + }, + "Domain.Shared/1.0.0": { + "type": "project", + "path": "../Domain.Shared/Domain.Shared.csproj", + "msbuildProject": "../Domain.Shared/Domain.Shared.csproj" + }, + "EntityFramework/1.0.0": { + "type": "project", + "path": "../EntityFramework/EntityFramework.csproj", + "msbuildProject": "../EntityFramework/EntityFramework.csproj" + }, + "Infrastructure/1.0.0": { + "type": "project", + "path": "../Infrastructure/Infrastructure.csproj", + "msbuildProject": "../Infrastructure/Infrastructure.csproj" + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [ + "Application.Shared >= 1.0.0", + "EntityFramework >= 1.0.0", + "Hangfire.AspNetCore >= 1.7.24", + "Hangfire.Core >= 1.7.24", + "Hangfire.MySqlStorage >= 2.0.3", + "Infrastructure >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\NineFishes\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\BackGround\\BackGround.csproj", + "projectName": "BackGround", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\BackGround\\BackGround.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\BackGround\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application.Shared\\Application.Shared.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application.Shared\\Application.Shared.csproj" + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj" + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "dependencies": { + "Hangfire.AspNetCore": { + "target": "Package", + "version": "[1.7.24, )" + }, + "Hangfire.Core": { + "target": "Package", + "version": "[1.7.24, )" + }, + "Hangfire.MySqlStorage": { + "target": "Package", + "version": "[2.0.3, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/BackGround/obj/project.nuget.cache b/BackGround/obj/project.nuget.cache new file mode 100644 index 0000000..a651484 --- /dev/null +++ b/BackGround/obj/project.nuget.cache @@ -0,0 +1,157 @@ +{ + "version": 2, + "dgSpecHash": "vSIXoHXycayVNioFcIBR9MhY5PWDWBKWSFaFXIB9IwooLJFsATTphPVKBFzKVikRzJWaBf2punMtscFIGPvT8w==", + "success": true, + "projectFilePath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\BackGround\\BackGround.csproj", + "expectedPackageFiles": [ + "C:\\Users\\NineFishes\\.nuget\\packages\\autofac\\6.2.0\\autofac.6.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\autofac.extensions.dependencyinjection\\7.1.0\\autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\autofac.extras.dynamicproxy\\6.0.0\\autofac.extras.dynamicproxy.6.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\castle.core\\4.4.0\\castle.core.4.4.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\dapper\\1.50.5\\dapper.1.50.5.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\hangfire.aspnetcore\\1.7.24\\hangfire.aspnetcore.1.7.24.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\hangfire.core\\1.7.24\\hangfire.core.1.7.24.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\hangfire.mysqlstorage\\2.0.3\\hangfire.mysqlstorage.2.0.3.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authentication.abstractions\\2.2.0\\microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authentication.core\\2.2.0\\microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authorization\\2.2.0\\microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authorization.policy\\2.2.0\\microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.hosting.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.hosting.server.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http\\2.2.0\\microsoft.aspnetcore.http.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http.abstractions\\2.2.0\\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http.extensions\\2.2.0\\microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.mvc.abstractions\\2.2.0\\microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.mvc.core\\2.2.5\\microsoft.aspnetcore.mvc.core.2.2.5.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.responsecaching.abstractions\\2.2.0\\microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.routing\\2.2.0\\microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.routing.abstractions\\2.2.0\\microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.webutilities\\2.2.0\\microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.csharp\\4.4.1\\microsoft.csharp.4.4.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.entityframeworkcore\\5.0.7\\microsoft.entityframeworkcore.5.0.7.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.7\\microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.7\\microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\5.0.7\\microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\5.0.0\\microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.caching.memory\\5.0.0\\microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.1\\microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.dependencymodel\\5.0.0\\microsoft.extensions.dependencymodel.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\2.2.0\\microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\2.2.0\\microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.objectpool\\2.2.0\\microsoft.extensions.objectpool.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.net.http.headers\\2.2.0\\microsoft.net.http.headers.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.netcore.platforms\\2.0.0\\microsoft.netcore.platforms.2.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.win32.registry\\4.4.0\\microsoft.win32.registry.4.4.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.win32.systemevents\\4.5.0\\microsoft.win32.systemevents.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\mysqlconnector\\1.3.10\\mysqlconnector.1.3.10.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\npoi\\2.5.3\\npoi.2.5.3.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\pomelo.entityframeworkcore.mysql\\5.0.1\\pomelo.entityframeworkcore.mysql.5.0.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\portable.bouncycastle\\1.8.6\\portable.bouncycastle.1.8.6.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\sharpziplib\\1.2.0\\sharpziplib.1.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.buffers\\4.5.0\\system.buffers.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.configuration.configurationmanager\\4.5.0\\system.configuration.configurationmanager.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.data.sqlclient\\4.4.0\\system.data.sqlclient.4.4.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.1\\system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.tracesource\\4.3.0\\system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.drawing.common\\4.5.0\\system.drawing.common.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.typeextensions\\4.4.0\\system.reflection.typeextensions.4.4.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.accesscontrol\\4.5.0\\system.security.accesscontrol.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.5.0\\system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.permissions\\4.5.0\\system.security.permissions.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.principal.windows\\4.5.0\\system.security.principal.windows.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.encoding.codepages\\4.4.0\\system.text.encoding.codepages.4.4.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.encodings.web\\5.0.0\\system.text.encodings.web.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.json\\5.0.0\\system.text.json.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.1\\system.threading.tasks.extensions.4.5.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/Domain.Service/Class1.cs b/Domain.Service/Class1.cs new file mode 100644 index 0000000..08753f0 --- /dev/null +++ b/Domain.Service/Class1.cs @@ -0,0 +1,8 @@ +using System; + +namespace Domain.Service +{ + public class Class1 + { + } +} diff --git a/Domain.Service/Domain.Service.csproj b/Domain.Service/Domain.Service.csproj new file mode 100644 index 0000000..f91e715 --- /dev/null +++ b/Domain.Service/Domain.Service.csproj @@ -0,0 +1,12 @@ + + + + netcoreapp3.1 + + + + + + + + diff --git a/Domain.Service/FileUpload/FileUploader.cs b/Domain.Service/FileUpload/FileUploader.cs new file mode 100644 index 0000000..09bbe0d --- /dev/null +++ b/Domain.Service/FileUpload/FileUploader.cs @@ -0,0 +1,81 @@ +using Domain.Models.FileUploads; +using EntityFramework; +using Infrastructure.Domain; +using Microsoft.AspNetCore.Http; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Threading.Tasks; + +namespace Domain.Service.FileUpload +{ + public class FileUploader:DomainService, IFileUploader + { + private readonly FireStationDbContext _context; + public FileUploader(FireStationDbContext context) + { + _context = context; + } + + /// + /// 上传文件 + /// + /// + /// (文件名,上传记录Id,文件路径) + public async Task>> UploadFiles(IFormFileCollection files,int unitId, int uniacid,int groupId) + { + var result = new List>(); + if (files != null && files.Any()) + { + foreach (var file in files) + { + var contentType = file.ContentType; + var fileName = file.FileName; + var fileExtension = Path.GetExtension(fileName); + var fileNameWithoutExtension = Path.GetFileNameWithoutExtension(fileName); + var rootPath = Directory.GetCurrentDirectory(); + var directoryPath = Path.Combine(rootPath, "Uploaded"); + if (!Directory.Exists(directoryPath)) + { + Directory.CreateDirectory(directoryPath); + } + + var newFileName = $"{fileNameWithoutExtension}-{Guid.NewGuid()}{fileExtension}"; + var filePath = Path.Combine(directoryPath, newFileName); + try + { + using (var fileStream = new FileStream(filePath, FileMode.OpenOrCreate, FileAccess.ReadWrite, + FileShare.ReadWrite)) + { + using (var stream = file.OpenReadStream()) + { + await stream.CopyToAsync(fileStream); + } + } + + var uploadedFile = new UploadedFile + { + OriginalName = fileName, + FileName = newFileName, + ContentType = contentType, + Extension = fileExtension, + Path = filePath, + UploadedTime = DateTime.Now, + UploadedBy = "", + }; + await _context.UploadedFiles.AddAsync(uploadedFile); + await _context.FileUnits.AddAsync(new FileUnit { FileId = uploadedFile.Id, UnitId = unitId,Uniacid=uniacid,GroupId=groupId}); + await _context.SaveChangesAsync(); + result.Add(new Tuple(fileName, uploadedFile.Id, filePath)); + } + catch + { + continue; + } + } + } + return result; + } + } +} diff --git a/Domain.Service/FileUpload/IFileUploader.cs b/Domain.Service/FileUpload/IFileUploader.cs new file mode 100644 index 0000000..c6c2cfc --- /dev/null +++ b/Domain.Service/FileUpload/IFileUploader.cs @@ -0,0 +1,13 @@ +using Microsoft.AspNetCore.Http; +using System; +using System.Collections.Generic; +using System.Text; +using System.Threading.Tasks; + +namespace Domain.Service.FileUpload +{ + public interface IFileUploader + { + Task>> UploadFiles(IFormFileCollection files, int unitId, int uniacid, int groupId); + } +} diff --git a/Domain.Service/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/Domain.Service/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs new file mode 100644 index 0000000..ad8dfe1 --- /dev/null +++ b/Domain.Service/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] diff --git a/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.AssemblyInfo.cs b/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.AssemblyInfo.cs new file mode 100644 index 0000000..ed0bd82 --- /dev/null +++ b/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Domain.Service")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Domain.Service")] +[assembly: System.Reflection.AssemblyTitleAttribute("Domain.Service")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.AssemblyInfoInputs.cache b/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.AssemblyInfoInputs.cache new file mode 100644 index 0000000..b33042b --- /dev/null +++ b/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +fe00d636cc876fb31a73eb30a3b8fd0125fb457e diff --git a/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.GeneratedMSBuildEditorConfig.editorconfig b/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..cfe95c1 --- /dev/null +++ b/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,3 @@ +is_global = true +build_property.RootNamespace = Domain.Service +build_property.ProjectDir = C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Service\ diff --git a/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.assets.cache b/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.assets.cache new file mode 100644 index 0000000..e0b033c Binary files /dev/null and b/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.assets.cache differ diff --git a/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.csproj.AssemblyReference.cache b/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.csproj.AssemblyReference.cache new file mode 100644 index 0000000..1f76f4c Binary files /dev/null and b/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.csproj.AssemblyReference.cache differ diff --git a/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.csproj.BuildWithSkipAnalyzers b/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.csproj.CopyComplete b/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.csproj.CoreCompileInputs.cache b/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..bdfd33d --- /dev/null +++ b/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +f172fb1cf122424bdb275518683c55c9cce07503 diff --git a/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.csproj.FileListAbsolute.txt b/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..0dea5d4 --- /dev/null +++ b/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.csproj.FileListAbsolute.txt @@ -0,0 +1,19 @@ +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Service\bin\Debug\netcoreapp3.1\Domain.Service.deps.json +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Service\bin\Debug\netcoreapp3.1\Domain.Service.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Service\bin\Debug\netcoreapp3.1\Domain.Service.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Service\bin\Debug\netcoreapp3.1\Domain.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Service\bin\Debug\netcoreapp3.1\Domain.Shared.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Service\bin\Debug\netcoreapp3.1\EntityFramework.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Service\bin\Debug\netcoreapp3.1\Infrastructure.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Service\bin\Debug\netcoreapp3.1\EntityFramework.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Service\bin\Debug\netcoreapp3.1\Infrastructure.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Service\bin\Debug\netcoreapp3.1\Domain.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Service\bin\Debug\netcoreapp3.1\Domain.Shared.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Service\obj\Debug\netcoreapp3.1\Domain.Service.csproj.AssemblyReference.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Service\obj\Debug\netcoreapp3.1\Domain.Service.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Service\obj\Debug\netcoreapp3.1\Domain.Service.AssemblyInfoInputs.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Service\obj\Debug\netcoreapp3.1\Domain.Service.AssemblyInfo.cs +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Service\obj\Debug\netcoreapp3.1\Domain.Service.csproj.CoreCompileInputs.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Service\obj\Debug\netcoreapp3.1\Domain.Service.csproj.CopyComplete +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Service\obj\Debug\netcoreapp3.1\Domain.Service.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Service\obj\Debug\netcoreapp3.1\Domain.Service.pdb diff --git a/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.dll b/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.dll new file mode 100644 index 0000000..bd2bb3c Binary files /dev/null and b/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.dll differ diff --git a/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.pdb b/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.pdb new file mode 100644 index 0000000..d64e820 Binary files /dev/null and b/Domain.Service/obj/Debug/netcoreapp3.1/Domain.Service.pdb differ diff --git a/Domain.Service/obj/Domain.Service.csproj.nuget.dgspec.json b/Domain.Service/obj/Domain.Service.csproj.nuget.dgspec.json new file mode 100644 index 0000000..22bcd75 --- /dev/null +++ b/Domain.Service/obj/Domain.Service.csproj.nuget.dgspec.json @@ -0,0 +1,336 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Service\\Domain.Service.csproj": {} + }, + "projects": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Service\\Domain.Service.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Service\\Domain.Service.csproj", + "projectName": "Domain.Service", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Service\\Domain.Service.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Service\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj" + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj", + "projectName": "Domain.Shared", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj", + "projectName": "Domain", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj" + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj", + "projectName": "EntityFramework", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "dependencies": { + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[5.0.7, )" + }, + "Pomelo.EntityFrameworkCore.MySql": { + "target": "Package", + "version": "[5.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj", + "projectName": "Infrastructure", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "dependencies": { + "Autofac": { + "target": "Package", + "version": "[6.2.0, )" + }, + "Autofac.Extensions.DependencyInjection": { + "target": "Package", + "version": "[7.1.0, )" + }, + "Autofac.Extras.DynamicProxy": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.AspNetCore.Mvc.Core": { + "target": "Package", + "version": "[2.2.5, )" + }, + "Microsoft.Extensions.DependencyModel": { + "target": "Package", + "version": "[5.0.0, )" + }, + "NPOI": { + "target": "Package", + "version": "[2.5.3, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Domain.Service/obj/Domain.Service.csproj.nuget.g.props b/Domain.Service/obj/Domain.Service.csproj.nuget.g.props new file mode 100644 index 0000000..1168ab9 --- /dev/null +++ b/Domain.Service/obj/Domain.Service.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\NineFishes\.nuget\packages\ + PackageReference + 6.1.0 + + + + + \ No newline at end of file diff --git a/Domain.Service/obj/Domain.Service.csproj.nuget.g.targets b/Domain.Service/obj/Domain.Service.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/Domain.Service/obj/Domain.Service.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Domain.Service/obj/project.assets.json b/Domain.Service/obj/project.assets.json new file mode 100644 index 0000000..c84e779 --- /dev/null +++ b/Domain.Service/obj/project.assets.json @@ -0,0 +1,7060 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": { + "Autofac/6.2.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "4.7.1" + }, + "compile": { + "lib/netstandard2.1/Autofac.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Autofac.dll": {} + } + }, + "Autofac.Extensions.DependencyInjection/7.1.0": { + "type": "package", + "dependencies": { + "Autofac": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {} + } + }, + "Autofac.Extras.DynamicProxy/6.0.0": { + "type": "package", + "dependencies": { + "Autofac": "6.0.0", + "Castle.Core": "4.4.0" + }, + "compile": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {} + } + }, + "Castle.Core/4.4.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Castle.Core.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.Core/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Authorization": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {} + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Core/2.2.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Core": "2.2.0", + "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Mvc.Abstractions": "2.2.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Routing": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.Extensions.DependencyModel": "2.1.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Diagnostics.DiagnosticSource": "4.5.0", + "System.Threading.Tasks.Extensions": "4.5.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {} + } + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {} + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {} + } + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {} + } + }, + "Microsoft.EntityFrameworkCore/5.0.7": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "5.0.7", + "Microsoft.EntityFrameworkCore.Analyzers": "5.0.7", + "Microsoft.Extensions.Caching.Memory": "5.0.0", + "Microsoft.Extensions.DependencyInjection": "5.0.1", + "Microsoft.Extensions.Logging": "5.0.0", + "System.Collections.Immutable": "5.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Diagnostics.DiagnosticSource": "5.0.1" + }, + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/5.0.7": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "5.0.7", + "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {} + } + }, + "Microsoft.Extensions.Caching.Abstractions/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Caching.Memory/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "5.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0", + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/5.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DependencyModel/5.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "5.0.0", + "System.Text.Json": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "5.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0", + "System.Diagnostics.DiagnosticSource": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {} + } + }, + "Microsoft.Extensions.Options/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Primitives/5.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.SystemEvents/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MySqlConnector/1.3.10": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/MySqlConnector.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/MySqlConnector.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "NPOI/2.5.3": { + "type": "package", + "dependencies": { + "Portable.BouncyCastle": "1.8.6", + "SharpZipLib": "[1.2.0]", + "System.Configuration.ConfigurationManager": "4.5.0", + "System.Drawing.Common": "4.5.0" + }, + "compile": { + "lib/netstandard2.1/NPOI.OOXML.dll": {}, + "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {}, + "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {}, + "lib/netstandard2.1/NPOI.dll": {} + }, + "runtime": { + "lib/netstandard2.1/NPOI.OOXML.dll": {}, + "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {}, + "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {}, + "lib/netstandard2.1/NPOI.dll": {} + } + }, + "Pomelo.EntityFrameworkCore.MySql/5.0.1": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "[5.0.7, 6.0.0)", + "Microsoft.Extensions.DependencyInjection": "5.0.1", + "MySqlConnector": "1.3.10" + }, + "compile": { + "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {} + } + }, + "Portable.BouncyCastle/1.8.6": { + "type": "package", + "compile": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + }, + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "SharpZipLib/1.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {} + }, + "runtime": { + "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {} + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Configuration.ConfigurationManager/4.5.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.5.0", + "System.Security.Permissions": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/5.0.1": { + "type": "package", + "compile": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Drawing.Common/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.Win32.SystemEvents": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.AccessControl/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/4.5.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.Encodings.Web/5.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Text.Encodings.Web.dll": {} + } + }, + "System.Text.Json/5.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/System.Text.Json.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Text.Json.dll": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "Domain/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v3.1", + "dependencies": { + "Domain.Shared": "1.0.0", + "Infrastructure": "1.0.0" + }, + "compile": { + "bin/placeholder/Domain.dll": {} + }, + "runtime": { + "bin/placeholder/Domain.dll": {} + } + }, + "Domain.Shared/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v3.1", + "compile": { + "bin/placeholder/Domain.Shared.dll": {} + }, + "runtime": { + "bin/placeholder/Domain.Shared.dll": {} + } + }, + "EntityFramework/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v3.1", + "dependencies": { + "Domain": "1.0.0", + "Microsoft.EntityFrameworkCore": "5.0.7", + "Pomelo.EntityFrameworkCore.MySql": "5.0.1" + }, + "compile": { + "bin/placeholder/EntityFramework.dll": {} + }, + "runtime": { + "bin/placeholder/EntityFramework.dll": {} + } + }, + "Infrastructure/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v3.1", + "dependencies": { + "Autofac": "6.2.0", + "Autofac.Extensions.DependencyInjection": "7.1.0", + "Autofac.Extras.DynamicProxy": "6.0.0", + "Microsoft.AspNetCore.Mvc.Core": "2.2.5", + "Microsoft.Extensions.DependencyModel": "5.0.0", + "NPOI": "2.5.3", + "Newtonsoft.Json": "13.0.1" + }, + "compile": { + "bin/placeholder/Infrastructure.dll": {} + }, + "runtime": { + "bin/placeholder/Infrastructure.dll": {} + } + } + } + }, + "libraries": { + "Autofac/6.2.0": { + "sha512": "BX8IM0GANE38uSr4QwXL4PgA8vWWYt2P5cZzipn/vDnf0fDbPSGKSHEroJ09rB7ANxdyf7MdEgVs+pvL8kwYCg==", + "type": "package", + "path": "autofac/6.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "autofac.6.2.0.nupkg.sha512", + "autofac.nuspec", + "icon.png", + "lib/net5.0/Autofac.dll", + "lib/net5.0/Autofac.pdb", + "lib/net5.0/Autofac.xml", + "lib/netstandard2.0/Autofac.dll", + "lib/netstandard2.0/Autofac.pdb", + "lib/netstandard2.0/Autofac.xml", + "lib/netstandard2.1/Autofac.dll", + "lib/netstandard2.1/Autofac.pdb", + "lib/netstandard2.1/Autofac.xml" + ] + }, + "Autofac.Extensions.DependencyInjection/7.1.0": { + "sha512": "nm6rZREZ9tjdKXu9cmT69zHkZODagjCPlRRCOhiS1VqFFis9LQnMl18L4OYr8yfCW1WAQkFDD2CNaK/kF5Eqeg==", + "type": "package", + "path": "autofac.extensions.dependencyinjection/7.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512", + "autofac.extensions.dependencyinjection.nuspec", + "icon.png", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.pdb", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.pdb", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml" + ] + }, + "Autofac.Extras.DynamicProxy/6.0.0": { + "sha512": "Z86ZX33qYZ09xhdnYEyD/xilGUQBiITSAdHVZw59Qb+bN+tN/WFVDBZGQZZnI3+l8+hdjM2zWdcK4sgUEavRzw==", + "type": "package", + "path": "autofac.extras.dynamicproxy/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "autofac.extras.dynamicproxy.6.0.0.nupkg.sha512", + "autofac.extras.dynamicproxy.nuspec", + "icon.png", + "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll", + "lib/netstandard2.0/Autofac.Extras.DynamicProxy.pdb", + "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml", + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll", + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.pdb", + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml" + ] + }, + "Castle.Core/4.4.0": { + "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "type": "package", + "path": "castle.core/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ASL - Apache Software Foundation License.txt", + "CHANGELOG.md", + "LICENSE", + "castle.core.4.4.0.nupkg.sha512", + "castle.core.nuspec", + "lib/net35/Castle.Core.dll", + "lib/net35/Castle.Core.xml", + "lib/net40/Castle.Core.dll", + "lib/net40/Castle.Core.xml", + "lib/net45/Castle.Core.dll", + "lib/net45/Castle.Core.xml", + "lib/netstandard1.3/Castle.Core.dll", + "lib/netstandard1.3/Castle.Core.xml", + "lib/netstandard1.5/Castle.Core.dll", + "lib/netstandard1.5/Castle.Core.xml", + "readme.txt" + ] + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "sha512": "VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.xml", + "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Authentication.Core/2.2.0": { + "sha512": "XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.core/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.xml", + "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.core.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "sha512": "/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "sha512": "aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", + "type": "package", + "path": "microsoft.aspnetcore.authorization.policy/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.xml", + "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authorization.policy.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml", + "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", + "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.server.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http/2.2.0": { + "sha512": "YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==", + "type": "package", + "path": "microsoft.aspnetcore.http/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml", + "microsoft.aspnetcore.http.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "type": "package", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml", + "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "sha512": "2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", + "type": "package", + "path": "microsoft.aspnetcore.http.extensions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml", + "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "type": "package", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml", + "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.features.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { + "sha512": "ET6uZpfVbGR1NjCuLaLy197cQ3qZUjzl7EG5SL4GfJH/c9KRE89MMBrQegqWsh0w1iRUB/zQaK0anAjxa/pz4g==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.xml", + "microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Core/2.2.5": { + "sha512": "/8sr8ixIUD57UFwUntha9bOwex7/AkZfdk1f9oNJG1Ek7p/uuKVa7fuHmYZpQOf35Oxrt+2Ku4WPwMSbNxOuWg==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.core/2.2.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.xml", + "microsoft.aspnetcore.mvc.core.2.2.5.nupkg.sha512", + "microsoft.aspnetcore.mvc.core.nuspec" + ] + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { + "sha512": "CIHWEKrHzZfFp7t57UXsueiSA/raku56TgRYauV/W1+KAQq6vevz60zjEKaazt3BI76zwMz3B4jGWnCwd8kwQw==", + "type": "package", + "path": "microsoft.aspnetcore.responsecaching.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml", + "microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.responsecaching.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "sha512": "jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", + "type": "package", + "path": "microsoft.aspnetcore.routing/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.xml", + "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.routing.nuspec" + ] + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "sha512": "lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", + "type": "package", + "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml", + "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.routing.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "sha512": "9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", + "type": "package", + "path": "microsoft.aspnetcore.webutilities/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml", + "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.webutilities.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore/5.0.7": { + "sha512": "VAvmiQPdw0PUh3X7k9k7haVnCfQuDgyki9rq5XVk0gXJFeh+bwqPzPrY71A08O5TjnIeK9lEggXDnMuhQXUUww==", + "type": "package", + "path": "microsoft.entityframeworkcore/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { + "sha512": "MM5M9vYDLUXCePUGN2WZ0MkNcNj74sIgyVR9v7tW6abRULtBWPcyZf6zLYhZYpRgPXcahcME+Koscz9kP2DxyA==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": { + "sha512": "ZShPEOZaQhBZqDObU3+kigEmlEGug37F8v/jpQgVs1XfHrLeXVyk+p94DBH4f+bUUHUbsEEcIbU6OhUBtWZztg==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "lib/netstandard2.0/_._", + "microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/5.0.7": { + "sha512": "W3nj58s5GX8KFQwZaytERGy3tTqutjWK6309KCpXaVtVvuYf3GE3R0lrouxONzLynLG8hsODcs2gym5QQoqtSg==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/5.0.0": { + "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/5.0.0": { + "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==", + "type": "package", + "path": "microsoft.extensions.caching.memory/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Memory.dll", + "lib/net461/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { + "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/5.0.1": { + "sha512": "//mDNrYeiJ0eh/awFhDFJQzkRVra/njU5Y4fyK7X29g5HScrzbUkKOKlyTtygthcGFt4zNC8G5CFCjb/oizomA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.DependencyInjection.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.xml", + "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { + "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/5.0.0": { + "sha512": "umBECCoMC+sOUgm083yFr8SxTobUOcPFH4AXigdO2xJiszCHAnmeDl4qPphJt+oaJ/XIfV1wOjIts2nRnki61Q==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net451/Microsoft.Extensions.DependencyModel.dll", + "lib/net451/Microsoft.Extensions.DependencyModel.xml", + "lib/net461/Microsoft.Extensions.DependencyModel.dll", + "lib/net461/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.5.0.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { + "sha512": "EcnaSsPTqx2MGnHrmWOD0ugbuuqVT8iICqSqPzi45V5/MA1LjUNb0kwgcxBGqizV1R+WeBK7/Gw25Jzkyk9bIw==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { + "sha512": "+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/5.0.0": { + "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", + "type": "package", + "path": "microsoft.extensions.logging/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.dll", + "lib/net461/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.5.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0": { + "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "sha512": "gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", + "type": "package", + "path": "microsoft.extensions.objectpool/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml", + "microsoft.extensions.objectpool.2.2.0.nupkg.sha512", + "microsoft.extensions.objectpool.nuspec" + ] + }, + "Microsoft.Extensions.Options/5.0.0": { + "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==", + "type": "package", + "path": "microsoft.extensions.options/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.dll", + "lib/net461/Microsoft.Extensions.Options.xml", + "lib/net5.0/Microsoft.Extensions.Options.dll", + "lib/net5.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.5.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Primitives/5.0.0": { + "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==", + "type": "package", + "path": "microsoft.extensions.primitives/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Primitives.dll", + "lib/net461/Microsoft.Extensions.Primitives.xml", + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll", + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.5.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "sha512": "iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", + "type": "package", + "path": "microsoft.net.http.headers/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml", + "microsoft.net.http.headers.2.2.0.nupkg.sha512", + "microsoft.net.http.headers.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "sha512": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==", + "type": "package", + "path": "microsoft.netcore.platforms/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.2.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Win32.SystemEvents/4.5.0": { + "sha512": "LuI1oG+24TUj1ZRQQjM5Ew73BKnZE5NZ/7eAdh1o8ST5dPhUnJvIkiIn2re3MwnkRy6ELRnvEbBxHP8uALKhJw==", + "type": "package", + "path": "microsoft.win32.systemevents/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "microsoft.win32.systemevents.4.5.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MySqlConnector/1.3.10": { + "sha512": "geL3pNiwbSXzUqQLHLm2/igDHuz5Q4qqp2rKczYoIHtdvvrsd5fnYHN8eFgP81qu77Blv0+0IOn69RJATNQoSQ==", + "type": "package", + "path": "mysqlconnector/1.3.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net45/MySqlConnector.dll", + "lib/net45/MySqlConnector.xml", + "lib/net461/MySqlConnector.dll", + "lib/net461/MySqlConnector.xml", + "lib/net471/MySqlConnector.dll", + "lib/net471/MySqlConnector.xml", + "lib/net5.0/MySqlConnector.dll", + "lib/net5.0/MySqlConnector.xml", + "lib/netcoreapp2.1/MySqlConnector.dll", + "lib/netcoreapp2.1/MySqlConnector.xml", + "lib/netcoreapp3.1/MySqlConnector.dll", + "lib/netcoreapp3.1/MySqlConnector.xml", + "lib/netstandard1.3/MySqlConnector.dll", + "lib/netstandard1.3/MySqlConnector.xml", + "lib/netstandard2.0/MySqlConnector.dll", + "lib/netstandard2.0/MySqlConnector.xml", + "lib/netstandard2.1/MySqlConnector.dll", + "lib/netstandard2.1/MySqlConnector.xml", + "logo.png", + "mysqlconnector.1.3.10.nupkg.sha512", + "mysqlconnector.nuspec" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "NPOI/2.5.3": { + "sha512": "+DDU8JOHNhhiyAHr8Ew1hp85uPTcEw+O93+R2GDRB7sI5KpiQ+1i65DlY2OzfOq43+R3+39MyM7BTvjQi2KbfA==", + "type": "package", + "path": "npoi/2.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "Read Me.txt", + "lib/net45/NPOI.OOXML.XML", + "lib/net45/NPOI.OOXML.dll", + "lib/net45/NPOI.OpenXml4Net.XML", + "lib/net45/NPOI.OpenXml4Net.dll", + "lib/net45/NPOI.OpenXmlFormats.dll", + "lib/net45/NPOI.XML", + "lib/net45/NPOI.dll", + "lib/netstandard2.0/NPOI.OOXML.dll", + "lib/netstandard2.0/NPOI.OOXML.xml", + "lib/netstandard2.0/NPOI.OpenXml4Net.dll", + "lib/netstandard2.0/NPOI.OpenXml4Net.xml", + "lib/netstandard2.0/NPOI.OpenXmlFormats.dll", + "lib/netstandard2.0/NPOI.dll", + "lib/netstandard2.0/NPOI.xml", + "lib/netstandard2.1/NPOI.OOXML.dll", + "lib/netstandard2.1/NPOI.OOXML.xml", + "lib/netstandard2.1/NPOI.OpenXml4Net.dll", + "lib/netstandard2.1/NPOI.OpenXml4Net.xml", + "lib/netstandard2.1/NPOI.OpenXmlFormats.dll", + "lib/netstandard2.1/NPOI.dll", + "lib/netstandard2.1/NPOI.xml", + "logo/120_120.jpg", + "logo/240_240.png", + "logo/32_32.jpg", + "logo/60_60.jpg", + "npoi.2.5.3.nupkg.sha512", + "npoi.nuspec" + ] + }, + "Pomelo.EntityFrameworkCore.MySql/5.0.1": { + "sha512": "15t0Zda7kZFIe3U68komYU18KLGBr5K9lFydWBOycN7Xzb98xopVlyvb07GZb2OKJfX+sInhhD/U+jmHY9ceOg==", + "type": "package", + "path": "pomelo.entityframeworkcore.mysql/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll", + "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml", + "pomelo.entityframeworkcore.mysql.5.0.1.nupkg.sha512", + "pomelo.entityframeworkcore.mysql.nuspec" + ] + }, + "Portable.BouncyCastle/1.8.6": { + "sha512": "y+GvZomzhY+Lwu5mMeNmFFYLHiEr2xFDOANhABn/wgg64/QpTzfgpNGPct+pXgQHjmutd363ZCur/91DLaBxOw==", + "type": "package", + "path": "portable.bouncycastle/1.8.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40/BouncyCastle.Crypto.dll", + "lib/net40/BouncyCastle.Crypto.xml", + "lib/netstandard2.0/BouncyCastle.Crypto.dll", + "lib/netstandard2.0/BouncyCastle.Crypto.xml", + "portable.bouncycastle.1.8.6.nupkg.sha512", + "portable.bouncycastle.nuspec" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "SharpZipLib/1.2.0": { + "sha512": "zvWa/L02JHNatdtjya6Swpudb2YEHaOLHL1eRrqpjm71iGRNUNONO5adUF/9CHbSJbzhELW1UoH4NGy7n7+3bQ==", + "type": "package", + "path": "sharpziplib/1.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/ICSharpCode.SharpZipLib.dll", + "lib/net45/ICSharpCode.SharpZipLib.pdb", + "lib/net45/ICSharpCode.SharpZipLib.xml", + "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll", + "lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb", + "lib/netstandard2.0/ICSharpCode.SharpZipLib.xml", + "sharpziplib.1.2.0.nupkg.sha512", + "sharpziplib.nuspec" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.5.0": { + "sha512": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==", + "type": "package", + "path": "system.buffers/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "lib/uap10.0.16299/_._", + "ref/net45/System.Buffers.dll", + "ref/net45/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "ref/uap10.0.16299/_._", + "system.buffers.4.5.0.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Collections.Immutable/5.0.0": { + "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", + "type": "package", + "path": "system.collections.immutable/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Collections.Immutable.dll", + "lib/net461/System.Collections.Immutable.xml", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/netstandard1.3/System.Collections.Immutable.dll", + "lib/netstandard1.3/System.Collections.Immutable.xml", + "lib/netstandard2.0/System.Collections.Immutable.dll", + "lib/netstandard2.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.5.0.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections.NonGeneric/4.3.0": { + "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "type": "package", + "path": "system.collections.nongeneric/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.3.0.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.3.0": { + "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "type": "package", + "path": "system.collections.specialized/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/netstandard1.3/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.xml", + "ref/netstandard1.3/de/System.Collections.Specialized.xml", + "ref/netstandard1.3/es/System.Collections.Specialized.xml", + "ref/netstandard1.3/fr/System.Collections.Specialized.xml", + "ref/netstandard1.3/it/System.Collections.Specialized.xml", + "ref/netstandard1.3/ja/System.Collections.Specialized.xml", + "ref/netstandard1.3/ko/System.Collections.Specialized.xml", + "ref/netstandard1.3/ru/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.specialized.4.3.0.nupkg.sha512", + "system.collections.specialized.nuspec" + ] + }, + "System.ComponentModel/4.3.0": { + "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "type": "package", + "path": "system.componentmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.3.0.nupkg.sha512", + "system.componentmodel.nuspec" + ] + }, + "System.ComponentModel.Annotations/5.0.0": { + "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "type": "package", + "path": "system.componentmodel.annotations/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/netstandard2.0/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.xml", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/net461/System.ComponentModel.Annotations.xml", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard2.0/System.ComponentModel.Annotations.dll", + "ref/netstandard2.0/System.ComponentModel.Annotations.xml", + "ref/netstandard2.1/System.ComponentModel.Annotations.dll", + "ref/netstandard2.1/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.5.0.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ComponentModel.Primitives/4.3.0": { + "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "type": "package", + "path": "system.componentmodel.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.Primitives.dll", + "lib/netstandard1.0/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.primitives.4.3.0.nupkg.sha512", + "system.componentmodel.primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "type": "package", + "path": "system.componentmodel.typeconverter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/net462/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/net462/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "system.componentmodel.typeconverter.nuspec" + ] + }, + "System.Configuration.ConfigurationManager/4.5.0": { + "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==", + "type": "package", + "path": "system.configuration.configurationmanager/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.xml", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.4.5.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Console/4.3.0": { + "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "type": "package", + "path": "system.console/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.3.0.nupkg.sha512", + "system.console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/5.0.1": { + "sha512": "uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/System.Diagnostics.DiagnosticSource.dll", + "lib/net45/System.Diagnostics.DiagnosticSource.xml", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.3.0": { + "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "type": "package", + "path": "system.diagnostics.tracesource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.TraceSource.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "system.diagnostics.tracesource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Drawing.Common/4.5.0": { + "sha512": "AiJFxxVPdeITstiRS5aAu8+8Dpf5NawTMoapZ53Gfirml24p7HIfhjmCRxdXnmmf3IUA3AX3CcW7G73CjWxW/Q==", + "type": "package", + "path": "system.drawing.common/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "system.drawing.common.4.5.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Dynamic.Runtime/4.3.0": { + "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "type": "package", + "path": "system.dynamic.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.3.0.nupkg.sha512", + "system.dynamic.runtime.nuspec" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Security.AccessControl/4.5.0": { + "sha512": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==", + "type": "package", + "path": "system.security.accesscontrol/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.5.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.3.0": { + "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "type": "package", + "path": "system.security.cryptography.cng/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "system.security.cryptography.cng.4.3.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==", + "type": "package", + "path": "system.security.cryptography.protecteddata/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Permissions/4.5.0": { + "sha512": "9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", + "type": "package", + "path": "system.security.permissions/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.4.5.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.5.0": { + "sha512": "U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==", + "type": "package", + "path": "system.security.principal.windows/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.5.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Encodings.Web/5.0.0": { + "sha512": "EEslUvHKll1ftizbn20mX3Ix/l4Ygk/bdJ2LY6/X6FlGaP0RIhKMo9nS6JIGnKKT6KBP2PGj6JC3B9/ZF6ErqQ==", + "type": "package", + "path": "system.text.encodings.web/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.0/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.0/System.Text.Encodings.Web.xml", + "lib/netstandard1.0/System.Text.Encodings.Web.dll", + "lib/netstandard1.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.1/System.Text.Encodings.Web.dll", + "lib/netstandard2.1/System.Text.Encodings.Web.xml", + "system.text.encodings.web.5.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Json/5.0.0": { + "sha512": "+luxMQNZ2WqeffBU7Ml6njIvxc8169NW2oU+ygNudXQGZiarjE7DOtN7bILiQjTZjkmwwRZGTtLzmdrSI/Ustw==", + "type": "package", + "path": "system.text.json/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/netcoreapp3.0/System.Text.Json.dll", + "lib/netcoreapp3.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.5.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.5.1": { + "sha512": "WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "ref/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "ref/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "ref/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.1.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.3.0": { + "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "type": "package", + "path": "system.xml.xmldocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.3.0.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + }, + "Domain/1.0.0": { + "type": "project", + "path": "../Domain/Domain.csproj", + "msbuildProject": "../Domain/Domain.csproj" + }, + "Domain.Shared/1.0.0": { + "type": "project", + "path": "../Domain.Shared/Domain.Shared.csproj", + "msbuildProject": "../Domain.Shared/Domain.Shared.csproj" + }, + "EntityFramework/1.0.0": { + "type": "project", + "path": "../EntityFramework/EntityFramework.csproj", + "msbuildProject": "../EntityFramework/EntityFramework.csproj" + }, + "Infrastructure/1.0.0": { + "type": "project", + "path": "../Infrastructure/Infrastructure.csproj", + "msbuildProject": "../Infrastructure/Infrastructure.csproj" + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [ + "EntityFramework >= 1.0.0", + "Infrastructure >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\NineFishes\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Service\\Domain.Service.csproj", + "projectName": "Domain.Service", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Service\\Domain.Service.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Service\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj" + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Domain.Service/obj/project.nuget.cache b/Domain.Service/obj/project.nuget.cache new file mode 100644 index 0000000..fe1aadc --- /dev/null +++ b/Domain.Service/obj/project.nuget.cache @@ -0,0 +1,145 @@ +{ + "version": 2, + "dgSpecHash": "khy1F64KNlzDxirvpbmeH0zHCavtahsJyWUp2NcYf4jSPA/VMGxp9du0E/l0pVSoxY88MCACn0ACGXUwmoTwxw==", + "success": true, + "projectFilePath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Service\\Domain.Service.csproj", + "expectedPackageFiles": [ + "C:\\Users\\NineFishes\\.nuget\\packages\\autofac\\6.2.0\\autofac.6.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\autofac.extensions.dependencyinjection\\7.1.0\\autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\autofac.extras.dynamicproxy\\6.0.0\\autofac.extras.dynamicproxy.6.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\castle.core\\4.4.0\\castle.core.4.4.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authentication.abstractions\\2.2.0\\microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authentication.core\\2.2.0\\microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authorization\\2.2.0\\microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authorization.policy\\2.2.0\\microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.hosting.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.hosting.server.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http\\2.2.0\\microsoft.aspnetcore.http.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http.abstractions\\2.2.0\\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http.extensions\\2.2.0\\microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.mvc.abstractions\\2.2.0\\microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.mvc.core\\2.2.5\\microsoft.aspnetcore.mvc.core.2.2.5.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.responsecaching.abstractions\\2.2.0\\microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.routing\\2.2.0\\microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.routing.abstractions\\2.2.0\\microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.webutilities\\2.2.0\\microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.entityframeworkcore\\5.0.7\\microsoft.entityframeworkcore.5.0.7.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.7\\microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.7\\microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\5.0.7\\microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\5.0.0\\microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.caching.memory\\5.0.0\\microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.1\\microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.dependencymodel\\5.0.0\\microsoft.extensions.dependencymodel.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\2.2.0\\microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\2.2.0\\microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.objectpool\\2.2.0\\microsoft.extensions.objectpool.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.net.http.headers\\2.2.0\\microsoft.net.http.headers.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.netcore.platforms\\2.0.0\\microsoft.netcore.platforms.2.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.win32.systemevents\\4.5.0\\microsoft.win32.systemevents.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\mysqlconnector\\1.3.10\\mysqlconnector.1.3.10.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\npoi\\2.5.3\\npoi.2.5.3.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\pomelo.entityframeworkcore.mysql\\5.0.1\\pomelo.entityframeworkcore.mysql.5.0.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\portable.bouncycastle\\1.8.6\\portable.bouncycastle.1.8.6.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\sharpziplib\\1.2.0\\sharpziplib.1.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.buffers\\4.5.0\\system.buffers.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.configuration.configurationmanager\\4.5.0\\system.configuration.configurationmanager.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.1\\system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.tracesource\\4.3.0\\system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.drawing.common\\4.5.0\\system.drawing.common.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.accesscontrol\\4.5.0\\system.security.accesscontrol.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.5.0\\system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.permissions\\4.5.0\\system.security.permissions.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.principal.windows\\4.5.0\\system.security.principal.windows.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.encodings.web\\5.0.0\\system.text.encodings.web.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.json\\5.0.0\\system.text.json.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.1\\system.threading.tasks.extensions.4.5.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/Domain.Shared/Domain.Shared.csproj b/Domain.Shared/Domain.Shared.csproj new file mode 100644 index 0000000..cb63190 --- /dev/null +++ b/Domain.Shared/Domain.Shared.csproj @@ -0,0 +1,7 @@ + + + + netcoreapp3.1 + + + diff --git a/Domain.Shared/GenderType.cs b/Domain.Shared/GenderType.cs new file mode 100644 index 0000000..3ee4469 --- /dev/null +++ b/Domain.Shared/GenderType.cs @@ -0,0 +1,11 @@ +using System; + +namespace Domain.Shared +{ + public enum GenderType + { + Unknown, + Male, + Female + } +} diff --git a/Domain.Shared/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/Domain.Shared/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs new file mode 100644 index 0000000..ad8dfe1 --- /dev/null +++ b/Domain.Shared/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] diff --git a/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.AssemblyInfo.cs b/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.AssemblyInfo.cs new file mode 100644 index 0000000..25bc737 --- /dev/null +++ b/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Domain.Shared")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Domain.Shared")] +[assembly: System.Reflection.AssemblyTitleAttribute("Domain.Shared")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.AssemblyInfoInputs.cache b/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.AssemblyInfoInputs.cache new file mode 100644 index 0000000..1b39299 --- /dev/null +++ b/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +995bf6ec7e8c4d9f34630d5e1b42ea8c6db98be0 diff --git a/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.GeneratedMSBuildEditorConfig.editorconfig b/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..57670eb --- /dev/null +++ b/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,3 @@ +is_global = true +build_property.RootNamespace = Domain.Shared +build_property.ProjectDir = C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Shared\ diff --git a/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.assets.cache b/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.assets.cache new file mode 100644 index 0000000..7e96003 Binary files /dev/null and b/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.assets.cache differ diff --git a/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.csproj.AssemblyReference.cache b/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.csproj.AssemblyReference.cache new file mode 100644 index 0000000..0898c34 Binary files /dev/null and b/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.csproj.AssemblyReference.cache differ diff --git a/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.csproj.BuildWithSkipAnalyzers b/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.csproj.CoreCompileInputs.cache b/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..6a3fd54 --- /dev/null +++ b/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +4ef56f89de53d25c75cb22e726818f577b5df2db diff --git a/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.csproj.FileListAbsolute.txt b/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..f6a77a4 --- /dev/null +++ b/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.csproj.FileListAbsolute.txt @@ -0,0 +1,10 @@ +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Shared\bin\Debug\netcoreapp3.1\Domain.Shared.deps.json +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Shared\bin\Debug\netcoreapp3.1\Domain.Shared.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Shared\bin\Debug\netcoreapp3.1\Domain.Shared.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Shared\obj\Debug\netcoreapp3.1\Domain.Shared.csproj.AssemblyReference.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Shared\obj\Debug\netcoreapp3.1\Domain.Shared.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Shared\obj\Debug\netcoreapp3.1\Domain.Shared.AssemblyInfoInputs.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Shared\obj\Debug\netcoreapp3.1\Domain.Shared.AssemblyInfo.cs +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Shared\obj\Debug\netcoreapp3.1\Domain.Shared.csproj.CoreCompileInputs.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Shared\obj\Debug\netcoreapp3.1\Domain.Shared.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain.Shared\obj\Debug\netcoreapp3.1\Domain.Shared.pdb diff --git a/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.dll b/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.dll new file mode 100644 index 0000000..817fbd2 Binary files /dev/null and b/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.dll differ diff --git a/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.pdb b/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.pdb new file mode 100644 index 0000000..d1b9985 Binary files /dev/null and b/Domain.Shared/obj/Debug/netcoreapp3.1/Domain.Shared.pdb differ diff --git a/Domain.Shared/obj/Domain.Shared.csproj.nuget.dgspec.json b/Domain.Shared/obj/Domain.Shared.csproj.nuget.dgspec.json new file mode 100644 index 0000000..457103c --- /dev/null +++ b/Domain.Shared/obj/Domain.Shared.csproj.nuget.dgspec.json @@ -0,0 +1,62 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj": {} + }, + "projects": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj", + "projectName": "Domain.Shared", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Domain.Shared/obj/Domain.Shared.csproj.nuget.g.props b/Domain.Shared/obj/Domain.Shared.csproj.nuget.g.props new file mode 100644 index 0000000..1168ab9 --- /dev/null +++ b/Domain.Shared/obj/Domain.Shared.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\NineFishes\.nuget\packages\ + PackageReference + 6.1.0 + + + + + \ No newline at end of file diff --git a/Domain.Shared/obj/Domain.Shared.csproj.nuget.g.targets b/Domain.Shared/obj/Domain.Shared.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/Domain.Shared/obj/Domain.Shared.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Domain.Shared/obj/project.assets.json b/Domain.Shared/obj/project.assets.json new file mode 100644 index 0000000..618f254 --- /dev/null +++ b/Domain.Shared/obj/project.assets.json @@ -0,0 +1,67 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [] + }, + "packageFolders": { + "C:\\Users\\NineFishes\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj", + "projectName": "Domain.Shared", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Domain.Shared/obj/project.nuget.cache b/Domain.Shared/obj/project.nuget.cache new file mode 100644 index 0000000..1184ecc --- /dev/null +++ b/Domain.Shared/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "8CKyzAhkcdDgNcbfZ1UV4QppFSNJyU083HJKRp/8aiEtNFppA4p+7jaMfdiQXCf5dTpZG2Ql5yz63huck7NjCQ==", + "success": true, + "projectFilePath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/Domain/Class1.cs b/Domain/Class1.cs new file mode 100644 index 0000000..43a7bff --- /dev/null +++ b/Domain/Class1.cs @@ -0,0 +1,8 @@ +using System; + +namespace Domain +{ + public class Class1 + { + } +} diff --git a/Domain/Domain.csproj b/Domain/Domain.csproj new file mode 100644 index 0000000..08a32ca --- /dev/null +++ b/Domain/Domain.csproj @@ -0,0 +1,12 @@ + + + + netcoreapp3.1 + + + + + + + + diff --git a/Domain/Models/FileUploads/FileUnit.cs b/Domain/Models/FileUploads/FileUnit.cs new file mode 100644 index 0000000..cb2e4ea --- /dev/null +++ b/Domain/Models/FileUploads/FileUnit.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations.Schema; +using System.Text; + +namespace Domain.Models.FileUploads +{ + public class FileUnit + { + public Guid Id { get; set; } + /// + /// 微擎小程序/公众号ID + /// + public int Uniacid { get; set; } + + /// + /// 团体ID + /// + [Column("group_id")] + public int GroupId { get; set; } + /// + /// 单位分类ID,关联表building_category + /// + public Guid FileId { get; set; } + public int UnitId { get; set; } + } +} diff --git a/Domain/Models/FileUploads/UploadedFile.cs b/Domain/Models/FileUploads/UploadedFile.cs new file mode 100644 index 0000000..7d159da --- /dev/null +++ b/Domain/Models/FileUploads/UploadedFile.cs @@ -0,0 +1,42 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Domain.Models.FileUploads +{ + public class UploadedFile + { + public Guid Id { get; set; } + /// + /// 文件原名称 + /// + public string OriginalName { get; set; } + /// + /// 文件名 + /// + public string FileName { get; set; } + /// + /// ContentType + /// + public string ContentType { get; set; } + /// + /// 扩展名 + /// + public string Extension { get; set; } + /// + /// 文件路径 + /// + public string Path { get; set; } + /// + /// 上传时间 + /// + public DateTime UploadedTime { get; set; } + /// + /// 上传者 + /// + public string UploadedBy { get; set; } + public bool IsDeleted { get; set; } + public Guid DeleteBy { get; set; } + public DateTime DeleteTime { get; set; } + } +} diff --git a/Domain/Models/FireMen/FireMen.cs b/Domain/Models/FireMen/FireMen.cs new file mode 100644 index 0000000..741fedb --- /dev/null +++ b/Domain/Models/FireMen/FireMen.cs @@ -0,0 +1,36 @@ +using Domain.Shared; +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations.Schema; +using System.Text; + +namespace Domain.Models.FireMen +{ + [Table("unit_firemen")] + public class FireMen + { + public int Id { get; set; } + public int Uniacid { get; set; } + [Column("unit_id")] + public int UnitId { get; set; } + public short Sort { get; set; } + public string Name { get; set; } + public GenderType Gender { get; set; } + public string BirthDay { get; set; } + public string Job { get; set; } + [Column("phone_num")] + public string PhoneNumber { get; set; } + [Column("train_exp")] + public string TrainExp { get; set; } + [Column("licence_code")] + public string LicenceCode { get; set; } + [Column("licence_valid_date")] + public string LicenceValidDate { get; set; } + public string Imgs { get; set; } + public string Remark { get; set; } + [Column("operator_id")] + public int OperatorId { get; set; } + [Column("upt_time")] + public DateTime UpdateTime { get; set; } + } +} diff --git a/Domain/Models/UnitEquipments/UnitEquipment.cs b/Domain/Models/UnitEquipments/UnitEquipment.cs new file mode 100644 index 0000000..3492fb7 --- /dev/null +++ b/Domain/Models/UnitEquipments/UnitEquipment.cs @@ -0,0 +1,68 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations.Schema; +using System.Text; + +namespace Domain.Models.UnitEquipments +{ + [Table("unit_equipment")] + public class UnitEquipment + { + public int Id { get; set; } + /// + /// 微擎小程序/公众号ID + /// + public int Uniacid { get; set; } + + /// + /// 单位id + /// + [Column("unit_id")] + public int UnitId { get; set; } + /// + /// 装备名称 + /// + public string Name { get; set; } + /// + /// 装备数量 + /// + public int Count { get; set; } + /// + /// + /// + [Column("status_info")] + public string StatusInfo { get; set; } + /// + /// 装备类型 + /// + public string Type { get; set; } + /// + /// 装备型号 + /// + public string model { get; set; } + /// + /// 购买时间 + /// + [Column("buy_time")] + public string BuyTime { get; set; } + /// + /// 装备图片 + /// + public string Imgs { get; set; } + /// + /// 备注 + /// + public string Remark { get; set; } + /// + /// 操作员ID,关联表gate_member + /// + [Column("operator_id")] + public int OperatorId { get; set; } + /// + /// 更新时间 + /// + [Column("upt_time")] + public DateTime UpdateTime { get; set; } + + } +} diff --git a/Domain/Models/Units/Unit.cs b/Domain/Models/Units/Unit.cs new file mode 100644 index 0000000..1f1a056 --- /dev/null +++ b/Domain/Models/Units/Unit.cs @@ -0,0 +1,107 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations.Schema; +using System.Text; + +namespace Domain.Models.Units +{ + [Table("unit")] + public class Unit + { + public int Id { get; set; } + /// + /// 微擎小程序/公众号ID + /// + public int Uniacid { get; set; } + + /// + /// 团体ID + /// + [Column("group_id")] + public int GroupId { get; set; } + /// + /// 单位分类ID,关联表building_category + /// + [Column("category_id")] + public int CategoryId { get; set; } + /// + /// 坐标纬度 + /// + public float Latitude { get; set; } + /// + /// 坐标经度 + /// + public float Longitude { get; set; } + /// + /// 地址名称 + /// + [Column("location_name")] + public string LocationName { get; set; } + /// + /// 单位名称 + /// + public string Name { get; set; } + /// + /// 重要等级 + /// + [Column("important_rating")] + public Int16 ImportantRating { get; set; } + /// + /// 监管等级 + /// + [Column("supervise_level")] + public Int16 SuperviseLevel { get; set; } + /// + /// 上级单位ID + /// + [Column("parent_unit_id")] + public int ParentUnitId { get; set; } + /// + /// 负责人姓名 + /// + [Column("principal_name")] + public string PrincipalName { get; set; } + /// + /// 负责人联系电话 + /// + [Column("principal_phone_num")] + public string PrincipalPhoneNum { get; set; } + /// + /// 人数 + /// + [Column("people_num")] + public Int16 PeopleNum { get; set; } + /// + /// 占地面积 + /// + [Column("cover_area")] + public int CoverArea { get; set; } + /// + /// 使用面积 + /// + [Column("use_area")] + public int UseArea { get; set; } + /// + /// 图片集合 + /// + public string Imgs { get; set; } + /// + /// 备注 + /// + public string Remark { get; set; } + /// + /// 附件信息集合 + /// + public string Attachments { get; set; } + /// + /// 操作员ID,关联表gate_member + /// + [Column("operator_id")] + public int OperatorId { get; set; } + /// + /// 更新时间 + /// + [Column("upt_time")] + public DateTime UpdateTime { get; set; } + } +} diff --git a/Domain/Models/Units/UnitCategory.cs b/Domain/Models/Units/UnitCategory.cs new file mode 100644 index 0000000..aced55d --- /dev/null +++ b/Domain/Models/Units/UnitCategory.cs @@ -0,0 +1,44 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations.Schema; +using System.Text; + +namespace Domain.Models.Units +{ + [Table("unit_category")] + public class UnitCategory + { + public int Id { get; set; } + /// + /// 微擎小程序/公众号ID + /// + public int Uniacid { get; set; } + /// + /// 团体ID + /// + [Column("group_id")] + public int GroupId { get; set; } + /// + /// 排序 + /// + public Int32 Sort { get; set; } + /// + /// 类别名 + /// + public string Name { get; set; } + /// + /// 类别图标 + /// + public string Icon { get; set; } + /// + /// 操作员ID,关联表gate_member + /// + [Column("operator_id")] + public int OperatorId { get; set; } + /// + /// 更新时间 + /// + [Column("upt_time")] + public DateTime UpdateTime { get; set; } + } +} diff --git a/Domain/Models/Waters/Water.cs b/Domain/Models/Waters/Water.cs new file mode 100644 index 0000000..8b0e173 --- /dev/null +++ b/Domain/Models/Waters/Water.cs @@ -0,0 +1,113 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations.Schema; +using System.Text; + +namespace Domain.Models.Waters +{ + [Table("water")] + public class Water + { + public int Id { get; set; } + /// + /// 微擎小程序/公众号ID + /// + public int Uniacid { get; set; } + + /// + /// 团体ID + /// + [Column("group_id")] + public int GroupId { get; set; } + /// + /// 坐标纬度 + /// + public float Latitude { get; set; } + /// + /// 坐标经度 + /// + public float Longitude { get; set; } + /// + /// 地址名称 + /// + [Column("location_name")] + public string LocationName { get; set; } + /// + /// 单位分类ID,关联表building_category + /// + [Column("category_id")] + public int CategoryId { get; set; } + /// + /// 水源类型 + /// + public short Type { get; set; } + /// + /// 水源编号 + /// + public string Code { get; set; } + /// + /// 水源状态:0.损坏 1.好用 2.不好用 + /// + public short Status { get; set; } + /// + /// 管网形式:0.环状 1.枝状 + /// + [Column("guanwang_type")] + public short GuanangType { get; set; } + /// + /// 管网直径,单位(mm) + /// + [Column("guanwang_diam")] + public float GuanwangDiam { get; set; } + /// + /// 管网压力 + /// + [Column("guanwang_pressure")] + public float GuanwangPressure { get; set; } + /// + /// 供水单位 + /// + [Column("supply_company")] + public string SupplyCompany { get; set; } + /// + /// 水源负责人姓名 + /// + [Column("principal_name")] + public string PrincipalName { get; set; } + /// + /// 水源负责人电话 + /// + [Column("principal_phone_num")] + public string PrincipalPhoneNum { get; set; } + /// + /// 水源安装日期 + /// + [Column("install_date")] + public string InstallDate { get; set; } + /// + /// 水源更新日期 + /// + [Column("change_date")] + public string ChangeDate { get; set; } + /// + /// 水源注销日期 + /// + [Column("cancel_date")] + public string CancelDate { get; set; } + /// + /// 水源照片 + /// + public string Imgs { get; set; } + /// + /// 备注 + /// + public string Remark { get; set; } + /// + /// 操作人 + /// + [Column("operator_id")] + public int OperatorId { get; set; } + [Column("upt_time")] + public DateTime UpdateTime { get; set; } + } +} diff --git a/Domain/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/Domain/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs new file mode 100644 index 0000000..ad8dfe1 --- /dev/null +++ b/Domain/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] diff --git a/Domain/obj/Debug/netcoreapp3.1/Domain.AssemblyInfo.cs b/Domain/obj/Debug/netcoreapp3.1/Domain.AssemblyInfo.cs new file mode 100644 index 0000000..0f6523a --- /dev/null +++ b/Domain/obj/Debug/netcoreapp3.1/Domain.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Domain")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Domain")] +[assembly: System.Reflection.AssemblyTitleAttribute("Domain")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/Domain/obj/Debug/netcoreapp3.1/Domain.AssemblyInfoInputs.cache b/Domain/obj/Debug/netcoreapp3.1/Domain.AssemblyInfoInputs.cache new file mode 100644 index 0000000..8a7e591 --- /dev/null +++ b/Domain/obj/Debug/netcoreapp3.1/Domain.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +61cc67e4b8a552e3e625bce3ceec4838ccb5bd37 diff --git a/Domain/obj/Debug/netcoreapp3.1/Domain.GeneratedMSBuildEditorConfig.editorconfig b/Domain/obj/Debug/netcoreapp3.1/Domain.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..38d93d9 --- /dev/null +++ b/Domain/obj/Debug/netcoreapp3.1/Domain.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,3 @@ +is_global = true +build_property.RootNamespace = Domain +build_property.ProjectDir = C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain\ diff --git a/Domain/obj/Debug/netcoreapp3.1/Domain.assets.cache b/Domain/obj/Debug/netcoreapp3.1/Domain.assets.cache new file mode 100644 index 0000000..660f264 Binary files /dev/null and b/Domain/obj/Debug/netcoreapp3.1/Domain.assets.cache differ diff --git a/Domain/obj/Debug/netcoreapp3.1/Domain.csproj.AssemblyReference.cache b/Domain/obj/Debug/netcoreapp3.1/Domain.csproj.AssemblyReference.cache new file mode 100644 index 0000000..7f12e09 Binary files /dev/null and b/Domain/obj/Debug/netcoreapp3.1/Domain.csproj.AssemblyReference.cache differ diff --git a/Domain/obj/Debug/netcoreapp3.1/Domain.csproj.BuildWithSkipAnalyzers b/Domain/obj/Debug/netcoreapp3.1/Domain.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/Domain/obj/Debug/netcoreapp3.1/Domain.csproj.CopyComplete b/Domain/obj/Debug/netcoreapp3.1/Domain.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/Domain/obj/Debug/netcoreapp3.1/Domain.csproj.CoreCompileInputs.cache b/Domain/obj/Debug/netcoreapp3.1/Domain.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..477fd46 --- /dev/null +++ b/Domain/obj/Debug/netcoreapp3.1/Domain.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +b7c353579d2a61f12638ae6b8ecf1bcd1f6d43f7 diff --git a/Domain/obj/Debug/netcoreapp3.1/Domain.csproj.FileListAbsolute.txt b/Domain/obj/Debug/netcoreapp3.1/Domain.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..597d6ff --- /dev/null +++ b/Domain/obj/Debug/netcoreapp3.1/Domain.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain\bin\Debug\netcoreapp3.1\Domain.deps.json +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain\bin\Debug\netcoreapp3.1\Domain.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain\bin\Debug\netcoreapp3.1\Domain.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain\bin\Debug\netcoreapp3.1\Domain.Shared.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain\bin\Debug\netcoreapp3.1\Infrastructure.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain\bin\Debug\netcoreapp3.1\Domain.Shared.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain\bin\Debug\netcoreapp3.1\Infrastructure.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain\obj\Debug\netcoreapp3.1\Domain.csproj.AssemblyReference.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain\obj\Debug\netcoreapp3.1\Domain.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain\obj\Debug\netcoreapp3.1\Domain.AssemblyInfoInputs.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain\obj\Debug\netcoreapp3.1\Domain.AssemblyInfo.cs +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain\obj\Debug\netcoreapp3.1\Domain.csproj.CoreCompileInputs.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain\obj\Debug\netcoreapp3.1\Domain.csproj.CopyComplete +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain\obj\Debug\netcoreapp3.1\Domain.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Domain\obj\Debug\netcoreapp3.1\Domain.pdb diff --git a/Domain/obj/Debug/netcoreapp3.1/Domain.dll b/Domain/obj/Debug/netcoreapp3.1/Domain.dll new file mode 100644 index 0000000..71e87f5 Binary files /dev/null and b/Domain/obj/Debug/netcoreapp3.1/Domain.dll differ diff --git a/Domain/obj/Debug/netcoreapp3.1/Domain.pdb b/Domain/obj/Debug/netcoreapp3.1/Domain.pdb new file mode 100644 index 0000000..e95c1bc Binary files /dev/null and b/Domain/obj/Debug/netcoreapp3.1/Domain.pdb differ diff --git a/Domain/obj/Domain.csproj.nuget.dgspec.json b/Domain/obj/Domain.csproj.nuget.dgspec.json new file mode 100644 index 0000000..c8a3eeb --- /dev/null +++ b/Domain/obj/Domain.csproj.nuget.dgspec.json @@ -0,0 +1,207 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj": {} + }, + "projects": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj", + "projectName": "Domain.Shared", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj", + "projectName": "Domain", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj" + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj", + "projectName": "Infrastructure", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "dependencies": { + "Autofac": { + "target": "Package", + "version": "[6.2.0, )" + }, + "Autofac.Extensions.DependencyInjection": { + "target": "Package", + "version": "[7.1.0, )" + }, + "Autofac.Extras.DynamicProxy": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.AspNetCore.Mvc.Core": { + "target": "Package", + "version": "[2.2.5, )" + }, + "Microsoft.Extensions.DependencyModel": { + "target": "Package", + "version": "[5.0.0, )" + }, + "NPOI": { + "target": "Package", + "version": "[2.5.3, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Domain/obj/Domain.csproj.nuget.g.props b/Domain/obj/Domain.csproj.nuget.g.props new file mode 100644 index 0000000..1168ab9 --- /dev/null +++ b/Domain/obj/Domain.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\NineFishes\.nuget\packages\ + PackageReference + 6.1.0 + + + + + \ No newline at end of file diff --git a/Domain/obj/Domain.csproj.nuget.g.targets b/Domain/obj/Domain.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/Domain/obj/Domain.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Domain/obj/project.assets.json b/Domain/obj/project.assets.json new file mode 100644 index 0000000..9fad09f --- /dev/null +++ b/Domain/obj/project.assets.json @@ -0,0 +1,6730 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": { + "Autofac/6.2.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "4.7.1" + }, + "compile": { + "lib/netstandard2.1/Autofac.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Autofac.dll": {} + } + }, + "Autofac.Extensions.DependencyInjection/7.1.0": { + "type": "package", + "dependencies": { + "Autofac": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {} + } + }, + "Autofac.Extras.DynamicProxy/6.0.0": { + "type": "package", + "dependencies": { + "Autofac": "6.0.0", + "Castle.Core": "4.4.0" + }, + "compile": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {} + } + }, + "Castle.Core/4.4.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Castle.Core.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.Core/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Authorization": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {} + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Core/2.2.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Core": "2.2.0", + "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Mvc.Abstractions": "2.2.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Routing": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.Extensions.DependencyModel": "2.1.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Diagnostics.DiagnosticSource": "4.5.0", + "System.Threading.Tasks.Extensions": "4.5.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {} + } + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {} + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {} + } + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0" + }, + "compile": { + "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DependencyModel/5.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "5.0.0", + "System.Text.Json": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {} + } + }, + "Microsoft.Extensions.Options/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.Primitives": "2.2.0", + "System.ComponentModel.Annotations": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Primitives/2.2.0": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.1", + "System.Runtime.CompilerServices.Unsafe": "4.5.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.SystemEvents/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "NPOI/2.5.3": { + "type": "package", + "dependencies": { + "Portable.BouncyCastle": "1.8.6", + "SharpZipLib": "[1.2.0]", + "System.Configuration.ConfigurationManager": "4.5.0", + "System.Drawing.Common": "4.5.0" + }, + "compile": { + "lib/netstandard2.1/NPOI.OOXML.dll": {}, + "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {}, + "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {}, + "lib/netstandard2.1/NPOI.dll": {} + }, + "runtime": { + "lib/netstandard2.1/NPOI.OOXML.dll": {}, + "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {}, + "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {}, + "lib/netstandard2.1/NPOI.dll": {} + } + }, + "Portable.BouncyCastle/1.8.6": { + "type": "package", + "compile": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + }, + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "SharpZipLib/1.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {} + }, + "runtime": { + "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {} + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Configuration.ConfigurationManager/4.5.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.5.0", + "System.Security.Permissions": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.7.1": { + "type": "package", + "compile": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Drawing.Common/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.Win32.SystemEvents": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Memory/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/4.5.1": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.AccessControl/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/4.5.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.Encodings.Web/5.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Text.Encodings.Web.dll": {} + } + }, + "System.Text.Json/5.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/System.Text.Json.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Text.Json.dll": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "Domain.Shared/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v3.1", + "compile": { + "bin/placeholder/Domain.Shared.dll": {} + }, + "runtime": { + "bin/placeholder/Domain.Shared.dll": {} + } + }, + "Infrastructure/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v3.1", + "dependencies": { + "Autofac": "6.2.0", + "Autofac.Extensions.DependencyInjection": "7.1.0", + "Autofac.Extras.DynamicProxy": "6.0.0", + "Microsoft.AspNetCore.Mvc.Core": "2.2.5", + "Microsoft.Extensions.DependencyModel": "5.0.0", + "NPOI": "2.5.3", + "Newtonsoft.Json": "13.0.1" + }, + "compile": { + "bin/placeholder/Infrastructure.dll": {} + }, + "runtime": { + "bin/placeholder/Infrastructure.dll": {} + } + } + } + }, + "libraries": { + "Autofac/6.2.0": { + "sha512": "BX8IM0GANE38uSr4QwXL4PgA8vWWYt2P5cZzipn/vDnf0fDbPSGKSHEroJ09rB7ANxdyf7MdEgVs+pvL8kwYCg==", + "type": "package", + "path": "autofac/6.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "autofac.6.2.0.nupkg.sha512", + "autofac.nuspec", + "icon.png", + "lib/net5.0/Autofac.dll", + "lib/net5.0/Autofac.pdb", + "lib/net5.0/Autofac.xml", + "lib/netstandard2.0/Autofac.dll", + "lib/netstandard2.0/Autofac.pdb", + "lib/netstandard2.0/Autofac.xml", + "lib/netstandard2.1/Autofac.dll", + "lib/netstandard2.1/Autofac.pdb", + "lib/netstandard2.1/Autofac.xml" + ] + }, + "Autofac.Extensions.DependencyInjection/7.1.0": { + "sha512": "nm6rZREZ9tjdKXu9cmT69zHkZODagjCPlRRCOhiS1VqFFis9LQnMl18L4OYr8yfCW1WAQkFDD2CNaK/kF5Eqeg==", + "type": "package", + "path": "autofac.extensions.dependencyinjection/7.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512", + "autofac.extensions.dependencyinjection.nuspec", + "icon.png", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.pdb", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.pdb", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml" + ] + }, + "Autofac.Extras.DynamicProxy/6.0.0": { + "sha512": "Z86ZX33qYZ09xhdnYEyD/xilGUQBiITSAdHVZw59Qb+bN+tN/WFVDBZGQZZnI3+l8+hdjM2zWdcK4sgUEavRzw==", + "type": "package", + "path": "autofac.extras.dynamicproxy/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "autofac.extras.dynamicproxy.6.0.0.nupkg.sha512", + "autofac.extras.dynamicproxy.nuspec", + "icon.png", + "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll", + "lib/netstandard2.0/Autofac.Extras.DynamicProxy.pdb", + "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml", + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll", + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.pdb", + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml" + ] + }, + "Castle.Core/4.4.0": { + "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "type": "package", + "path": "castle.core/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ASL - Apache Software Foundation License.txt", + "CHANGELOG.md", + "LICENSE", + "castle.core.4.4.0.nupkg.sha512", + "castle.core.nuspec", + "lib/net35/Castle.Core.dll", + "lib/net35/Castle.Core.xml", + "lib/net40/Castle.Core.dll", + "lib/net40/Castle.Core.xml", + "lib/net45/Castle.Core.dll", + "lib/net45/Castle.Core.xml", + "lib/netstandard1.3/Castle.Core.dll", + "lib/netstandard1.3/Castle.Core.xml", + "lib/netstandard1.5/Castle.Core.dll", + "lib/netstandard1.5/Castle.Core.xml", + "readme.txt" + ] + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "sha512": "VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.xml", + "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Authentication.Core/2.2.0": { + "sha512": "XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.core/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.xml", + "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.core.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "sha512": "/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "sha512": "aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", + "type": "package", + "path": "microsoft.aspnetcore.authorization.policy/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.xml", + "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authorization.policy.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml", + "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", + "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.server.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http/2.2.0": { + "sha512": "YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==", + "type": "package", + "path": "microsoft.aspnetcore.http/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml", + "microsoft.aspnetcore.http.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "type": "package", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml", + "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "sha512": "2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", + "type": "package", + "path": "microsoft.aspnetcore.http.extensions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml", + "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "type": "package", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml", + "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.features.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { + "sha512": "ET6uZpfVbGR1NjCuLaLy197cQ3qZUjzl7EG5SL4GfJH/c9KRE89MMBrQegqWsh0w1iRUB/zQaK0anAjxa/pz4g==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.xml", + "microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Core/2.2.5": { + "sha512": "/8sr8ixIUD57UFwUntha9bOwex7/AkZfdk1f9oNJG1Ek7p/uuKVa7fuHmYZpQOf35Oxrt+2Ku4WPwMSbNxOuWg==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.core/2.2.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.xml", + "microsoft.aspnetcore.mvc.core.2.2.5.nupkg.sha512", + "microsoft.aspnetcore.mvc.core.nuspec" + ] + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { + "sha512": "CIHWEKrHzZfFp7t57UXsueiSA/raku56TgRYauV/W1+KAQq6vevz60zjEKaazt3BI76zwMz3B4jGWnCwd8kwQw==", + "type": "package", + "path": "microsoft.aspnetcore.responsecaching.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml", + "microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.responsecaching.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "sha512": "jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", + "type": "package", + "path": "microsoft.aspnetcore.routing/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.xml", + "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.routing.nuspec" + ] + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "sha512": "lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", + "type": "package", + "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml", + "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.routing.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "sha512": "9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", + "type": "package", + "path": "microsoft.aspnetcore.webutilities/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml", + "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.webutilities.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/2.2.0": { + "sha512": "65MrmXCziWaQFrI0UHkQbesrX5wTwf9XPjY5yFm/VkgJKFJ5gqvXRoXjIZcf2wLi5ZlwGz/oMYfyURVCWbM5iw==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection/2.2.0": { + "sha512": "MZtBIwfDFork5vfjpJdG5g8wuJFt7d/y3LOSVVtDK/76wlbtz6cjltfKHqLx2TKVqTj5/c41t77m1+h20zqtPA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Microsoft.Extensions.DependencyInjection.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.xml", + "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.2.2.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": { + "sha512": "f9hstgjVmr6rmrfGSpfsVOl2irKAgr1QjrSi3FgnS7kulxband50f2brRLwySAQTADPZeTdow0mpSMcoAdadCw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.DependencyModel/5.0.0": { + "sha512": "umBECCoMC+sOUgm083yFr8SxTobUOcPFH4AXigdO2xJiszCHAnmeDl4qPphJt+oaJ/XIfV1wOjIts2nRnki61Q==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net451/Microsoft.Extensions.DependencyModel.dll", + "lib/net451/Microsoft.Extensions.DependencyModel.xml", + "lib/net461/Microsoft.Extensions.DependencyModel.dll", + "lib/net461/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.5.0.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { + "sha512": "EcnaSsPTqx2MGnHrmWOD0ugbuuqVT8iICqSqPzi45V5/MA1LjUNb0kwgcxBGqizV1R+WeBK7/Gw25Jzkyk9bIw==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { + "sha512": "+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "sha512": "B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "sha512": "gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", + "type": "package", + "path": "microsoft.extensions.objectpool/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml", + "microsoft.extensions.objectpool.2.2.0.nupkg.sha512", + "microsoft.extensions.objectpool.nuspec" + ] + }, + "Microsoft.Extensions.Options/2.2.0": { + "sha512": "UpZLNLBpIZ0GTebShui7xXYh6DmBHjWM8NxGxZbdQh/bPZ5e6YswqI+bru6BnEL5eWiOdodsXtEz3FROcgi/qg==", + "type": "package", + "path": "microsoft.extensions.options/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.2.2.0.nupkg.sha512", + "microsoft.extensions.options.nuspec" + ] + }, + "Microsoft.Extensions.Primitives/2.2.0": { + "sha512": "azyQtqbm4fSaDzZHD/J+V6oWMFaf2tWP4WEGIYePLCMw3+b2RQdj9ybgbQyjCshcitQKQ4lEDOZjmSlTTrHxUg==", + "type": "package", + "path": "microsoft.extensions.primitives/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.2.2.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec" + ] + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "sha512": "iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", + "type": "package", + "path": "microsoft.net.http.headers/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml", + "microsoft.net.http.headers.2.2.0.nupkg.sha512", + "microsoft.net.http.headers.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "sha512": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==", + "type": "package", + "path": "microsoft.netcore.platforms/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.2.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Win32.SystemEvents/4.5.0": { + "sha512": "LuI1oG+24TUj1ZRQQjM5Ew73BKnZE5NZ/7eAdh1o8ST5dPhUnJvIkiIn2re3MwnkRy6ELRnvEbBxHP8uALKhJw==", + "type": "package", + "path": "microsoft.win32.systemevents/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "microsoft.win32.systemevents.4.5.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "NPOI/2.5.3": { + "sha512": "+DDU8JOHNhhiyAHr8Ew1hp85uPTcEw+O93+R2GDRB7sI5KpiQ+1i65DlY2OzfOq43+R3+39MyM7BTvjQi2KbfA==", + "type": "package", + "path": "npoi/2.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "Read Me.txt", + "lib/net45/NPOI.OOXML.XML", + "lib/net45/NPOI.OOXML.dll", + "lib/net45/NPOI.OpenXml4Net.XML", + "lib/net45/NPOI.OpenXml4Net.dll", + "lib/net45/NPOI.OpenXmlFormats.dll", + "lib/net45/NPOI.XML", + "lib/net45/NPOI.dll", + "lib/netstandard2.0/NPOI.OOXML.dll", + "lib/netstandard2.0/NPOI.OOXML.xml", + "lib/netstandard2.0/NPOI.OpenXml4Net.dll", + "lib/netstandard2.0/NPOI.OpenXml4Net.xml", + "lib/netstandard2.0/NPOI.OpenXmlFormats.dll", + "lib/netstandard2.0/NPOI.dll", + "lib/netstandard2.0/NPOI.xml", + "lib/netstandard2.1/NPOI.OOXML.dll", + "lib/netstandard2.1/NPOI.OOXML.xml", + "lib/netstandard2.1/NPOI.OpenXml4Net.dll", + "lib/netstandard2.1/NPOI.OpenXml4Net.xml", + "lib/netstandard2.1/NPOI.OpenXmlFormats.dll", + "lib/netstandard2.1/NPOI.dll", + "lib/netstandard2.1/NPOI.xml", + "logo/120_120.jpg", + "logo/240_240.png", + "logo/32_32.jpg", + "logo/60_60.jpg", + "npoi.2.5.3.nupkg.sha512", + "npoi.nuspec" + ] + }, + "Portable.BouncyCastle/1.8.6": { + "sha512": "y+GvZomzhY+Lwu5mMeNmFFYLHiEr2xFDOANhABn/wgg64/QpTzfgpNGPct+pXgQHjmutd363ZCur/91DLaBxOw==", + "type": "package", + "path": "portable.bouncycastle/1.8.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40/BouncyCastle.Crypto.dll", + "lib/net40/BouncyCastle.Crypto.xml", + "lib/netstandard2.0/BouncyCastle.Crypto.dll", + "lib/netstandard2.0/BouncyCastle.Crypto.xml", + "portable.bouncycastle.1.8.6.nupkg.sha512", + "portable.bouncycastle.nuspec" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "SharpZipLib/1.2.0": { + "sha512": "zvWa/L02JHNatdtjya6Swpudb2YEHaOLHL1eRrqpjm71iGRNUNONO5adUF/9CHbSJbzhELW1UoH4NGy7n7+3bQ==", + "type": "package", + "path": "sharpziplib/1.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/ICSharpCode.SharpZipLib.dll", + "lib/net45/ICSharpCode.SharpZipLib.pdb", + "lib/net45/ICSharpCode.SharpZipLib.xml", + "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll", + "lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb", + "lib/netstandard2.0/ICSharpCode.SharpZipLib.xml", + "sharpziplib.1.2.0.nupkg.sha512", + "sharpziplib.nuspec" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.5.0": { + "sha512": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==", + "type": "package", + "path": "system.buffers/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "lib/uap10.0.16299/_._", + "ref/net45/System.Buffers.dll", + "ref/net45/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "ref/uap10.0.16299/_._", + "system.buffers.4.5.0.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Collections.NonGeneric/4.3.0": { + "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "type": "package", + "path": "system.collections.nongeneric/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.3.0.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.3.0": { + "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "type": "package", + "path": "system.collections.specialized/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/netstandard1.3/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.xml", + "ref/netstandard1.3/de/System.Collections.Specialized.xml", + "ref/netstandard1.3/es/System.Collections.Specialized.xml", + "ref/netstandard1.3/fr/System.Collections.Specialized.xml", + "ref/netstandard1.3/it/System.Collections.Specialized.xml", + "ref/netstandard1.3/ja/System.Collections.Specialized.xml", + "ref/netstandard1.3/ko/System.Collections.Specialized.xml", + "ref/netstandard1.3/ru/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.specialized.4.3.0.nupkg.sha512", + "system.collections.specialized.nuspec" + ] + }, + "System.ComponentModel/4.3.0": { + "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "type": "package", + "path": "system.componentmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.3.0.nupkg.sha512", + "system.componentmodel.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.5.0": { + "sha512": "UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==", + "type": "package", + "path": "system.componentmodel.annotations/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/netstandard2.0/System.ComponentModel.Annotations.dll", + "lib/portable-net45+win8/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/net461/System.ComponentModel.Annotations.xml", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard2.0/System.ComponentModel.Annotations.dll", + "ref/netstandard2.0/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.4.5.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ComponentModel.Primitives/4.3.0": { + "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "type": "package", + "path": "system.componentmodel.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.Primitives.dll", + "lib/netstandard1.0/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.primitives.4.3.0.nupkg.sha512", + "system.componentmodel.primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "type": "package", + "path": "system.componentmodel.typeconverter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/net462/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/net462/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "system.componentmodel.typeconverter.nuspec" + ] + }, + "System.Configuration.ConfigurationManager/4.5.0": { + "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==", + "type": "package", + "path": "system.configuration.configurationmanager/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.xml", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.4.5.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Console/4.3.0": { + "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "type": "package", + "path": "system.console/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.3.0.nupkg.sha512", + "system.console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/4.7.1": { + "sha512": "j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.7.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/System.Diagnostics.DiagnosticSource.dll", + "lib/net45/System.Diagnostics.DiagnosticSource.xml", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.3.0": { + "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "type": "package", + "path": "system.diagnostics.tracesource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.TraceSource.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "system.diagnostics.tracesource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Drawing.Common/4.5.0": { + "sha512": "AiJFxxVPdeITstiRS5aAu8+8Dpf5NawTMoapZ53Gfirml24p7HIfhjmCRxdXnmmf3IUA3AX3CcW7G73CjWxW/Q==", + "type": "package", + "path": "system.drawing.common/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "system.drawing.common.4.5.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Dynamic.Runtime/4.3.0": { + "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "type": "package", + "path": "system.dynamic.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.3.0.nupkg.sha512", + "system.dynamic.runtime.nuspec" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Memory/4.5.1": { + "sha512": "sDJYJpGtTgx+23Ayu5euxG5mAXWdkDb4+b0rD0Cab0M1oQS9H0HXGPriKcqpXuiJDTV7fTp/d+fMDJmnr6sNvA==", + "type": "package", + "path": "system.memory/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "ref/netstandard1.1/System.Memory.dll", + "ref/netstandard1.1/System.Memory.xml", + "ref/netstandard2.0/System.Memory.dll", + "ref/netstandard2.0/System.Memory.xml", + "system.memory.4.5.1.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.CompilerServices.Unsafe/4.5.1": { + "sha512": "Zh8t8oqolRaFa9vmOZfdQm/qKejdqz0J9kr7o2Fu0vPeoH3BL1EOXipKWwkWtLT1JPzjByrF19fGuFlNbmPpiw==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.4.5.1.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Security.AccessControl/4.5.0": { + "sha512": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==", + "type": "package", + "path": "system.security.accesscontrol/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.5.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.3.0": { + "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "type": "package", + "path": "system.security.cryptography.cng/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "system.security.cryptography.cng.4.3.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==", + "type": "package", + "path": "system.security.cryptography.protecteddata/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Permissions/4.5.0": { + "sha512": "9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", + "type": "package", + "path": "system.security.permissions/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.4.5.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.5.0": { + "sha512": "U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==", + "type": "package", + "path": "system.security.principal.windows/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.5.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Encodings.Web/5.0.0": { + "sha512": "EEslUvHKll1ftizbn20mX3Ix/l4Ygk/bdJ2LY6/X6FlGaP0RIhKMo9nS6JIGnKKT6KBP2PGj6JC3B9/ZF6ErqQ==", + "type": "package", + "path": "system.text.encodings.web/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.0/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.0/System.Text.Encodings.Web.xml", + "lib/netstandard1.0/System.Text.Encodings.Web.dll", + "lib/netstandard1.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.1/System.Text.Encodings.Web.dll", + "lib/netstandard2.1/System.Text.Encodings.Web.xml", + "system.text.encodings.web.5.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Json/5.0.0": { + "sha512": "+luxMQNZ2WqeffBU7Ml6njIvxc8169NW2oU+ygNudXQGZiarjE7DOtN7bILiQjTZjkmwwRZGTtLzmdrSI/Ustw==", + "type": "package", + "path": "system.text.json/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/netcoreapp3.0/System.Text.Json.dll", + "lib/netcoreapp3.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.5.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.5.1": { + "sha512": "WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "ref/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "ref/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "ref/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.1.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.3.0": { + "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "type": "package", + "path": "system.xml.xmldocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.3.0.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + }, + "Domain.Shared/1.0.0": { + "type": "project", + "path": "../Domain.Shared/Domain.Shared.csproj", + "msbuildProject": "../Domain.Shared/Domain.Shared.csproj" + }, + "Infrastructure/1.0.0": { + "type": "project", + "path": "../Infrastructure/Infrastructure.csproj", + "msbuildProject": "../Infrastructure/Infrastructure.csproj" + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [ + "Domain.Shared >= 1.0.0", + "Infrastructure >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\NineFishes\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj", + "projectName": "Domain", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj" + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Domain/obj/project.nuget.cache b/Domain/obj/project.nuget.cache new file mode 100644 index 0000000..729c433 --- /dev/null +++ b/Domain/obj/project.nuget.cache @@ -0,0 +1,137 @@ +{ + "version": 2, + "dgSpecHash": "RVcQFAChm2VzRDYEOT5v9w2zDgVEMRl1rWVQbWr38EGqENM3H4iCGzzLz3HyPDmJ3I7xi5uPHNLyT3fPnjKMAw==", + "success": true, + "projectFilePath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj", + "expectedPackageFiles": [ + "C:\\Users\\NineFishes\\.nuget\\packages\\autofac\\6.2.0\\autofac.6.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\autofac.extensions.dependencyinjection\\7.1.0\\autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\autofac.extras.dynamicproxy\\6.0.0\\autofac.extras.dynamicproxy.6.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\castle.core\\4.4.0\\castle.core.4.4.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authentication.abstractions\\2.2.0\\microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authentication.core\\2.2.0\\microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authorization\\2.2.0\\microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authorization.policy\\2.2.0\\microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.hosting.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.hosting.server.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http\\2.2.0\\microsoft.aspnetcore.http.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http.abstractions\\2.2.0\\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http.extensions\\2.2.0\\microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.mvc.abstractions\\2.2.0\\microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.mvc.core\\2.2.5\\microsoft.aspnetcore.mvc.core.2.2.5.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.responsecaching.abstractions\\2.2.0\\microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.routing\\2.2.0\\microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.routing.abstractions\\2.2.0\\microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.webutilities\\2.2.0\\microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\2.2.0\\microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\2.2.0\\microsoft.extensions.dependencyinjection.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\2.2.0\\microsoft.extensions.dependencyinjection.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.dependencymodel\\5.0.0\\microsoft.extensions.dependencymodel.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\2.2.0\\microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\2.2.0\\microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\2.2.0\\microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.objectpool\\2.2.0\\microsoft.extensions.objectpool.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.options\\2.2.0\\microsoft.extensions.options.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.primitives\\2.2.0\\microsoft.extensions.primitives.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.net.http.headers\\2.2.0\\microsoft.net.http.headers.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.netcore.platforms\\2.0.0\\microsoft.netcore.platforms.2.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.win32.systemevents\\4.5.0\\microsoft.win32.systemevents.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\npoi\\2.5.3\\npoi.2.5.3.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\portable.bouncycastle\\1.8.6\\portable.bouncycastle.1.8.6.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\sharpziplib\\1.2.0\\sharpziplib.1.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.buffers\\4.5.0\\system.buffers.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel.annotations\\4.5.0\\system.componentmodel.annotations.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.configuration.configurationmanager\\4.5.0\\system.configuration.configurationmanager.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.7.1\\system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.tracesource\\4.3.0\\system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.drawing.common\\4.5.0\\system.drawing.common.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.memory\\4.5.1\\system.memory.4.5.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.5.1\\system.runtime.compilerservices.unsafe.4.5.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.accesscontrol\\4.5.0\\system.security.accesscontrol.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.5.0\\system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.permissions\\4.5.0\\system.security.permissions.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.principal.windows\\4.5.0\\system.security.principal.windows.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.encodings.web\\5.0.0\\system.text.encodings.web.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.json\\5.0.0\\system.text.json.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.1\\system.threading.tasks.extensions.4.5.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/EntityFramework.Mysql/Class1.cs b/EntityFramework.Mysql/Class1.cs new file mode 100644 index 0000000..ca82ff4 --- /dev/null +++ b/EntityFramework.Mysql/Class1.cs @@ -0,0 +1,8 @@ +using System; + +namespace EntityFramework.Mysql +{ + public class Class1 + { + } +} diff --git a/EntityFramework.Mysql/EntityFramework.Mysql.csproj b/EntityFramework.Mysql/EntityFramework.Mysql.csproj new file mode 100644 index 0000000..34a1ecd --- /dev/null +++ b/EntityFramework.Mysql/EntityFramework.Mysql.csproj @@ -0,0 +1,16 @@ + + + + netcoreapp3.1 + + + + + + + + + + + + diff --git a/EntityFramework.Mysql/FireStationDbContaxt.cs b/EntityFramework.Mysql/FireStationDbContaxt.cs new file mode 100644 index 0000000..7331e5b --- /dev/null +++ b/EntityFramework.Mysql/FireStationDbContaxt.cs @@ -0,0 +1,19 @@ +using Domain.Models.FileUploads; +using Domain.Models.Units; +using Microsoft.EntityFrameworkCore; +using System; +using System.Collections.Generic; +using System.Text; + +namespace EntityFramework.Mysql +{ + public class FireStationDbContext: DbContext + { + public DbSet UploadedFiles { get; set; } + public DbSet Units { get; set; } + protected override void OnModelCreating(ModelBuilder modelBuilder) + { + base.OnModelCreating(modelBuilder); + } + } +} diff --git a/EntityFramework/EntityFramework.csproj b/EntityFramework/EntityFramework.csproj new file mode 100644 index 0000000..712e8e0 --- /dev/null +++ b/EntityFramework/EntityFramework.csproj @@ -0,0 +1,13 @@ + + + + netcoreapp3.1 + + + + + + + + + diff --git a/EntityFramework/FireStationDbContext.cs b/EntityFramework/FireStationDbContext.cs new file mode 100644 index 0000000..bdb5cc5 --- /dev/null +++ b/EntityFramework/FireStationDbContext.cs @@ -0,0 +1,32 @@ + +using Domain.Models.FileUploads; +using Domain.Models.FireMen; +using Domain.Models.UnitEquipments; +using Domain.Models.Units; +using Domain.Models.Waters; +using Microsoft.EntityFrameworkCore; +using System; +using System.Collections.Generic; +using System.Text; + +namespace EntityFramework +{ + public class FireStationDbContext: DbContext + { + public FireStationDbContext(DbContextOptions options) : base(options) + { + + } + public DbSet UploadedFiles { get; set; } + public DbSet Units { get; set; } + public DbSet UnitCategories { get; set; } + public DbSet Water { get; set; } + public DbSet UnitEquipments { get; set; } + public DbSet FireMen { get; set; } + public DbSet FileUnits { get; set; } + protected override void OnModelCreating(ModelBuilder modelBuilder) + { + base.OnModelCreating(modelBuilder); + } + } +} diff --git a/EntityFramework/Migrations/20210711121234_init datatabl.Designer.cs b/EntityFramework/Migrations/20210711121234_init datatabl.Designer.cs new file mode 100644 index 0000000..243afe5 --- /dev/null +++ b/EntityFramework/Migrations/20210711121234_init datatabl.Designer.cs @@ -0,0 +1,407 @@ +// +using System; +using EntityFramework; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +namespace EntityFramework.Migrations +{ + [DbContext(typeof(FireStationDbContext))] + [Migration("20210711121234_init datatabl")] + partial class initdatatabl + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("Relational:MaxIdentifierLength", 64) + .HasAnnotation("ProductVersion", "5.0.7"); + + modelBuilder.Entity("Domain.Models.FileUploads.FileUnit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)"); + + b.Property("FileId") + .HasColumnType("char(36)"); + + b.Property("UnitId") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("FileUnits"); + }); + + modelBuilder.Entity("Domain.Models.FileUploads.UploadedFile", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)"); + + b.Property("ContentType") + .HasColumnType("longtext"); + + b.Property("DeleteBy") + .HasColumnType("char(36)"); + + b.Property("DeleteTime") + .HasColumnType("datetime(6)"); + + b.Property("Extension") + .HasColumnType("longtext"); + + b.Property("FileName") + .HasColumnType("longtext"); + + b.Property("IsDeleted") + .HasColumnType("tinyint(1)"); + + b.Property("OriginalName") + .HasColumnType("longtext"); + + b.Property("Path") + .HasColumnType("longtext"); + + b.Property("UploadedBy") + .HasColumnType("longtext"); + + b.Property("UploadedTime") + .HasColumnType("datetime(6)"); + + b.HasKey("Id"); + + b.ToTable("UploadedFiles"); + }); + + modelBuilder.Entity("Domain.Models.FireMen.FireMen", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("BirthDay") + .HasColumnType("longtext"); + + b.Property("Gender") + .HasColumnType("int"); + + b.Property("Imgs") + .HasColumnType("longtext"); + + b.Property("Job") + .HasColumnType("longtext"); + + b.Property("LicenceCode") + .HasColumnType("longtext") + .HasColumnName("licence_code"); + + b.Property("LicenceValidDate") + .HasColumnType("longtext") + .HasColumnName("licence_valid_date"); + + b.Property("Name") + .HasColumnType("longtext"); + + b.Property("OperatorId") + .HasColumnType("int") + .HasColumnName("operator_id"); + + b.Property("PhoneNumber") + .HasColumnType("longtext") + .HasColumnName("phone_num"); + + b.Property("Remark") + .HasColumnType("longtext"); + + b.Property("Sort") + .HasColumnType("smallint"); + + b.Property("TrainExp") + .HasColumnType("longtext") + .HasColumnName("train_exp"); + + b.Property("Uniacid") + .HasColumnType("int"); + + b.Property("UnitId") + .HasColumnType("int") + .HasColumnName("unit_id"); + + b.Property("UpdateTime") + .HasColumnType("datetime(6)") + .HasColumnName("upt_time"); + + b.HasKey("Id"); + + b.ToTable("unit_firemen"); + }); + + modelBuilder.Entity("Domain.Models.UnitEquipments.UnitEquipment", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("BuyTime") + .HasColumnType("longtext") + .HasColumnName("buy_time"); + + b.Property("Count") + .HasColumnType("int"); + + b.Property("Imgs") + .HasColumnType("longtext"); + + b.Property("Name") + .HasColumnType("longtext"); + + b.Property("OperatorId") + .HasColumnType("int") + .HasColumnName("operator_id"); + + b.Property("Remark") + .HasColumnType("longtext"); + + b.Property("StatusInfo") + .HasColumnType("longtext") + .HasColumnName("status_info"); + + b.Property("Type") + .HasColumnType("longtext"); + + b.Property("UintId") + .HasColumnType("int") + .HasColumnName("unit_id"); + + b.Property("Uniacid") + .HasColumnType("int"); + + b.Property("UpdateTime") + .HasColumnType("datetime(6)") + .HasColumnName("upt_time"); + + b.Property("model") + .HasColumnType("longtext"); + + b.HasKey("Id"); + + b.ToTable("unit_equipment"); + }); + + modelBuilder.Entity("Domain.Models.Units.Unit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("Attachments") + .HasColumnType("longtext"); + + b.Property("CategoryId") + .HasColumnType("int") + .HasColumnName("category_id"); + + b.Property("CoverArea") + .HasColumnType("int") + .HasColumnName("cover_area"); + + b.Property("GroupId") + .HasColumnType("int") + .HasColumnName("group_id"); + + b.Property("Imgs") + .HasColumnType("longtext"); + + b.Property("ImportantRating") + .HasColumnType("smallint") + .HasColumnName("important_rating"); + + b.Property("Latitude") + .HasColumnType("float"); + + b.Property("LocationName") + .HasColumnType("longtext") + .HasColumnName("location_name"); + + b.Property("Longitude") + .HasColumnType("float"); + + b.Property("Name") + .HasColumnType("longtext"); + + b.Property("OperatorId") + .HasColumnType("int") + .HasColumnName("operator_id"); + + b.Property("ParentUnitId") + .HasColumnType("int") + .HasColumnName("parent_unit_id"); + + b.Property("PeopleNum") + .HasColumnType("smallint") + .HasColumnName("people_num"); + + b.Property("PrincipalName") + .HasColumnType("longtext") + .HasColumnName("principal_name"); + + b.Property("PrincipalPhoneNum") + .HasColumnType("longtext") + .HasColumnName("principal_phone_num"); + + b.Property("Remark") + .HasColumnType("longtext"); + + b.Property("SuperviseLevel") + .HasColumnType("smallint") + .HasColumnName("supervise_level"); + + b.Property("Uniacid") + .HasColumnType("int"); + + b.Property("UpdateTime") + .HasColumnType("datetime(6)") + .HasColumnName("upt_time"); + + b.Property("UseArea") + .HasColumnType("int") + .HasColumnName("use_area"); + + b.HasKey("Id"); + + b.ToTable("unit"); + }); + + modelBuilder.Entity("Domain.Models.Units.UnitCategory", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("GroupId") + .HasColumnType("int") + .HasColumnName("group_id"); + + b.Property("Icon") + .HasColumnType("longtext"); + + b.Property("Name") + .HasColumnType("longtext"); + + b.Property("OperatorId") + .HasColumnType("int") + .HasColumnName("operator_id"); + + b.Property("Sort") + .HasColumnType("int"); + + b.Property("Uniacid") + .HasColumnType("int"); + + b.Property("UpdateTime") + .HasColumnType("datetime(6)") + .HasColumnName("upt_time"); + + b.HasKey("Id"); + + b.ToTable("unit_category"); + }); + + modelBuilder.Entity("Domain.Models.Waters.Water", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("CancelDate") + .HasColumnType("longtext") + .HasColumnName("cancel_date"); + + b.Property("CategoryId") + .HasColumnType("int") + .HasColumnName("category_id"); + + b.Property("ChangeDate") + .HasColumnType("longtext") + .HasColumnName("change_date"); + + b.Property("Code") + .HasColumnType("longtext"); + + b.Property("GroupId") + .HasColumnType("int") + .HasColumnName("group_id"); + + b.Property("GuanangType") + .HasColumnType("smallint") + .HasColumnName("guanwang_type"); + + b.Property("GuanwangDiam") + .HasColumnType("float") + .HasColumnName("guanwang_diam"); + + b.Property("GuanwangPressure") + .HasColumnType("float") + .HasColumnName("guanwang_pressure"); + + b.Property("Imgs") + .HasColumnType("longtext"); + + b.Property("InstallDate") + .HasColumnType("longtext") + .HasColumnName("install_date"); + + b.Property("Latitude") + .HasColumnType("float"); + + b.Property("LocationName") + .HasColumnType("longtext") + .HasColumnName("location_name"); + + b.Property("Longitude") + .HasColumnType("float"); + + b.Property("OperatorId") + .HasColumnType("int") + .HasColumnName("operator_id"); + + b.Property("PrincipalName") + .HasColumnType("longtext") + .HasColumnName("principal_name"); + + b.Property("PrincipalPhoneNum") + .HasColumnType("longtext") + .HasColumnName("principal_phone_num"); + + b.Property("Remark") + .HasColumnType("longtext"); + + b.Property("Status") + .HasColumnType("smallint"); + + b.Property("SupplyCompany") + .HasColumnType("longtext") + .HasColumnName("supply_company"); + + b.Property("Type") + .HasColumnType("smallint"); + + b.Property("Uniacid") + .HasColumnType("int"); + + b.Property("UpdateTime") + .HasColumnType("datetime(6)") + .HasColumnName("upt_time"); + + b.HasKey("Id"); + + b.ToTable("water"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/EntityFramework/Migrations/20210711121234_init datatabl.cs b/EntityFramework/Migrations/20210711121234_init datatabl.cs new file mode 100644 index 0000000..5d0a38f --- /dev/null +++ b/EntityFramework/Migrations/20210711121234_init datatabl.cs @@ -0,0 +1,257 @@ +using System; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; + +namespace EntityFramework.Migrations +{ + public partial class initdatatabl : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AlterDatabase() + .Annotation("MySql:CharSet", "utf8mb4"); + + migrationBuilder.CreateTable( + name: "FileUnits", + columns: table => new + { + Id = table.Column(type: "char(36)", nullable: false, collation: "ascii_general_ci"), + FileId = table.Column(type: "char(36)", nullable: false, collation: "ascii_general_ci"), + UnitId = table.Column(type: "int", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_FileUnits", x => x.Id); + }) + .Annotation("MySql:CharSet", "utf8mb4"); + + migrationBuilder.CreateTable( + name: "unit", + columns: table => new + { + Id = table.Column(type: "int", nullable: false) + .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn), + Uniacid = table.Column(type: "int", nullable: false), + group_id = table.Column(type: "int", nullable: false), + category_id = table.Column(type: "int", nullable: false), + Latitude = table.Column(type: "float", nullable: false), + Longitude = table.Column(type: "float", nullable: false), + location_name = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + Name = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + important_rating = table.Column(type: "smallint", nullable: false), + supervise_level = table.Column(type: "smallint", nullable: false), + parent_unit_id = table.Column(type: "int", nullable: false), + principal_name = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + principal_phone_num = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + people_num = table.Column(type: "smallint", nullable: false), + cover_area = table.Column(type: "int", nullable: false), + use_area = table.Column(type: "int", nullable: false), + Imgs = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + Remark = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + Attachments = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + operator_id = table.Column(type: "int", nullable: false), + upt_time = table.Column(type: "datetime(6)", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_unit", x => x.Id); + }) + .Annotation("MySql:CharSet", "utf8mb4"); + + migrationBuilder.CreateTable( + name: "unit_category", + columns: table => new + { + Id = table.Column(type: "int", nullable: false) + .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn), + Uniacid = table.Column(type: "int", nullable: false), + group_id = table.Column(type: "int", nullable: false), + Sort = table.Column(type: "int", nullable: false), + Name = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + Icon = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + operator_id = table.Column(type: "int", nullable: false), + upt_time = table.Column(type: "datetime(6)", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_unit_category", x => x.Id); + }) + .Annotation("MySql:CharSet", "utf8mb4"); + + migrationBuilder.CreateTable( + name: "unit_equipment", + columns: table => new + { + Id = table.Column(type: "int", nullable: false) + .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn), + Uniacid = table.Column(type: "int", nullable: false), + unit_id = table.Column(type: "int", nullable: false), + Name = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + Count = table.Column(type: "int", nullable: false), + status_info = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + Type = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + model = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + buy_time = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + Imgs = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + Remark = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + operator_id = table.Column(type: "int", nullable: false), + upt_time = table.Column(type: "datetime(6)", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_unit_equipment", x => x.Id); + }) + .Annotation("MySql:CharSet", "utf8mb4"); + + migrationBuilder.CreateTable( + name: "unit_firemen", + columns: table => new + { + Id = table.Column(type: "int", nullable: false) + .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn), + Uniacid = table.Column(type: "int", nullable: false), + unit_id = table.Column(type: "int", nullable: false), + Sort = table.Column(type: "smallint", nullable: false), + Name = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + Gender = table.Column(type: "int", nullable: false), + BirthDay = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + Job = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + phone_num = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + train_exp = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + licence_code = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + licence_valid_date = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + Imgs = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + Remark = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + operator_id = table.Column(type: "int", nullable: false), + upt_time = table.Column(type: "datetime(6)", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_unit_firemen", x => x.Id); + }) + .Annotation("MySql:CharSet", "utf8mb4"); + + migrationBuilder.CreateTable( + name: "UploadedFiles", + columns: table => new + { + Id = table.Column(type: "char(36)", nullable: false, collation: "ascii_general_ci"), + OriginalName = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + FileName = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + ContentType = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + Extension = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + Path = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + UploadedTime = table.Column(type: "datetime(6)", nullable: false), + UploadedBy = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + IsDeleted = table.Column(type: "tinyint(1)", nullable: false), + DeleteBy = table.Column(type: "char(36)", nullable: false, collation: "ascii_general_ci"), + DeleteTime = table.Column(type: "datetime(6)", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_UploadedFiles", x => x.Id); + }) + .Annotation("MySql:CharSet", "utf8mb4"); + + migrationBuilder.CreateTable( + name: "water", + columns: table => new + { + Id = table.Column(type: "int", nullable: false) + .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn), + Uniacid = table.Column(type: "int", nullable: false), + group_id = table.Column(type: "int", nullable: false), + Latitude = table.Column(type: "float", nullable: false), + Longitude = table.Column(type: "float", nullable: false), + location_name = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + category_id = table.Column(type: "int", nullable: false), + Type = table.Column(type: "smallint", nullable: false), + Code = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + Status = table.Column(type: "smallint", nullable: false), + guanwang_type = table.Column(type: "smallint", nullable: false), + guanwang_diam = table.Column(type: "float", nullable: false), + guanwang_pressure = table.Column(type: "float", nullable: false), + supply_company = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + principal_name = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + principal_phone_num = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + install_date = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + change_date = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + cancel_date = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + Imgs = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + Remark = table.Column(type: "longtext", nullable: true) + .Annotation("MySql:CharSet", "utf8mb4"), + operator_id = table.Column(type: "int", nullable: false), + upt_time = table.Column(type: "datetime(6)", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_water", x => x.Id); + }) + .Annotation("MySql:CharSet", "utf8mb4"); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "FileUnits"); + + migrationBuilder.DropTable( + name: "unit"); + + migrationBuilder.DropTable( + name: "unit_category"); + + migrationBuilder.DropTable( + name: "unit_equipment"); + + migrationBuilder.DropTable( + name: "unit_firemen"); + + migrationBuilder.DropTable( + name: "UploadedFiles"); + + migrationBuilder.DropTable( + name: "water"); + } + } +} diff --git a/EntityFramework/Migrations/20210712142718_adduniacid_and_groupid.Designer.cs b/EntityFramework/Migrations/20210712142718_adduniacid_and_groupid.Designer.cs new file mode 100644 index 0000000..a97e8f9 --- /dev/null +++ b/EntityFramework/Migrations/20210712142718_adduniacid_and_groupid.Designer.cs @@ -0,0 +1,414 @@ +// +using System; +using EntityFramework; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +namespace EntityFramework.Migrations +{ + [DbContext(typeof(FireStationDbContext))] + [Migration("20210712142718_adduniacid_and_groupid")] + partial class adduniacid_and_groupid + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("Relational:MaxIdentifierLength", 64) + .HasAnnotation("ProductVersion", "5.0.7"); + + modelBuilder.Entity("Domain.Models.FileUploads.FileUnit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)"); + + b.Property("FileId") + .HasColumnType("char(36)"); + + b.Property("GroupId") + .HasColumnType("int") + .HasColumnName("group_id"); + + b.Property("Uniacid") + .HasColumnType("int"); + + b.Property("UnitId") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("FileUnits"); + }); + + modelBuilder.Entity("Domain.Models.FileUploads.UploadedFile", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)"); + + b.Property("ContentType") + .HasColumnType("longtext"); + + b.Property("DeleteBy") + .HasColumnType("char(36)"); + + b.Property("DeleteTime") + .HasColumnType("datetime(6)"); + + b.Property("Extension") + .HasColumnType("longtext"); + + b.Property("FileName") + .HasColumnType("longtext"); + + b.Property("IsDeleted") + .HasColumnType("tinyint(1)"); + + b.Property("OriginalName") + .HasColumnType("longtext"); + + b.Property("Path") + .HasColumnType("longtext"); + + b.Property("UploadedBy") + .HasColumnType("longtext"); + + b.Property("UploadedTime") + .HasColumnType("datetime(6)"); + + b.HasKey("Id"); + + b.ToTable("UploadedFiles"); + }); + + modelBuilder.Entity("Domain.Models.FireMen.FireMen", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("BirthDay") + .HasColumnType("longtext"); + + b.Property("Gender") + .HasColumnType("int"); + + b.Property("Imgs") + .HasColumnType("longtext"); + + b.Property("Job") + .HasColumnType("longtext"); + + b.Property("LicenceCode") + .HasColumnType("longtext") + .HasColumnName("licence_code"); + + b.Property("LicenceValidDate") + .HasColumnType("longtext") + .HasColumnName("licence_valid_date"); + + b.Property("Name") + .HasColumnType("longtext"); + + b.Property("OperatorId") + .HasColumnType("int") + .HasColumnName("operator_id"); + + b.Property("PhoneNumber") + .HasColumnType("longtext") + .HasColumnName("phone_num"); + + b.Property("Remark") + .HasColumnType("longtext"); + + b.Property("Sort") + .HasColumnType("smallint"); + + b.Property("TrainExp") + .HasColumnType("longtext") + .HasColumnName("train_exp"); + + b.Property("Uniacid") + .HasColumnType("int"); + + b.Property("UnitId") + .HasColumnType("int") + .HasColumnName("unit_id"); + + b.Property("UpdateTime") + .HasColumnType("datetime(6)") + .HasColumnName("upt_time"); + + b.HasKey("Id"); + + b.ToTable("unit_firemen"); + }); + + modelBuilder.Entity("Domain.Models.UnitEquipments.UnitEquipment", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("BuyTime") + .HasColumnType("longtext") + .HasColumnName("buy_time"); + + b.Property("Count") + .HasColumnType("int"); + + b.Property("Imgs") + .HasColumnType("longtext"); + + b.Property("Name") + .HasColumnType("longtext"); + + b.Property("OperatorId") + .HasColumnType("int") + .HasColumnName("operator_id"); + + b.Property("Remark") + .HasColumnType("longtext"); + + b.Property("StatusInfo") + .HasColumnType("longtext") + .HasColumnName("status_info"); + + b.Property("Type") + .HasColumnType("longtext"); + + b.Property("Uniacid") + .HasColumnType("int"); + + b.Property("UnitId") + .HasColumnType("int") + .HasColumnName("unit_id"); + + b.Property("UpdateTime") + .HasColumnType("datetime(6)") + .HasColumnName("upt_time"); + + b.Property("model") + .HasColumnType("longtext"); + + b.HasKey("Id"); + + b.ToTable("unit_equipment"); + }); + + modelBuilder.Entity("Domain.Models.Units.Unit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("Attachments") + .HasColumnType("longtext"); + + b.Property("CategoryId") + .HasColumnType("int") + .HasColumnName("category_id"); + + b.Property("CoverArea") + .HasColumnType("int") + .HasColumnName("cover_area"); + + b.Property("GroupId") + .HasColumnType("int") + .HasColumnName("group_id"); + + b.Property("Imgs") + .HasColumnType("longtext"); + + b.Property("ImportantRating") + .HasColumnType("smallint") + .HasColumnName("important_rating"); + + b.Property("Latitude") + .HasColumnType("float"); + + b.Property("LocationName") + .HasColumnType("longtext") + .HasColumnName("location_name"); + + b.Property("Longitude") + .HasColumnType("float"); + + b.Property("Name") + .HasColumnType("longtext"); + + b.Property("OperatorId") + .HasColumnType("int") + .HasColumnName("operator_id"); + + b.Property("ParentUnitId") + .HasColumnType("int") + .HasColumnName("parent_unit_id"); + + b.Property("PeopleNum") + .HasColumnType("smallint") + .HasColumnName("people_num"); + + b.Property("PrincipalName") + .HasColumnType("longtext") + .HasColumnName("principal_name"); + + b.Property("PrincipalPhoneNum") + .HasColumnType("longtext") + .HasColumnName("principal_phone_num"); + + b.Property("Remark") + .HasColumnType("longtext"); + + b.Property("SuperviseLevel") + .HasColumnType("smallint") + .HasColumnName("supervise_level"); + + b.Property("Uniacid") + .HasColumnType("int"); + + b.Property("UpdateTime") + .HasColumnType("datetime(6)") + .HasColumnName("upt_time"); + + b.Property("UseArea") + .HasColumnType("int") + .HasColumnName("use_area"); + + b.HasKey("Id"); + + b.ToTable("unit"); + }); + + modelBuilder.Entity("Domain.Models.Units.UnitCategory", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("GroupId") + .HasColumnType("int") + .HasColumnName("group_id"); + + b.Property("Icon") + .HasColumnType("longtext"); + + b.Property("Name") + .HasColumnType("longtext"); + + b.Property("OperatorId") + .HasColumnType("int") + .HasColumnName("operator_id"); + + b.Property("Sort") + .HasColumnType("int"); + + b.Property("Uniacid") + .HasColumnType("int"); + + b.Property("UpdateTime") + .HasColumnType("datetime(6)") + .HasColumnName("upt_time"); + + b.HasKey("Id"); + + b.ToTable("unit_category"); + }); + + modelBuilder.Entity("Domain.Models.Waters.Water", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("CancelDate") + .HasColumnType("longtext") + .HasColumnName("cancel_date"); + + b.Property("CategoryId") + .HasColumnType("int") + .HasColumnName("category_id"); + + b.Property("ChangeDate") + .HasColumnType("longtext") + .HasColumnName("change_date"); + + b.Property("Code") + .HasColumnType("longtext"); + + b.Property("GroupId") + .HasColumnType("int") + .HasColumnName("group_id"); + + b.Property("GuanangType") + .HasColumnType("smallint") + .HasColumnName("guanwang_type"); + + b.Property("GuanwangDiam") + .HasColumnType("float") + .HasColumnName("guanwang_diam"); + + b.Property("GuanwangPressure") + .HasColumnType("float") + .HasColumnName("guanwang_pressure"); + + b.Property("Imgs") + .HasColumnType("longtext"); + + b.Property("InstallDate") + .HasColumnType("longtext") + .HasColumnName("install_date"); + + b.Property("Latitude") + .HasColumnType("float"); + + b.Property("LocationName") + .HasColumnType("longtext") + .HasColumnName("location_name"); + + b.Property("Longitude") + .HasColumnType("float"); + + b.Property("OperatorId") + .HasColumnType("int") + .HasColumnName("operator_id"); + + b.Property("PrincipalName") + .HasColumnType("longtext") + .HasColumnName("principal_name"); + + b.Property("PrincipalPhoneNum") + .HasColumnType("longtext") + .HasColumnName("principal_phone_num"); + + b.Property("Remark") + .HasColumnType("longtext"); + + b.Property("Status") + .HasColumnType("smallint"); + + b.Property("SupplyCompany") + .HasColumnType("longtext") + .HasColumnName("supply_company"); + + b.Property("Type") + .HasColumnType("smallint"); + + b.Property("Uniacid") + .HasColumnType("int"); + + b.Property("UpdateTime") + .HasColumnType("datetime(6)") + .HasColumnName("upt_time"); + + b.HasKey("Id"); + + b.ToTable("water"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/EntityFramework/Migrations/20210712142718_adduniacid_and_groupid.cs b/EntityFramework/Migrations/20210712142718_adduniacid_and_groupid.cs new file mode 100644 index 0000000..49b1944 --- /dev/null +++ b/EntityFramework/Migrations/20210712142718_adduniacid_and_groupid.cs @@ -0,0 +1,35 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +namespace EntityFramework.Migrations +{ + public partial class adduniacid_and_groupid : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "Uniacid", + table: "FileUnits", + type: "int", + nullable: false, + defaultValue: 0); + + migrationBuilder.AddColumn( + name: "group_id", + table: "FileUnits", + type: "int", + nullable: false, + defaultValue: 0); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "Uniacid", + table: "FileUnits"); + + migrationBuilder.DropColumn( + name: "group_id", + table: "FileUnits"); + } + } +} diff --git a/EntityFramework/Migrations/FireStationDbContextModelSnapshot.cs b/EntityFramework/Migrations/FireStationDbContextModelSnapshot.cs new file mode 100644 index 0000000..5752663 --- /dev/null +++ b/EntityFramework/Migrations/FireStationDbContextModelSnapshot.cs @@ -0,0 +1,412 @@ +// +using System; +using EntityFramework; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +namespace EntityFramework.Migrations +{ + [DbContext(typeof(FireStationDbContext))] + partial class FireStationDbContextModelSnapshot : ModelSnapshot + { + protected override void BuildModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("Relational:MaxIdentifierLength", 64) + .HasAnnotation("ProductVersion", "5.0.7"); + + modelBuilder.Entity("Domain.Models.FileUploads.FileUnit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)"); + + b.Property("FileId") + .HasColumnType("char(36)"); + + b.Property("GroupId") + .HasColumnType("int") + .HasColumnName("group_id"); + + b.Property("Uniacid") + .HasColumnType("int"); + + b.Property("UnitId") + .HasColumnType("int"); + + b.HasKey("Id"); + + b.ToTable("FileUnits"); + }); + + modelBuilder.Entity("Domain.Models.FileUploads.UploadedFile", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("char(36)"); + + b.Property("ContentType") + .HasColumnType("longtext"); + + b.Property("DeleteBy") + .HasColumnType("char(36)"); + + b.Property("DeleteTime") + .HasColumnType("datetime(6)"); + + b.Property("Extension") + .HasColumnType("longtext"); + + b.Property("FileName") + .HasColumnType("longtext"); + + b.Property("IsDeleted") + .HasColumnType("tinyint(1)"); + + b.Property("OriginalName") + .HasColumnType("longtext"); + + b.Property("Path") + .HasColumnType("longtext"); + + b.Property("UploadedBy") + .HasColumnType("longtext"); + + b.Property("UploadedTime") + .HasColumnType("datetime(6)"); + + b.HasKey("Id"); + + b.ToTable("UploadedFiles"); + }); + + modelBuilder.Entity("Domain.Models.FireMen.FireMen", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("BirthDay") + .HasColumnType("longtext"); + + b.Property("Gender") + .HasColumnType("int"); + + b.Property("Imgs") + .HasColumnType("longtext"); + + b.Property("Job") + .HasColumnType("longtext"); + + b.Property("LicenceCode") + .HasColumnType("longtext") + .HasColumnName("licence_code"); + + b.Property("LicenceValidDate") + .HasColumnType("longtext") + .HasColumnName("licence_valid_date"); + + b.Property("Name") + .HasColumnType("longtext"); + + b.Property("OperatorId") + .HasColumnType("int") + .HasColumnName("operator_id"); + + b.Property("PhoneNumber") + .HasColumnType("longtext") + .HasColumnName("phone_num"); + + b.Property("Remark") + .HasColumnType("longtext"); + + b.Property("Sort") + .HasColumnType("smallint"); + + b.Property("TrainExp") + .HasColumnType("longtext") + .HasColumnName("train_exp"); + + b.Property("Uniacid") + .HasColumnType("int"); + + b.Property("UnitId") + .HasColumnType("int") + .HasColumnName("unit_id"); + + b.Property("UpdateTime") + .HasColumnType("datetime(6)") + .HasColumnName("upt_time"); + + b.HasKey("Id"); + + b.ToTable("unit_firemen"); + }); + + modelBuilder.Entity("Domain.Models.UnitEquipments.UnitEquipment", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("BuyTime") + .HasColumnType("longtext") + .HasColumnName("buy_time"); + + b.Property("Count") + .HasColumnType("int"); + + b.Property("Imgs") + .HasColumnType("longtext"); + + b.Property("Name") + .HasColumnType("longtext"); + + b.Property("OperatorId") + .HasColumnType("int") + .HasColumnName("operator_id"); + + b.Property("Remark") + .HasColumnType("longtext"); + + b.Property("StatusInfo") + .HasColumnType("longtext") + .HasColumnName("status_info"); + + b.Property("Type") + .HasColumnType("longtext"); + + b.Property("Uniacid") + .HasColumnType("int"); + + b.Property("UnitId") + .HasColumnType("int") + .HasColumnName("unit_id"); + + b.Property("UpdateTime") + .HasColumnType("datetime(6)") + .HasColumnName("upt_time"); + + b.Property("model") + .HasColumnType("longtext"); + + b.HasKey("Id"); + + b.ToTable("unit_equipment"); + }); + + modelBuilder.Entity("Domain.Models.Units.Unit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("Attachments") + .HasColumnType("longtext"); + + b.Property("CategoryId") + .HasColumnType("int") + .HasColumnName("category_id"); + + b.Property("CoverArea") + .HasColumnType("int") + .HasColumnName("cover_area"); + + b.Property("GroupId") + .HasColumnType("int") + .HasColumnName("group_id"); + + b.Property("Imgs") + .HasColumnType("longtext"); + + b.Property("ImportantRating") + .HasColumnType("smallint") + .HasColumnName("important_rating"); + + b.Property("Latitude") + .HasColumnType("float"); + + b.Property("LocationName") + .HasColumnType("longtext") + .HasColumnName("location_name"); + + b.Property("Longitude") + .HasColumnType("float"); + + b.Property("Name") + .HasColumnType("longtext"); + + b.Property("OperatorId") + .HasColumnType("int") + .HasColumnName("operator_id"); + + b.Property("ParentUnitId") + .HasColumnType("int") + .HasColumnName("parent_unit_id"); + + b.Property("PeopleNum") + .HasColumnType("smallint") + .HasColumnName("people_num"); + + b.Property("PrincipalName") + .HasColumnType("longtext") + .HasColumnName("principal_name"); + + b.Property("PrincipalPhoneNum") + .HasColumnType("longtext") + .HasColumnName("principal_phone_num"); + + b.Property("Remark") + .HasColumnType("longtext"); + + b.Property("SuperviseLevel") + .HasColumnType("smallint") + .HasColumnName("supervise_level"); + + b.Property("Uniacid") + .HasColumnType("int"); + + b.Property("UpdateTime") + .HasColumnType("datetime(6)") + .HasColumnName("upt_time"); + + b.Property("UseArea") + .HasColumnType("int") + .HasColumnName("use_area"); + + b.HasKey("Id"); + + b.ToTable("unit"); + }); + + modelBuilder.Entity("Domain.Models.Units.UnitCategory", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("GroupId") + .HasColumnType("int") + .HasColumnName("group_id"); + + b.Property("Icon") + .HasColumnType("longtext"); + + b.Property("Name") + .HasColumnType("longtext"); + + b.Property("OperatorId") + .HasColumnType("int") + .HasColumnName("operator_id"); + + b.Property("Sort") + .HasColumnType("int"); + + b.Property("Uniacid") + .HasColumnType("int"); + + b.Property("UpdateTime") + .HasColumnType("datetime(6)") + .HasColumnName("upt_time"); + + b.HasKey("Id"); + + b.ToTable("unit_category"); + }); + + modelBuilder.Entity("Domain.Models.Waters.Water", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("CancelDate") + .HasColumnType("longtext") + .HasColumnName("cancel_date"); + + b.Property("CategoryId") + .HasColumnType("int") + .HasColumnName("category_id"); + + b.Property("ChangeDate") + .HasColumnType("longtext") + .HasColumnName("change_date"); + + b.Property("Code") + .HasColumnType("longtext"); + + b.Property("GroupId") + .HasColumnType("int") + .HasColumnName("group_id"); + + b.Property("GuanangType") + .HasColumnType("smallint") + .HasColumnName("guanwang_type"); + + b.Property("GuanwangDiam") + .HasColumnType("float") + .HasColumnName("guanwang_diam"); + + b.Property("GuanwangPressure") + .HasColumnType("float") + .HasColumnName("guanwang_pressure"); + + b.Property("Imgs") + .HasColumnType("longtext"); + + b.Property("InstallDate") + .HasColumnType("longtext") + .HasColumnName("install_date"); + + b.Property("Latitude") + .HasColumnType("float"); + + b.Property("LocationName") + .HasColumnType("longtext") + .HasColumnName("location_name"); + + b.Property("Longitude") + .HasColumnType("float"); + + b.Property("OperatorId") + .HasColumnType("int") + .HasColumnName("operator_id"); + + b.Property("PrincipalName") + .HasColumnType("longtext") + .HasColumnName("principal_name"); + + b.Property("PrincipalPhoneNum") + .HasColumnType("longtext") + .HasColumnName("principal_phone_num"); + + b.Property("Remark") + .HasColumnType("longtext"); + + b.Property("Status") + .HasColumnType("smallint"); + + b.Property("SupplyCompany") + .HasColumnType("longtext") + .HasColumnName("supply_company"); + + b.Property("Type") + .HasColumnType("smallint"); + + b.Property("Uniacid") + .HasColumnType("int"); + + b.Property("UpdateTime") + .HasColumnType("datetime(6)") + .HasColumnName("upt_time"); + + b.HasKey("Id"); + + b.ToTable("water"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/EntityFramework/ServiceExtension.cs b/EntityFramework/ServiceExtension.cs new file mode 100644 index 0000000..e050e38 --- /dev/null +++ b/EntityFramework/ServiceExtension.cs @@ -0,0 +1,22 @@ +using Microsoft.EntityFrameworkCore; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using System; +using System.Collections.Generic; +using System.Text; + +namespace EntityFramework +{ + public static class ServiceExtension + { + public static IServiceCollection AddDatabaseContext(this IServiceCollection services,IConfiguration configuration ) + { + services.AddDbContext(options => { + var connectString = configuration.GetConnectionString("default"); + + options.UseMySql(connectString, ServerVersion.AutoDetect(connectString)); + }); + return services; + } + } +} diff --git a/EntityFramework/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/EntityFramework/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs new file mode 100644 index 0000000..ad8dfe1 --- /dev/null +++ b/EntityFramework/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] diff --git a/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.AssemblyInfo.cs b/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.AssemblyInfo.cs new file mode 100644 index 0000000..ed6d14f --- /dev/null +++ b/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("EntityFramework")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("EntityFramework")] +[assembly: System.Reflection.AssemblyTitleAttribute("EntityFramework")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.AssemblyInfoInputs.cache b/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.AssemblyInfoInputs.cache new file mode 100644 index 0000000..0b83e5d --- /dev/null +++ b/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +33f81457ab9652503f41b94a3507827ca7a7724b diff --git a/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.GeneratedMSBuildEditorConfig.editorconfig b/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9190713 --- /dev/null +++ b/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,3 @@ +is_global = true +build_property.RootNamespace = EntityFramework +build_property.ProjectDir = C:\Users\NineFishes\Desktop\FireStaionDocuments-master\EntityFramework\ diff --git a/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.assets.cache b/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.assets.cache new file mode 100644 index 0000000..fb66355 Binary files /dev/null and b/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.assets.cache differ diff --git a/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.csproj.AssemblyReference.cache b/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.csproj.AssemblyReference.cache new file mode 100644 index 0000000..5c3df0e Binary files /dev/null and b/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.csproj.AssemblyReference.cache differ diff --git a/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.csproj.BuildWithSkipAnalyzers b/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.csproj.CopyComplete b/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.csproj.CoreCompileInputs.cache b/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..3d3d9ce --- /dev/null +++ b/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +ede43811f9ee6fc51dd3a20548cf56c41fba8216 diff --git a/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.csproj.FileListAbsolute.txt b/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..a8077a5 --- /dev/null +++ b/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.csproj.FileListAbsolute.txt @@ -0,0 +1,17 @@ +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\EntityFramework\bin\Debug\netcoreapp3.1\EntityFramework.deps.json +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\EntityFramework\bin\Debug\netcoreapp3.1\EntityFramework.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\EntityFramework\bin\Debug\netcoreapp3.1\EntityFramework.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\EntityFramework\bin\Debug\netcoreapp3.1\Domain.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\EntityFramework\bin\Debug\netcoreapp3.1\Domain.Shared.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\EntityFramework\bin\Debug\netcoreapp3.1\Infrastructure.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\EntityFramework\bin\Debug\netcoreapp3.1\Domain.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\EntityFramework\bin\Debug\netcoreapp3.1\Domain.Shared.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\EntityFramework\bin\Debug\netcoreapp3.1\Infrastructure.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\EntityFramework\obj\Debug\netcoreapp3.1\EntityFramework.csproj.AssemblyReference.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\EntityFramework\obj\Debug\netcoreapp3.1\EntityFramework.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\EntityFramework\obj\Debug\netcoreapp3.1\EntityFramework.AssemblyInfoInputs.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\EntityFramework\obj\Debug\netcoreapp3.1\EntityFramework.AssemblyInfo.cs +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\EntityFramework\obj\Debug\netcoreapp3.1\EntityFramework.csproj.CoreCompileInputs.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\EntityFramework\obj\Debug\netcoreapp3.1\EntityFramework.csproj.CopyComplete +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\EntityFramework\obj\Debug\netcoreapp3.1\EntityFramework.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\EntityFramework\obj\Debug\netcoreapp3.1\EntityFramework.pdb diff --git a/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.dll b/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.dll new file mode 100644 index 0000000..8a97172 Binary files /dev/null and b/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.dll differ diff --git a/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.pdb b/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.pdb new file mode 100644 index 0000000..4b284a0 Binary files /dev/null and b/EntityFramework/obj/Debug/netcoreapp3.1/EntityFramework.pdb differ diff --git a/EntityFramework/obj/EntityFramework.csproj.nuget.dgspec.json b/EntityFramework/obj/EntityFramework.csproj.nuget.dgspec.json new file mode 100644 index 0000000..27dfd00 --- /dev/null +++ b/EntityFramework/obj/EntityFramework.csproj.nuget.dgspec.json @@ -0,0 +1,275 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj": {} + }, + "projects": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj", + "projectName": "Domain.Shared", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj", + "projectName": "Domain", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj" + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj", + "projectName": "EntityFramework", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "dependencies": { + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[5.0.7, )" + }, + "Pomelo.EntityFrameworkCore.MySql": { + "target": "Package", + "version": "[5.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj", + "projectName": "Infrastructure", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "dependencies": { + "Autofac": { + "target": "Package", + "version": "[6.2.0, )" + }, + "Autofac.Extensions.DependencyInjection": { + "target": "Package", + "version": "[7.1.0, )" + }, + "Autofac.Extras.DynamicProxy": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.AspNetCore.Mvc.Core": { + "target": "Package", + "version": "[2.2.5, )" + }, + "Microsoft.Extensions.DependencyModel": { + "target": "Package", + "version": "[5.0.0, )" + }, + "NPOI": { + "target": "Package", + "version": "[2.5.3, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/EntityFramework/obj/EntityFramework.csproj.nuget.g.props b/EntityFramework/obj/EntityFramework.csproj.nuget.g.props new file mode 100644 index 0000000..1168ab9 --- /dev/null +++ b/EntityFramework/obj/EntityFramework.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\NineFishes\.nuget\packages\ + PackageReference + 6.1.0 + + + + + \ No newline at end of file diff --git a/EntityFramework/obj/EntityFramework.csproj.nuget.g.targets b/EntityFramework/obj/EntityFramework.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/EntityFramework/obj/EntityFramework.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/EntityFramework/obj/project.assets.json b/EntityFramework/obj/project.assets.json new file mode 100644 index 0000000..2404229 --- /dev/null +++ b/EntityFramework/obj/project.assets.json @@ -0,0 +1,7048 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": { + "Autofac/6.2.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "4.7.1" + }, + "compile": { + "lib/netstandard2.1/Autofac.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Autofac.dll": {} + } + }, + "Autofac.Extensions.DependencyInjection/7.1.0": { + "type": "package", + "dependencies": { + "Autofac": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {} + } + }, + "Autofac.Extras.DynamicProxy/6.0.0": { + "type": "package", + "dependencies": { + "Autofac": "6.0.0", + "Castle.Core": "4.4.0" + }, + "compile": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {} + } + }, + "Castle.Core/4.4.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Castle.Core.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.Core/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Authorization": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {} + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Core/2.2.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Core": "2.2.0", + "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Mvc.Abstractions": "2.2.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Routing": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.Extensions.DependencyModel": "2.1.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Diagnostics.DiagnosticSource": "4.5.0", + "System.Threading.Tasks.Extensions": "4.5.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {} + } + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {} + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {} + } + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {} + } + }, + "Microsoft.EntityFrameworkCore/5.0.7": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "5.0.7", + "Microsoft.EntityFrameworkCore.Analyzers": "5.0.7", + "Microsoft.Extensions.Caching.Memory": "5.0.0", + "Microsoft.Extensions.DependencyInjection": "5.0.1", + "Microsoft.Extensions.Logging": "5.0.0", + "System.Collections.Immutable": "5.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Diagnostics.DiagnosticSource": "5.0.1" + }, + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/5.0.7": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "5.0.7", + "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {} + } + }, + "Microsoft.Extensions.Caching.Abstractions/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Caching.Memory/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "5.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0", + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/5.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DependencyModel/5.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "5.0.0", + "System.Text.Json": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "5.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0", + "System.Diagnostics.DiagnosticSource": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {} + } + }, + "Microsoft.Extensions.Options/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Primitives/5.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.SystemEvents/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MySqlConnector/1.3.10": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/MySqlConnector.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/MySqlConnector.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "NPOI/2.5.3": { + "type": "package", + "dependencies": { + "Portable.BouncyCastle": "1.8.6", + "SharpZipLib": "[1.2.0]", + "System.Configuration.ConfigurationManager": "4.5.0", + "System.Drawing.Common": "4.5.0" + }, + "compile": { + "lib/netstandard2.1/NPOI.OOXML.dll": {}, + "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {}, + "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {}, + "lib/netstandard2.1/NPOI.dll": {} + }, + "runtime": { + "lib/netstandard2.1/NPOI.OOXML.dll": {}, + "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {}, + "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {}, + "lib/netstandard2.1/NPOI.dll": {} + } + }, + "Pomelo.EntityFrameworkCore.MySql/5.0.1": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "[5.0.7, 6.0.0)", + "Microsoft.Extensions.DependencyInjection": "5.0.1", + "MySqlConnector": "1.3.10" + }, + "compile": { + "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {} + } + }, + "Portable.BouncyCastle/1.8.6": { + "type": "package", + "compile": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + }, + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "SharpZipLib/1.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {} + }, + "runtime": { + "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {} + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Configuration.ConfigurationManager/4.5.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.5.0", + "System.Security.Permissions": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/5.0.1": { + "type": "package", + "compile": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Drawing.Common/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.Win32.SystemEvents": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.AccessControl/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/4.5.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.Encodings.Web/5.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Text.Encodings.Web.dll": {} + } + }, + "System.Text.Json/5.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/System.Text.Json.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Text.Json.dll": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "Domain/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v3.1", + "dependencies": { + "Domain.Shared": "1.0.0", + "Infrastructure": "1.0.0" + }, + "compile": { + "bin/placeholder/Domain.dll": {} + }, + "runtime": { + "bin/placeholder/Domain.dll": {} + } + }, + "Domain.Shared/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v3.1", + "compile": { + "bin/placeholder/Domain.Shared.dll": {} + }, + "runtime": { + "bin/placeholder/Domain.Shared.dll": {} + } + }, + "Infrastructure/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v3.1", + "dependencies": { + "Autofac": "6.2.0", + "Autofac.Extensions.DependencyInjection": "7.1.0", + "Autofac.Extras.DynamicProxy": "6.0.0", + "Microsoft.AspNetCore.Mvc.Core": "2.2.5", + "Microsoft.Extensions.DependencyModel": "5.0.0", + "NPOI": "2.5.3", + "Newtonsoft.Json": "13.0.1" + }, + "compile": { + "bin/placeholder/Infrastructure.dll": {} + }, + "runtime": { + "bin/placeholder/Infrastructure.dll": {} + } + } + } + }, + "libraries": { + "Autofac/6.2.0": { + "sha512": "BX8IM0GANE38uSr4QwXL4PgA8vWWYt2P5cZzipn/vDnf0fDbPSGKSHEroJ09rB7ANxdyf7MdEgVs+pvL8kwYCg==", + "type": "package", + "path": "autofac/6.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "autofac.6.2.0.nupkg.sha512", + "autofac.nuspec", + "icon.png", + "lib/net5.0/Autofac.dll", + "lib/net5.0/Autofac.pdb", + "lib/net5.0/Autofac.xml", + "lib/netstandard2.0/Autofac.dll", + "lib/netstandard2.0/Autofac.pdb", + "lib/netstandard2.0/Autofac.xml", + "lib/netstandard2.1/Autofac.dll", + "lib/netstandard2.1/Autofac.pdb", + "lib/netstandard2.1/Autofac.xml" + ] + }, + "Autofac.Extensions.DependencyInjection/7.1.0": { + "sha512": "nm6rZREZ9tjdKXu9cmT69zHkZODagjCPlRRCOhiS1VqFFis9LQnMl18L4OYr8yfCW1WAQkFDD2CNaK/kF5Eqeg==", + "type": "package", + "path": "autofac.extensions.dependencyinjection/7.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512", + "autofac.extensions.dependencyinjection.nuspec", + "icon.png", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.pdb", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.pdb", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml" + ] + }, + "Autofac.Extras.DynamicProxy/6.0.0": { + "sha512": "Z86ZX33qYZ09xhdnYEyD/xilGUQBiITSAdHVZw59Qb+bN+tN/WFVDBZGQZZnI3+l8+hdjM2zWdcK4sgUEavRzw==", + "type": "package", + "path": "autofac.extras.dynamicproxy/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "autofac.extras.dynamicproxy.6.0.0.nupkg.sha512", + "autofac.extras.dynamicproxy.nuspec", + "icon.png", + "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll", + "lib/netstandard2.0/Autofac.Extras.DynamicProxy.pdb", + "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml", + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll", + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.pdb", + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml" + ] + }, + "Castle.Core/4.4.0": { + "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "type": "package", + "path": "castle.core/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ASL - Apache Software Foundation License.txt", + "CHANGELOG.md", + "LICENSE", + "castle.core.4.4.0.nupkg.sha512", + "castle.core.nuspec", + "lib/net35/Castle.Core.dll", + "lib/net35/Castle.Core.xml", + "lib/net40/Castle.Core.dll", + "lib/net40/Castle.Core.xml", + "lib/net45/Castle.Core.dll", + "lib/net45/Castle.Core.xml", + "lib/netstandard1.3/Castle.Core.dll", + "lib/netstandard1.3/Castle.Core.xml", + "lib/netstandard1.5/Castle.Core.dll", + "lib/netstandard1.5/Castle.Core.xml", + "readme.txt" + ] + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "sha512": "VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.xml", + "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Authentication.Core/2.2.0": { + "sha512": "XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.core/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.xml", + "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.core.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "sha512": "/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "sha512": "aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", + "type": "package", + "path": "microsoft.aspnetcore.authorization.policy/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.xml", + "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authorization.policy.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml", + "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", + "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.server.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http/2.2.0": { + "sha512": "YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==", + "type": "package", + "path": "microsoft.aspnetcore.http/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml", + "microsoft.aspnetcore.http.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "type": "package", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml", + "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "sha512": "2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", + "type": "package", + "path": "microsoft.aspnetcore.http.extensions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml", + "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "type": "package", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml", + "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.features.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { + "sha512": "ET6uZpfVbGR1NjCuLaLy197cQ3qZUjzl7EG5SL4GfJH/c9KRE89MMBrQegqWsh0w1iRUB/zQaK0anAjxa/pz4g==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.xml", + "microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Core/2.2.5": { + "sha512": "/8sr8ixIUD57UFwUntha9bOwex7/AkZfdk1f9oNJG1Ek7p/uuKVa7fuHmYZpQOf35Oxrt+2Ku4WPwMSbNxOuWg==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.core/2.2.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.xml", + "microsoft.aspnetcore.mvc.core.2.2.5.nupkg.sha512", + "microsoft.aspnetcore.mvc.core.nuspec" + ] + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { + "sha512": "CIHWEKrHzZfFp7t57UXsueiSA/raku56TgRYauV/W1+KAQq6vevz60zjEKaazt3BI76zwMz3B4jGWnCwd8kwQw==", + "type": "package", + "path": "microsoft.aspnetcore.responsecaching.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml", + "microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.responsecaching.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "sha512": "jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", + "type": "package", + "path": "microsoft.aspnetcore.routing/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.xml", + "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.routing.nuspec" + ] + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "sha512": "lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", + "type": "package", + "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml", + "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.routing.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "sha512": "9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", + "type": "package", + "path": "microsoft.aspnetcore.webutilities/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml", + "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.webutilities.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore/5.0.7": { + "sha512": "VAvmiQPdw0PUh3X7k9k7haVnCfQuDgyki9rq5XVk0gXJFeh+bwqPzPrY71A08O5TjnIeK9lEggXDnMuhQXUUww==", + "type": "package", + "path": "microsoft.entityframeworkcore/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { + "sha512": "MM5M9vYDLUXCePUGN2WZ0MkNcNj74sIgyVR9v7tW6abRULtBWPcyZf6zLYhZYpRgPXcahcME+Koscz9kP2DxyA==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": { + "sha512": "ZShPEOZaQhBZqDObU3+kigEmlEGug37F8v/jpQgVs1XfHrLeXVyk+p94DBH4f+bUUHUbsEEcIbU6OhUBtWZztg==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "lib/netstandard2.0/_._", + "microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/5.0.7": { + "sha512": "W3nj58s5GX8KFQwZaytERGy3tTqutjWK6309KCpXaVtVvuYf3GE3R0lrouxONzLynLG8hsODcs2gym5QQoqtSg==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/5.0.0": { + "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/5.0.0": { + "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==", + "type": "package", + "path": "microsoft.extensions.caching.memory/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Memory.dll", + "lib/net461/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { + "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/5.0.1": { + "sha512": "//mDNrYeiJ0eh/awFhDFJQzkRVra/njU5Y4fyK7X29g5HScrzbUkKOKlyTtygthcGFt4zNC8G5CFCjb/oizomA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.DependencyInjection.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.xml", + "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { + "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/5.0.0": { + "sha512": "umBECCoMC+sOUgm083yFr8SxTobUOcPFH4AXigdO2xJiszCHAnmeDl4qPphJt+oaJ/XIfV1wOjIts2nRnki61Q==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net451/Microsoft.Extensions.DependencyModel.dll", + "lib/net451/Microsoft.Extensions.DependencyModel.xml", + "lib/net461/Microsoft.Extensions.DependencyModel.dll", + "lib/net461/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.5.0.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { + "sha512": "EcnaSsPTqx2MGnHrmWOD0ugbuuqVT8iICqSqPzi45V5/MA1LjUNb0kwgcxBGqizV1R+WeBK7/Gw25Jzkyk9bIw==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { + "sha512": "+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/5.0.0": { + "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", + "type": "package", + "path": "microsoft.extensions.logging/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.dll", + "lib/net461/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.5.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0": { + "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "sha512": "gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", + "type": "package", + "path": "microsoft.extensions.objectpool/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml", + "microsoft.extensions.objectpool.2.2.0.nupkg.sha512", + "microsoft.extensions.objectpool.nuspec" + ] + }, + "Microsoft.Extensions.Options/5.0.0": { + "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==", + "type": "package", + "path": "microsoft.extensions.options/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.dll", + "lib/net461/Microsoft.Extensions.Options.xml", + "lib/net5.0/Microsoft.Extensions.Options.dll", + "lib/net5.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.5.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Primitives/5.0.0": { + "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==", + "type": "package", + "path": "microsoft.extensions.primitives/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Primitives.dll", + "lib/net461/Microsoft.Extensions.Primitives.xml", + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll", + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.5.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "sha512": "iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", + "type": "package", + "path": "microsoft.net.http.headers/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml", + "microsoft.net.http.headers.2.2.0.nupkg.sha512", + "microsoft.net.http.headers.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "sha512": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==", + "type": "package", + "path": "microsoft.netcore.platforms/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.2.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Win32.SystemEvents/4.5.0": { + "sha512": "LuI1oG+24TUj1ZRQQjM5Ew73BKnZE5NZ/7eAdh1o8ST5dPhUnJvIkiIn2re3MwnkRy6ELRnvEbBxHP8uALKhJw==", + "type": "package", + "path": "microsoft.win32.systemevents/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "microsoft.win32.systemevents.4.5.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MySqlConnector/1.3.10": { + "sha512": "geL3pNiwbSXzUqQLHLm2/igDHuz5Q4qqp2rKczYoIHtdvvrsd5fnYHN8eFgP81qu77Blv0+0IOn69RJATNQoSQ==", + "type": "package", + "path": "mysqlconnector/1.3.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net45/MySqlConnector.dll", + "lib/net45/MySqlConnector.xml", + "lib/net461/MySqlConnector.dll", + "lib/net461/MySqlConnector.xml", + "lib/net471/MySqlConnector.dll", + "lib/net471/MySqlConnector.xml", + "lib/net5.0/MySqlConnector.dll", + "lib/net5.0/MySqlConnector.xml", + "lib/netcoreapp2.1/MySqlConnector.dll", + "lib/netcoreapp2.1/MySqlConnector.xml", + "lib/netcoreapp3.1/MySqlConnector.dll", + "lib/netcoreapp3.1/MySqlConnector.xml", + "lib/netstandard1.3/MySqlConnector.dll", + "lib/netstandard1.3/MySqlConnector.xml", + "lib/netstandard2.0/MySqlConnector.dll", + "lib/netstandard2.0/MySqlConnector.xml", + "lib/netstandard2.1/MySqlConnector.dll", + "lib/netstandard2.1/MySqlConnector.xml", + "logo.png", + "mysqlconnector.1.3.10.nupkg.sha512", + "mysqlconnector.nuspec" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "NPOI/2.5.3": { + "sha512": "+DDU8JOHNhhiyAHr8Ew1hp85uPTcEw+O93+R2GDRB7sI5KpiQ+1i65DlY2OzfOq43+R3+39MyM7BTvjQi2KbfA==", + "type": "package", + "path": "npoi/2.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "Read Me.txt", + "lib/net45/NPOI.OOXML.XML", + "lib/net45/NPOI.OOXML.dll", + "lib/net45/NPOI.OpenXml4Net.XML", + "lib/net45/NPOI.OpenXml4Net.dll", + "lib/net45/NPOI.OpenXmlFormats.dll", + "lib/net45/NPOI.XML", + "lib/net45/NPOI.dll", + "lib/netstandard2.0/NPOI.OOXML.dll", + "lib/netstandard2.0/NPOI.OOXML.xml", + "lib/netstandard2.0/NPOI.OpenXml4Net.dll", + "lib/netstandard2.0/NPOI.OpenXml4Net.xml", + "lib/netstandard2.0/NPOI.OpenXmlFormats.dll", + "lib/netstandard2.0/NPOI.dll", + "lib/netstandard2.0/NPOI.xml", + "lib/netstandard2.1/NPOI.OOXML.dll", + "lib/netstandard2.1/NPOI.OOXML.xml", + "lib/netstandard2.1/NPOI.OpenXml4Net.dll", + "lib/netstandard2.1/NPOI.OpenXml4Net.xml", + "lib/netstandard2.1/NPOI.OpenXmlFormats.dll", + "lib/netstandard2.1/NPOI.dll", + "lib/netstandard2.1/NPOI.xml", + "logo/120_120.jpg", + "logo/240_240.png", + "logo/32_32.jpg", + "logo/60_60.jpg", + "npoi.2.5.3.nupkg.sha512", + "npoi.nuspec" + ] + }, + "Pomelo.EntityFrameworkCore.MySql/5.0.1": { + "sha512": "15t0Zda7kZFIe3U68komYU18KLGBr5K9lFydWBOycN7Xzb98xopVlyvb07GZb2OKJfX+sInhhD/U+jmHY9ceOg==", + "type": "package", + "path": "pomelo.entityframeworkcore.mysql/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll", + "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml", + "pomelo.entityframeworkcore.mysql.5.0.1.nupkg.sha512", + "pomelo.entityframeworkcore.mysql.nuspec" + ] + }, + "Portable.BouncyCastle/1.8.6": { + "sha512": "y+GvZomzhY+Lwu5mMeNmFFYLHiEr2xFDOANhABn/wgg64/QpTzfgpNGPct+pXgQHjmutd363ZCur/91DLaBxOw==", + "type": "package", + "path": "portable.bouncycastle/1.8.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40/BouncyCastle.Crypto.dll", + "lib/net40/BouncyCastle.Crypto.xml", + "lib/netstandard2.0/BouncyCastle.Crypto.dll", + "lib/netstandard2.0/BouncyCastle.Crypto.xml", + "portable.bouncycastle.1.8.6.nupkg.sha512", + "portable.bouncycastle.nuspec" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "SharpZipLib/1.2.0": { + "sha512": "zvWa/L02JHNatdtjya6Swpudb2YEHaOLHL1eRrqpjm71iGRNUNONO5adUF/9CHbSJbzhELW1UoH4NGy7n7+3bQ==", + "type": "package", + "path": "sharpziplib/1.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/ICSharpCode.SharpZipLib.dll", + "lib/net45/ICSharpCode.SharpZipLib.pdb", + "lib/net45/ICSharpCode.SharpZipLib.xml", + "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll", + "lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb", + "lib/netstandard2.0/ICSharpCode.SharpZipLib.xml", + "sharpziplib.1.2.0.nupkg.sha512", + "sharpziplib.nuspec" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.5.0": { + "sha512": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==", + "type": "package", + "path": "system.buffers/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "lib/uap10.0.16299/_._", + "ref/net45/System.Buffers.dll", + "ref/net45/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "ref/uap10.0.16299/_._", + "system.buffers.4.5.0.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Collections.Immutable/5.0.0": { + "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", + "type": "package", + "path": "system.collections.immutable/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Collections.Immutable.dll", + "lib/net461/System.Collections.Immutable.xml", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/netstandard1.3/System.Collections.Immutable.dll", + "lib/netstandard1.3/System.Collections.Immutable.xml", + "lib/netstandard2.0/System.Collections.Immutable.dll", + "lib/netstandard2.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.5.0.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections.NonGeneric/4.3.0": { + "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "type": "package", + "path": "system.collections.nongeneric/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.3.0.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.3.0": { + "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "type": "package", + "path": "system.collections.specialized/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/netstandard1.3/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.xml", + "ref/netstandard1.3/de/System.Collections.Specialized.xml", + "ref/netstandard1.3/es/System.Collections.Specialized.xml", + "ref/netstandard1.3/fr/System.Collections.Specialized.xml", + "ref/netstandard1.3/it/System.Collections.Specialized.xml", + "ref/netstandard1.3/ja/System.Collections.Specialized.xml", + "ref/netstandard1.3/ko/System.Collections.Specialized.xml", + "ref/netstandard1.3/ru/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.specialized.4.3.0.nupkg.sha512", + "system.collections.specialized.nuspec" + ] + }, + "System.ComponentModel/4.3.0": { + "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "type": "package", + "path": "system.componentmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.3.0.nupkg.sha512", + "system.componentmodel.nuspec" + ] + }, + "System.ComponentModel.Annotations/5.0.0": { + "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "type": "package", + "path": "system.componentmodel.annotations/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/netstandard2.0/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.xml", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/net461/System.ComponentModel.Annotations.xml", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard2.0/System.ComponentModel.Annotations.dll", + "ref/netstandard2.0/System.ComponentModel.Annotations.xml", + "ref/netstandard2.1/System.ComponentModel.Annotations.dll", + "ref/netstandard2.1/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.5.0.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ComponentModel.Primitives/4.3.0": { + "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "type": "package", + "path": "system.componentmodel.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.Primitives.dll", + "lib/netstandard1.0/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.primitives.4.3.0.nupkg.sha512", + "system.componentmodel.primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "type": "package", + "path": "system.componentmodel.typeconverter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/net462/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/net462/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "system.componentmodel.typeconverter.nuspec" + ] + }, + "System.Configuration.ConfigurationManager/4.5.0": { + "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==", + "type": "package", + "path": "system.configuration.configurationmanager/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.xml", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.4.5.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Console/4.3.0": { + "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "type": "package", + "path": "system.console/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.3.0.nupkg.sha512", + "system.console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/5.0.1": { + "sha512": "uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/System.Diagnostics.DiagnosticSource.dll", + "lib/net45/System.Diagnostics.DiagnosticSource.xml", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.3.0": { + "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "type": "package", + "path": "system.diagnostics.tracesource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.TraceSource.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "system.diagnostics.tracesource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Drawing.Common/4.5.0": { + "sha512": "AiJFxxVPdeITstiRS5aAu8+8Dpf5NawTMoapZ53Gfirml24p7HIfhjmCRxdXnmmf3IUA3AX3CcW7G73CjWxW/Q==", + "type": "package", + "path": "system.drawing.common/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "system.drawing.common.4.5.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Dynamic.Runtime/4.3.0": { + "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "type": "package", + "path": "system.dynamic.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.3.0.nupkg.sha512", + "system.dynamic.runtime.nuspec" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Security.AccessControl/4.5.0": { + "sha512": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==", + "type": "package", + "path": "system.security.accesscontrol/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.5.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.3.0": { + "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "type": "package", + "path": "system.security.cryptography.cng/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "system.security.cryptography.cng.4.3.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==", + "type": "package", + "path": "system.security.cryptography.protecteddata/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Permissions/4.5.0": { + "sha512": "9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", + "type": "package", + "path": "system.security.permissions/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.4.5.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.5.0": { + "sha512": "U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==", + "type": "package", + "path": "system.security.principal.windows/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.5.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Encodings.Web/5.0.0": { + "sha512": "EEslUvHKll1ftizbn20mX3Ix/l4Ygk/bdJ2LY6/X6FlGaP0RIhKMo9nS6JIGnKKT6KBP2PGj6JC3B9/ZF6ErqQ==", + "type": "package", + "path": "system.text.encodings.web/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.0/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.0/System.Text.Encodings.Web.xml", + "lib/netstandard1.0/System.Text.Encodings.Web.dll", + "lib/netstandard1.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.1/System.Text.Encodings.Web.dll", + "lib/netstandard2.1/System.Text.Encodings.Web.xml", + "system.text.encodings.web.5.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Json/5.0.0": { + "sha512": "+luxMQNZ2WqeffBU7Ml6njIvxc8169NW2oU+ygNudXQGZiarjE7DOtN7bILiQjTZjkmwwRZGTtLzmdrSI/Ustw==", + "type": "package", + "path": "system.text.json/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/netcoreapp3.0/System.Text.Json.dll", + "lib/netcoreapp3.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.5.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.5.1": { + "sha512": "WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "ref/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "ref/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "ref/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.1.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.3.0": { + "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "type": "package", + "path": "system.xml.xmldocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.3.0.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + }, + "Domain/1.0.0": { + "type": "project", + "path": "../Domain/Domain.csproj", + "msbuildProject": "../Domain/Domain.csproj" + }, + "Domain.Shared/1.0.0": { + "type": "project", + "path": "../Domain.Shared/Domain.Shared.csproj", + "msbuildProject": "../Domain.Shared/Domain.Shared.csproj" + }, + "Infrastructure/1.0.0": { + "type": "project", + "path": "../Infrastructure/Infrastructure.csproj", + "msbuildProject": "../Infrastructure/Infrastructure.csproj" + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [ + "Domain >= 1.0.0", + "Microsoft.EntityFrameworkCore >= 5.0.7", + "Pomelo.EntityFrameworkCore.MySql >= 5.0.1" + ] + }, + "packageFolders": { + "C:\\Users\\NineFishes\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj", + "projectName": "EntityFramework", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "dependencies": { + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[5.0.7, )" + }, + "Pomelo.EntityFrameworkCore.MySql": { + "target": "Package", + "version": "[5.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/EntityFramework/obj/project.nuget.cache b/EntityFramework/obj/project.nuget.cache new file mode 100644 index 0000000..20c46ef --- /dev/null +++ b/EntityFramework/obj/project.nuget.cache @@ -0,0 +1,145 @@ +{ + "version": 2, + "dgSpecHash": "4JFz26bOc/R21FGhx50dnxFgRc+uCQQ8J9nmNBZLkcGszFpqlOsH+Fgh318QgdltSKzjUeFA0TBm83IV5kC6hQ==", + "success": true, + "projectFilePath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj", + "expectedPackageFiles": [ + "C:\\Users\\NineFishes\\.nuget\\packages\\autofac\\6.2.0\\autofac.6.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\autofac.extensions.dependencyinjection\\7.1.0\\autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\autofac.extras.dynamicproxy\\6.0.0\\autofac.extras.dynamicproxy.6.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\castle.core\\4.4.0\\castle.core.4.4.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authentication.abstractions\\2.2.0\\microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authentication.core\\2.2.0\\microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authorization\\2.2.0\\microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authorization.policy\\2.2.0\\microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.hosting.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.hosting.server.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http\\2.2.0\\microsoft.aspnetcore.http.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http.abstractions\\2.2.0\\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http.extensions\\2.2.0\\microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.mvc.abstractions\\2.2.0\\microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.mvc.core\\2.2.5\\microsoft.aspnetcore.mvc.core.2.2.5.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.responsecaching.abstractions\\2.2.0\\microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.routing\\2.2.0\\microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.routing.abstractions\\2.2.0\\microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.webutilities\\2.2.0\\microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.entityframeworkcore\\5.0.7\\microsoft.entityframeworkcore.5.0.7.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.7\\microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.7\\microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\5.0.7\\microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\5.0.0\\microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.caching.memory\\5.0.0\\microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.1\\microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.dependencymodel\\5.0.0\\microsoft.extensions.dependencymodel.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\2.2.0\\microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\2.2.0\\microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.objectpool\\2.2.0\\microsoft.extensions.objectpool.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.net.http.headers\\2.2.0\\microsoft.net.http.headers.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.netcore.platforms\\2.0.0\\microsoft.netcore.platforms.2.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.win32.systemevents\\4.5.0\\microsoft.win32.systemevents.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\mysqlconnector\\1.3.10\\mysqlconnector.1.3.10.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\npoi\\2.5.3\\npoi.2.5.3.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\pomelo.entityframeworkcore.mysql\\5.0.1\\pomelo.entityframeworkcore.mysql.5.0.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\portable.bouncycastle\\1.8.6\\portable.bouncycastle.1.8.6.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\sharpziplib\\1.2.0\\sharpziplib.1.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.buffers\\4.5.0\\system.buffers.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.configuration.configurationmanager\\4.5.0\\system.configuration.configurationmanager.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.1\\system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.tracesource\\4.3.0\\system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.drawing.common\\4.5.0\\system.drawing.common.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.accesscontrol\\4.5.0\\system.security.accesscontrol.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.5.0\\system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.permissions\\4.5.0\\system.security.permissions.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.principal.windows\\4.5.0\\system.security.principal.windows.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.encodings.web\\5.0.0\\system.text.encodings.web.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.json\\5.0.0\\system.text.json.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.1\\system.threading.tasks.extensions.4.5.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/FireStaionDocuments.sln b/FireStaionDocuments.sln new file mode 100644 index 0000000..39edaee --- /dev/null +++ b/FireStaionDocuments.sln @@ -0,0 +1,73 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31229.75 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FireStaionDocuments", "FireStaionDocuments\FireStaionDocuments.csproj", "{768BAD28-701A-4CFF-BDE4-7C2C4303559D}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Application", "Application\Application.csproj", "{9A33718E-2454-4A8F-BE23-62B11E1466A6}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Application.Shared", "Application.Shared\Application.Shared.csproj", "{D4D7EE0C-0915-4CE6-AE2A-24A9662E17AF}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Domain", "Domain\Domain.csproj", "{71DD092D-1012-444B-9655-D3221D4592FD}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Domain.Shared", "Domain.Shared\Domain.Shared.csproj", "{61E68676-85C4-4A60-9BEB-841D5C52EFBC}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EntityFramework", "EntityFramework\EntityFramework.csproj", "{670CB524-4C6D-44CA-98CF-D306409BA7EF}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Infrastructure", "Infrastructure\Infrastructure.csproj", "{8F594351-CA83-4CFA-8F9D-66D1477A3DE8}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Domain.Service", "Domain.Service\Domain.Service.csproj", "{990785D4-710F-4BE2-BABA-CDBC89DF8DE6}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BackGround", "BackGround\BackGround.csproj", "{E9F82D42-76EF-4CA9-8665-8B2520B144CF}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {768BAD28-701A-4CFF-BDE4-7C2C4303559D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {768BAD28-701A-4CFF-BDE4-7C2C4303559D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {768BAD28-701A-4CFF-BDE4-7C2C4303559D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {768BAD28-701A-4CFF-BDE4-7C2C4303559D}.Release|Any CPU.Build.0 = Release|Any CPU + {9A33718E-2454-4A8F-BE23-62B11E1466A6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9A33718E-2454-4A8F-BE23-62B11E1466A6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9A33718E-2454-4A8F-BE23-62B11E1466A6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9A33718E-2454-4A8F-BE23-62B11E1466A6}.Release|Any CPU.Build.0 = Release|Any CPU + {D4D7EE0C-0915-4CE6-AE2A-24A9662E17AF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D4D7EE0C-0915-4CE6-AE2A-24A9662E17AF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D4D7EE0C-0915-4CE6-AE2A-24A9662E17AF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D4D7EE0C-0915-4CE6-AE2A-24A9662E17AF}.Release|Any CPU.Build.0 = Release|Any CPU + {71DD092D-1012-444B-9655-D3221D4592FD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {71DD092D-1012-444B-9655-D3221D4592FD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {71DD092D-1012-444B-9655-D3221D4592FD}.Release|Any CPU.ActiveCfg = Release|Any CPU + {71DD092D-1012-444B-9655-D3221D4592FD}.Release|Any CPU.Build.0 = Release|Any CPU + {61E68676-85C4-4A60-9BEB-841D5C52EFBC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {61E68676-85C4-4A60-9BEB-841D5C52EFBC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {61E68676-85C4-4A60-9BEB-841D5C52EFBC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {61E68676-85C4-4A60-9BEB-841D5C52EFBC}.Release|Any CPU.Build.0 = Release|Any CPU + {670CB524-4C6D-44CA-98CF-D306409BA7EF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {670CB524-4C6D-44CA-98CF-D306409BA7EF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {670CB524-4C6D-44CA-98CF-D306409BA7EF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {670CB524-4C6D-44CA-98CF-D306409BA7EF}.Release|Any CPU.Build.0 = Release|Any CPU + {8F594351-CA83-4CFA-8F9D-66D1477A3DE8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8F594351-CA83-4CFA-8F9D-66D1477A3DE8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8F594351-CA83-4CFA-8F9D-66D1477A3DE8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8F594351-CA83-4CFA-8F9D-66D1477A3DE8}.Release|Any CPU.Build.0 = Release|Any CPU + {990785D4-710F-4BE2-BABA-CDBC89DF8DE6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {990785D4-710F-4BE2-BABA-CDBC89DF8DE6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {990785D4-710F-4BE2-BABA-CDBC89DF8DE6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {990785D4-710F-4BE2-BABA-CDBC89DF8DE6}.Release|Any CPU.Build.0 = Release|Any CPU + {E9F82D42-76EF-4CA9-8665-8B2520B144CF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E9F82D42-76EF-4CA9-8665-8B2520B144CF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E9F82D42-76EF-4CA9-8665-8B2520B144CF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E9F82D42-76EF-4CA9-8665-8B2520B144CF}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {05CD65AB-172A-4B6D-AA09-75031B199D42} + EndGlobalSection +EndGlobal diff --git a/FireStaionDocuments/Controllers/FireHydrantController.cs b/FireStaionDocuments/Controllers/FireHydrantController.cs new file mode 100644 index 0000000..2b582fe --- /dev/null +++ b/FireStaionDocuments/Controllers/FireHydrantController.cs @@ -0,0 +1,30 @@ +using Application.Services.FireHydrants; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace FireStaionDocuments.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class FireHydrantController : ControllerBase + { + private readonly IFireHydrantAppService _fireHydrantAppService; + + public FireHydrantController(IFireHydrantAppService fireHydrantAppService) + { + _fireHydrantAppService = fireHydrantAppService; + } + + [Route("ImportFireDrants")] + [HttpPost] + [DisableRequestSizeLimit] + public async Task ImportFireDrants([FromForm]IFormFileCollection files, [FromForm]int unitId,[FromForm] int uniacid, [FromForm] int groupId) + { + await _fireHydrantAppService.ImportFireHydrants(files, unitId, uniacid, groupId); + } + } +} diff --git a/FireStaionDocuments/Controllers/FireStationController.cs b/FireStaionDocuments/Controllers/FireStationController.cs new file mode 100644 index 0000000..36ddc96 --- /dev/null +++ b/FireStaionDocuments/Controllers/FireStationController.cs @@ -0,0 +1,39 @@ +using Application.Services.Units; +using Application.Shared.Dtos.Units; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace FireStaionDocuments.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class FireStationController : ControllerBase + { + private readonly IUnitAppService _unitAppService; + public FireStationController(IUnitAppService unitAppService) + { + _unitAppService = unitAppService; + } + public string Test() + { + return "Hello"; + } + + [Route("Units")] + public async Task> GetUnits() + { + return await _unitAppService.GetUnits(); + } + + [Route("ImportUnits")] + [HttpPost] + public async Task ImportUnits([FromForm]IFormFileCollection files, [FromForm]int unitId, [FromForm]int uniacid, [FromForm]int groupId) + { + await _unitAppService.ImportUnits(files, unitId, uniacid, groupId); + } + } +} diff --git a/FireStaionDocuments/Controllers/UMEController.cs b/FireStaionDocuments/Controllers/UMEController.cs new file mode 100644 index 0000000..696c58c --- /dev/null +++ b/FireStaionDocuments/Controllers/UMEController.cs @@ -0,0 +1,29 @@ +using Application.Services.UMEs; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace FireStaionDocuments.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class UMEController : ControllerBase + { + private readonly IUMEsAppService _appService; + public UMEController(IUMEsAppService appService) + { + _appService = appService; + } + + [Route("ImportUMEs")] + [HttpPost] + [DisableRequestSizeLimit] + public async Task ImportFireDrants([FromForm] IFormFileCollection files,[FromForm] int unitId, [FromForm]int uniacid, [FromForm]int groupId) + { + await _appService.ImportUMEs(files, unitId, uniacid, groupId); + } + } +} diff --git a/FireStaionDocuments/Controllers/WaterController.cs b/FireStaionDocuments/Controllers/WaterController.cs new file mode 100644 index 0000000..f9692a2 --- /dev/null +++ b/FireStaionDocuments/Controllers/WaterController.cs @@ -0,0 +1,28 @@ +using Application.Services.Water; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace FireStaionDocuments.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class WaterController : ControllerBase + { + private readonly IWaterAppService _waterService; + public WaterController(IWaterAppService waterService) + { + _waterService = waterService; + } + + [Route("ImportWater")] + [HttpPost] + public async Task ImportWater([FromForm]IFormFileCollection files, [FromForm]int unitId, [FromForm] int uniacid, [FromForm] int groupId,[FromForm] int categoryId) + { + await _waterService.ImportWater(files, unitId, uniacid, groupId,categoryId); + } + } +} diff --git a/FireStaionDocuments/Controllers/WeatherForecastController.cs b/FireStaionDocuments/Controllers/WeatherForecastController.cs new file mode 100644 index 0000000..c4f1db1 --- /dev/null +++ b/FireStaionDocuments/Controllers/WeatherForecastController.cs @@ -0,0 +1,39 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Logging; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace FireStaionDocuments.Controllers +{ + [ApiController] + [Route("[controller]")] + public class WeatherForecastController : ControllerBase + { + private static readonly string[] Summaries = new[] + { + "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" + }; + + private readonly ILogger _logger; + + public WeatherForecastController(ILogger logger) + { + _logger = logger; + } + + [HttpGet] + public IEnumerable Get() + { + var rng = new Random(); + return Enumerable.Range(1, 5).Select(index => new WeatherForecast + { + Date = DateTime.Now.AddDays(index), + TemperatureC = rng.Next(-20, 55), + Summary = Summaries[rng.Next(Summaries.Length)] + }) + .ToArray(); + } + } +} diff --git a/FireStaionDocuments/FireStaionDocuments.csproj b/FireStaionDocuments/FireStaionDocuments.csproj new file mode 100644 index 0000000..6eda7d7 --- /dev/null +++ b/FireStaionDocuments/FireStaionDocuments.csproj @@ -0,0 +1,27 @@ + + + + netcoreapp3.1 + + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + + + + + diff --git a/FireStaionDocuments/FireStaionDocuments.csproj.user b/FireStaionDocuments/FireStaionDocuments.csproj.user new file mode 100644 index 0000000..c122ca6 --- /dev/null +++ b/FireStaionDocuments/FireStaionDocuments.csproj.user @@ -0,0 +1,9 @@ + + + + ProjectDebugger + + + FireStaionDocuments + + \ No newline at end of file diff --git a/FireStaionDocuments/Program.cs b/FireStaionDocuments/Program.cs new file mode 100644 index 0000000..e651132 --- /dev/null +++ b/FireStaionDocuments/Program.cs @@ -0,0 +1,28 @@ +using Autofac.Extensions.DependencyInjection; +using Microsoft.AspNetCore.Hosting; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.Hosting; +using Microsoft.Extensions.Logging; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace FireStaionDocuments +{ + public class Program + { + public static void Main(string[] args) + { + CreateHostBuilder(args).Build().Run(); + } + + public static IHostBuilder CreateHostBuilder(string[] args) => + Host.CreateDefaultBuilder(args) + .UseServiceProviderFactory(new AutofacServiceProviderFactory()) + .ConfigureWebHostDefaults(webBuilder => + { + webBuilder.UseStartup(); + }); + } +} diff --git a/FireStaionDocuments/Properties/launchSettings.json b/FireStaionDocuments/Properties/launchSettings.json new file mode 100644 index 0000000..4cbc7ca --- /dev/null +++ b/FireStaionDocuments/Properties/launchSettings.json @@ -0,0 +1,30 @@ +{ + "$schema": "http://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:19347", + "sslPort": 44328 + } + }, + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "launchUrl": "weatherforecast", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "FireStaionDocuments": { + "commandName": "Project", + "launchBrowser": true, + "launchUrl": "weatherforecast", + "applicationUrl": "https://localhost:5001;http://localhost:5000", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/FireStaionDocuments/Startup.cs b/FireStaionDocuments/Startup.cs new file mode 100644 index 0000000..85279af --- /dev/null +++ b/FireStaionDocuments/Startup.cs @@ -0,0 +1,93 @@ +using Application; +using Autofac; +using BackGround; +using EntityFramework; +using Hangfire; +using Hangfire.Dashboard; +using Hangfire.Dashboard.BasicAuthorization; +using Infrastructure.Api.Filters; +using Infrastructure.Api.Middwares; +using Infrastructure.AutofacInjection; +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Hosting; +using Microsoft.AspNetCore.HttpsPolicy; +using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Hosting; +using Microsoft.Extensions.Logging; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace FireStaionDocuments +{ + public class Startup + { + public Startup(IConfiguration configuration) + { + Configuration = configuration; + } + + public IConfiguration Configuration { get; } + + // This method gets called by the runtime. Use this method to add services to the container. + public void ConfigureServices(IServiceCollection services) + { + services.AddAutoMapper(typeof(AutoMapperProfiles)); + services.IntegrateHangfire(Configuration); + services.AddDatabaseContext(Configuration); + services.AddControllers(); + services.AddCommonResponse(); + } + + /// + /// autofacע + /// + /// + public void ConfigureContainer(ContainerBuilder builder) + { + builder.RegisterModule(new AutofacModule()); + } + + // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. + public void Configure(IApplicationBuilder app, IWebHostEnvironment env) + { + if (env.IsDevelopment()) + { + app.UseDeveloperExceptionPage(); + } + app.UseStaticFiles(); + app.UseHangfireDashboard("/hangfire", new DashboardOptions + { + Authorization = new[] { new BasicAuthAuthorizationFilter(new BasicAuthAuthorizationFilterOptions + { + RequireSsl = false, + SslRedirect = false, + LoginCaseSensitive = true, + Users = new [] + { + new BasicAuthAuthorizationUser + { + Login = "admin", + PasswordClear = "adminsecret" + } + } + + }) } + }); + app.UseMiddleware(); + app.UseHttpsRedirection(); + + app.UseRouting(); + + app.UseAuthorization(); + + app.UseEndpoints(endpoints => + { + endpoints.MapControllers(); + }); + } + } +} diff --git a/FireStaionDocuments/Uploaded/206家重点单位-028e1c81-da1c-4506-83e9-93310e2586d7.xlsx b/FireStaionDocuments/Uploaded/206家重点单位-028e1c81-da1c-4506-83e9-93310e2586d7.xlsx new file mode 100644 index 0000000..748d96b Binary files /dev/null and b/FireStaionDocuments/Uploaded/206家重点单位-028e1c81-da1c-4506-83e9-93310e2586d7.xlsx differ diff --git a/FireStaionDocuments/Uploaded/206家重点单位-08c82c21-354b-426b-95b3-f43b54787e7d.xlsx b/FireStaionDocuments/Uploaded/206家重点单位-08c82c21-354b-426b-95b3-f43b54787e7d.xlsx new file mode 100644 index 0000000..25254fc Binary files /dev/null and b/FireStaionDocuments/Uploaded/206家重点单位-08c82c21-354b-426b-95b3-f43b54787e7d.xlsx differ diff --git a/FireStaionDocuments/Uploaded/206家重点单位-17a59b17-4b88-4512-a0ec-99eadb377a5d.xlsx b/FireStaionDocuments/Uploaded/206家重点单位-17a59b17-4b88-4512-a0ec-99eadb377a5d.xlsx new file mode 100644 index 0000000..748d96b Binary files /dev/null and b/FireStaionDocuments/Uploaded/206家重点单位-17a59b17-4b88-4512-a0ec-99eadb377a5d.xlsx differ diff --git a/FireStaionDocuments/Uploaded/206家重点单位-319d583a-2c58-423b-b02e-6e2820bb9d6d.xlsx b/FireStaionDocuments/Uploaded/206家重点单位-319d583a-2c58-423b-b02e-6e2820bb9d6d.xlsx new file mode 100644 index 0000000..748d96b Binary files /dev/null and b/FireStaionDocuments/Uploaded/206家重点单位-319d583a-2c58-423b-b02e-6e2820bb9d6d.xlsx differ diff --git a/FireStaionDocuments/Uploaded/206家重点单位-7022693a-e2af-4ea1-815e-af6bed8dc3e4.xlsx b/FireStaionDocuments/Uploaded/206家重点单位-7022693a-e2af-4ea1-815e-af6bed8dc3e4.xlsx new file mode 100644 index 0000000..748d96b Binary files /dev/null and b/FireStaionDocuments/Uploaded/206家重点单位-7022693a-e2af-4ea1-815e-af6bed8dc3e4.xlsx differ diff --git a/FireStaionDocuments/Uploaded/206家重点单位-7ca25012-6938-4377-8642-bde8f2f12d56.xlsx b/FireStaionDocuments/Uploaded/206家重点单位-7ca25012-6938-4377-8642-bde8f2f12d56.xlsx new file mode 100644 index 0000000..748d96b Binary files /dev/null and b/FireStaionDocuments/Uploaded/206家重点单位-7ca25012-6938-4377-8642-bde8f2f12d56.xlsx differ diff --git a/FireStaionDocuments/Uploaded/206家重点单位-84b3189c-1bfa-485c-8845-536e71d6d54f.xlsx b/FireStaionDocuments/Uploaded/206家重点单位-84b3189c-1bfa-485c-8845-536e71d6d54f.xlsx new file mode 100644 index 0000000..748d96b Binary files /dev/null and b/FireStaionDocuments/Uploaded/206家重点单位-84b3189c-1bfa-485c-8845-536e71d6d54f.xlsx differ diff --git a/FireStaionDocuments/Uploaded/206家重点单位-968dd725-8075-42ec-abfc-414885e7470f.xlsx b/FireStaionDocuments/Uploaded/206家重点单位-968dd725-8075-42ec-abfc-414885e7470f.xlsx new file mode 100644 index 0000000..25254fc Binary files /dev/null and b/FireStaionDocuments/Uploaded/206家重点单位-968dd725-8075-42ec-abfc-414885e7470f.xlsx differ diff --git a/FireStaionDocuments/Uploaded/206家重点单位-96d85a58-a859-4238-b4eb-bfb10eff202b.xlsx b/FireStaionDocuments/Uploaded/206家重点单位-96d85a58-a859-4238-b4eb-bfb10eff202b.xlsx new file mode 100644 index 0000000..748d96b Binary files /dev/null and b/FireStaionDocuments/Uploaded/206家重点单位-96d85a58-a859-4238-b4eb-bfb10eff202b.xlsx differ diff --git a/FireStaionDocuments/Uploaded/206家重点单位-9f74fdae-deee-43ea-986b-e80b35399db9.xlsx b/FireStaionDocuments/Uploaded/206家重点单位-9f74fdae-deee-43ea-986b-e80b35399db9.xlsx new file mode 100644 index 0000000..748d96b Binary files /dev/null and b/FireStaionDocuments/Uploaded/206家重点单位-9f74fdae-deee-43ea-986b-e80b35399db9.xlsx differ diff --git a/FireStaionDocuments/Uploaded/206家重点单位-a0d24539-c936-4f23-9c48-e786d6798463.xlsx b/FireStaionDocuments/Uploaded/206家重点单位-a0d24539-c936-4f23-9c48-e786d6798463.xlsx new file mode 100644 index 0000000..25254fc Binary files /dev/null and b/FireStaionDocuments/Uploaded/206家重点单位-a0d24539-c936-4f23-9c48-e786d6798463.xlsx differ diff --git a/FireStaionDocuments/Uploaded/206家重点单位-d438cc36-3e29-4a98-a53a-db6625c13d66.xlsx b/FireStaionDocuments/Uploaded/206家重点单位-d438cc36-3e29-4a98-a53a-db6625c13d66.xlsx new file mode 100644 index 0000000..748d96b Binary files /dev/null and b/FireStaionDocuments/Uploaded/206家重点单位-d438cc36-3e29-4a98-a53a-db6625c13d66.xlsx differ diff --git a/FireStaionDocuments/Uploaded/water-50150c5f-0337-4c07-a522-114fcef528c0-8795d3a2-3440-470e-bf50-de976fa4ce07.xlsx b/FireStaionDocuments/Uploaded/water-50150c5f-0337-4c07-a522-114fcef528c0-8795d3a2-3440-470e-bf50-de976fa4ce07.xlsx new file mode 100644 index 0000000..609fa2c Binary files /dev/null and b/FireStaionDocuments/Uploaded/water-50150c5f-0337-4c07-a522-114fcef528c0-8795d3a2-3440-470e-bf50-de976fa4ce07.xlsx differ diff --git a/FireStaionDocuments/Uploaded/water-50150c5f-0337-4c07-a522-114fcef528c0-979d4634-272a-4167-958c-0f7515c3d2ad.xlsx b/FireStaionDocuments/Uploaded/water-50150c5f-0337-4c07-a522-114fcef528c0-979d4634-272a-4167-958c-0f7515c3d2ad.xlsx new file mode 100644 index 0000000..609fa2c Binary files /dev/null and b/FireStaionDocuments/Uploaded/water-50150c5f-0337-4c07-a522-114fcef528c0-979d4634-272a-4167-958c-0f7515c3d2ad.xlsx differ diff --git a/FireStaionDocuments/Uploaded/water-50150c5f-0337-4c07-a522-114fcef528c0-ba384337-94bb-4af2-b35a-78580fbc03c6.xlsx b/FireStaionDocuments/Uploaded/water-50150c5f-0337-4c07-a522-114fcef528c0-ba384337-94bb-4af2-b35a-78580fbc03c6.xlsx new file mode 100644 index 0000000..609fa2c Binary files /dev/null and b/FireStaionDocuments/Uploaded/water-50150c5f-0337-4c07-a522-114fcef528c0-ba384337-94bb-4af2-b35a-78580fbc03c6.xlsx differ diff --git a/FireStaionDocuments/Uploaded/交通水源 - 副本-7124a2ff-1fc7-48c3-8a63-d7c137ce259b.xls b/FireStaionDocuments/Uploaded/交通水源 - 副本-7124a2ff-1fc7-48c3-8a63-d7c137ce259b.xls new file mode 100644 index 0000000..3e4924b Binary files /dev/null and b/FireStaionDocuments/Uploaded/交通水源 - 副本-7124a2ff-1fc7-48c3-8a63-d7c137ce259b.xls differ diff --git a/FireStaionDocuments/Uploaded/交通水源 - 副本-77caf200-ad2b-4575-b8b0-fd8123e86558.xls b/FireStaionDocuments/Uploaded/交通水源 - 副本-77caf200-ad2b-4575-b8b0-fd8123e86558.xls new file mode 100644 index 0000000..3e4924b Binary files /dev/null and b/FireStaionDocuments/Uploaded/交通水源 - 副本-77caf200-ad2b-4575-b8b0-fd8123e86558.xls differ diff --git a/FireStaionDocuments/Uploaded/交通水源 - 副本-c145b2c7-5fd8-4104-b0b7-f946a1401f44.xls b/FireStaionDocuments/Uploaded/交通水源 - 副本-c145b2c7-5fd8-4104-b0b7-f946a1401f44.xls new file mode 100644 index 0000000..3e4924b Binary files /dev/null and b/FireStaionDocuments/Uploaded/交通水源 - 副本-c145b2c7-5fd8-4104-b0b7-f946a1401f44.xls differ diff --git a/FireStaionDocuments/Uploaded/交通水源-017f84f1-41ce-48cc-928f-2f88f8e670fc.xls b/FireStaionDocuments/Uploaded/交通水源-017f84f1-41ce-48cc-928f-2f88f8e670fc.xls new file mode 100644 index 0000000..733d972 Binary files /dev/null and b/FireStaionDocuments/Uploaded/交通水源-017f84f1-41ce-48cc-928f-2f88f8e670fc.xls differ diff --git a/FireStaionDocuments/Uploaded/交通水源-13d5e8ef-3548-4c0f-839b-2fa5a6cb7321.xls b/FireStaionDocuments/Uploaded/交通水源-13d5e8ef-3548-4c0f-839b-2fa5a6cb7321.xls new file mode 100644 index 0000000..733d972 Binary files /dev/null and b/FireStaionDocuments/Uploaded/交通水源-13d5e8ef-3548-4c0f-839b-2fa5a6cb7321.xls differ diff --git a/FireStaionDocuments/Uploaded/交通水源-3693a951-1c17-4e64-989b-975ed8bd4199.xls b/FireStaionDocuments/Uploaded/交通水源-3693a951-1c17-4e64-989b-975ed8bd4199.xls new file mode 100644 index 0000000..733d972 Binary files /dev/null and b/FireStaionDocuments/Uploaded/交通水源-3693a951-1c17-4e64-989b-975ed8bd4199.xls differ diff --git a/FireStaionDocuments/Uploaded/鄂尔多斯市伊旗中队水源档案2017年-3cf97d76-9990-4596-82cd-8712adaf9e5d.docx b/FireStaionDocuments/Uploaded/鄂尔多斯市伊旗中队水源档案2017年-3cf97d76-9990-4596-82cd-8712adaf9e5d.docx new file mode 100644 index 0000000..3d94598 --- /dev/null +++ b/FireStaionDocuments/Uploaded/鄂尔多斯市伊旗中队水源档案2017年-3cf97d76-9990-4596-82cd-8712adaf9e5d.docx @@ -0,0 +1,27497 @@ + 伊旗中队消防水源 + 档案卡 + + + + + + + + + + 部别:鄂尔多斯市伊旗中队 + + + + + 伊旗中队消火栓档案卡 + + + + + + + + + + + 部别:鄂尔多斯市伊旗中队 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 001 + 形式(地上、地下) + 地下 + 位置 + 文明路东街国泰商务广场B座 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 002 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 + 消火栓编号 + 003 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.422 + 变更日期 + 2013.11.16 + 注销日期 + + +单 位:鄂尔多斯市伊旗中队 + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 004 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.20 + 注销日期 + + + + \* MERGEFORMAT + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 005 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.20 + 注销日期 + + + + + 消 火 栓 档 案 卡 + 消火栓编号 + 006 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.20 + 注销日期 + + +单 位:鄂尔多斯市伊旗中队 + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 007 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 008 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2014.3.15 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 009 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 20.14.3.20 + 注销日期 + + + + 消火栓编号 + 010 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.9.26 + 注销日期 + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + + + + + + 消 火 栓 档 案 卡 + 消火栓编号 + 011 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.1010 + 注销日期 + + +单 位:鄂尔多斯市伊旗中队 + + + + 消 火 栓 档 案 卡 + 消火栓编号 + 012 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +单 位:鄂尔多斯市伊旗中队 + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 013 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 014 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 + 消火栓编号 + 015 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + +单 位:鄂尔多斯市伊旗中队 + + + 消 火 栓 档 案 卡 + 消火栓编号 + 016 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.10.18 + 注销日期 + + +单 位:鄂尔多斯市伊旗中队 + + + 消 火 栓 档 案 卡 + 消火栓编号 + 017 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) +环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.10.8 + 注销日期 + + +单 位:鄂尔多斯市伊旗中队 + + + 消 火 栓 档 案 卡 + 消火栓编号 + 018 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.9.28 + 注销日期 + + +单 位:鄂尔多斯市伊旗中队 + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 019 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.9.28 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 020 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.9.28 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 021 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.9.28 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 022 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.28 + 注销日期 + + + + + + 消 火 栓 档 案 卡 + 单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 023 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 024 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 025 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 026 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 027 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 028 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 029 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 030 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 031 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.25 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 032 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.25 + 变更日期 + 2014.2.12 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 033 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2014.2.12 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 034 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2014.2.12 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 035 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇瓦窑讫台路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 036 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇瓦窑讫台路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 037 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 038 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 040 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 041 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 042 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 043 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 044 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 045 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 046 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇北环路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.10.16 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 047 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇北环路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.10.16 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 048 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 049 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 050 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 051 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 052 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 053 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 054 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 055 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 056 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 057 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 058 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 059 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 060 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 061 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 062 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 063 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 064 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 065 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 066 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 067 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 068 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 069 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 070 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 071 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 072 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 073 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 074 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 075 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 076 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 077 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 078 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 079 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 080 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 081 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 082 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 083 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 084 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 085 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 086 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 087 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 088 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 089 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 090 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 091 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇安达路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 092 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 093 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中 + 消火栓编号 + 094 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 095 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 096 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇工业街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 097 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.21 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 098 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横四路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.21 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 099 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横四路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.11.8 + 变更日期 + 2013.10.21 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 100 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.11.8 + 变更日期 + 2013.10.21 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 101 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇苏布尔噶街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.11.8 + 变更日期 + 2014.2.21 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 102 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇苏布尔噶街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.11.8 + 变更日期 + 2013.10.21 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 103 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇苏布尔噶街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.11.8 + 变更日期 + 2014.3.9 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 104 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇苏布尔噶街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.11.6 + 变更日期 + 2014.2.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 105 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇苏布尔噶街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.11.6 + 变更日期 + 2014.2.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 106 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.4 + 变更日期 + 2014.2.27 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 107 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.4 + 变更日期 + 2014.1.21 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 108 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.4 + 变更日期 + 2013.6.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 109 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.4 + 变更日期 + 2013.6.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 110 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇柳沟街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.13 + 变更日期 + 2013.6.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 111 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇柳沟街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.13 + 变更日期 + 2013.6.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 112 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇柳沟街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.13 + 变更日期 + 2013.6.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 113 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇柳沟街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.13 + 变更日期 + 2013.6.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 114 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.5.25 + 变更日期 + 2013.6.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 115 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.5.25 + 变更日期 + 2013.6.14 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 116 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇可汗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.5.25 + 变更日期 + 2013.6.14 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 117 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇可汗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.16 + 变更日期 + 2013.6.14 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 118 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇可汗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.16 + 变更日期 + 2013.6.14 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 119 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇可汗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.16 + 变更日期 + 2013.6.14 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 120 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇可汗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.16 + 变更日期 + 2013.6.14 + 注销日期 + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 121 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇可汗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.6.14 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 122 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.6.14 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 123 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.3.5 + 注销日期 + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 124 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.3.5 + 注销日期 + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 125 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.3.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 126 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.3.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 127 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.3.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 128 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.3.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 129 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.3.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 130 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.24 + 变更日期 + 2013.3.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 131 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.3.18 + 变更日期 + 2013.3.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 132 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.15 + 变更日期 + 2013.3.9 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 133 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.20 + 变更日期 + 2013.3.16 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 134 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.15 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 135 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.15 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 136 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.15 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 137 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.15 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 138 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.15 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 139 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.15 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 140 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 141 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 142 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 143 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 144 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 145 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 146 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 147 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 148 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 149 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇橫十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 150 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.10 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 151 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇橫十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.10 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 152 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇橫十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.10 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 153 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇橫十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.10 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 154 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.10 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 155 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.10 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 156 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇橫十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.10 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 157 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.10 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 158 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇橫十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.10 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 159 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 160 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 161 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 162 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 163 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 164 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.23 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 165 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.23 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 166 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.23 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 167 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.23 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 168 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.23 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 169 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 170 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 171 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 172 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 173 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 174 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 175 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 176 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 177 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 178 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 179 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 180 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 181 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 182 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇世纪大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 +2011.4.24 + 变更日期 + 2013.10.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 183 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇世纪大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.13 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 184 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇世纪大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 185 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 186 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 187 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 188 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 189 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 190 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 191 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 192 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 193 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 194 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 195 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.8 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 196 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.8 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 197 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.8 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 198 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.8 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 199 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.8 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 200 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.8 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 201 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.8 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 202 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 203 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 204 + 形式(地上、地下) + 地乔树成 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 205 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇札萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 206 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 207 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 208 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 209 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.14 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 210 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明东街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.14 + 注销日期 + + + + 消 火 栓 档 案 卡 + 消火栓编号 + 211 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明东街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.14 + 注销日期 + + +单 位:鄂尔多斯市伊旗中队 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 212 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明东街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 213 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 214 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 215 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 216 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 217 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 218 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 219 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 220 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 221 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 222 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 223 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 224 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 225 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 226 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 227 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 228 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 229 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 230 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 231 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 232 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 233 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 234 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 235 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 236 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 237 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 238 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 239 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 240 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 241 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.26 + 注销日期 + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 242 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 245 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 246 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 244 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.5 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 247 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 248 + 形式(地上、地下) + 地下 + 位置 + 文明路东街国泰商务广场B座 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 249 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 250 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.422 + 变更日期 + 2013.11.16 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 251 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.20 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 252 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.20 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 253 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.20 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 254 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.8 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 256 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 20.14.3.20 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 255 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2014.3.15 + 注销日期 + + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 257 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.9.26 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 258 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.1010 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 259 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 260 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 261 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 262 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 263 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.10.18 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 264 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) +环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.10.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 265 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.9.28 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 266 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.9.28 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 267 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.9.28 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 268 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 269 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 270 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 271 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 272 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 273 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 274 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 275 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 276 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 277 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 278 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 279 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 280 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 281 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 282 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 283 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 284 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 285 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 286 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 287 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 288 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 289 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 290 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 291 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 292 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 293 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 294 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 295 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 296 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 297 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 298 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 299 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 300 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 301 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 302 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.23 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 303 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.23 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 304 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.23 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 305 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.23 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 306 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.23 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 307 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 308 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 309 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 310 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 311 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 312 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 313 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 314 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 315 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 316 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.422 + 变更日期 + 2013.11.16 + 注销日期 + + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 317 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇霞光西街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 318 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇霞光西街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.422 + 变更日期 + 2013.11.16 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 319 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇霞光西街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.20 + 注销日期 + + + + + 消 火 栓 档 案 卡 + + + 消火栓编号 + 320 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.20 + 注销日期 + + +单 位:鄂尔多斯市伊旗中队 + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 321 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 322 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 323 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.8 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 324 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.9.26 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 325 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 326 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 327 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 328 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 329 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 330 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 331 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 333 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 332 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 334 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 335 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 337 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 338 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 336 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 339 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 340 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 341 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 342 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 343 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 344 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 345 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 346 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 347 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 348 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 349 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 350 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 351 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 352 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 353 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 355 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 356 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 357 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 358 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 359 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 360 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 361 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 362 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 363 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 364 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 365 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 366 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 367 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 368 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 369 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 370 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 371 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 372 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 373 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 374 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 375 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 376 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 377 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 378 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 379 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 380 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 381 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 382 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横四路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 383 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横四路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 384 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横四路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 385 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横四路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 386 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横四路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 387 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横四路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 388 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 389 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 390 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 391 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 392 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 393 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 394 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 395 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 396 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 397 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 398 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 399 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 400 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 402 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 403 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 404 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 405 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 406 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 407 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 408 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 409 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 410 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 411 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 412 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 413 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 414 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 415 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 416 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 417 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 418 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 419 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 420 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 421 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 422 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 423 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 424 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 425 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 426 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 427 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 428 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 429 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 430 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 431 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 432 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 433 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 434 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 435 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 436 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 437 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 438 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 439 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 440 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 441 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 442 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 443 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 444 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇北环路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.10.16 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 445 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.10.16 + 注销日期 + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 446 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇北环路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.10.16 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 447 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 448 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 449 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 450 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 451 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 452 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 453 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 454 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 455 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 456 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 457 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 458 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 459 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 460 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 461 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 462 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 463 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 464 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 465 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 466 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 467 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 468 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 469 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 470 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 471 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 472 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 473 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 474 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 475 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 476 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 477 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 478 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 479 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 480 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 481 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 482 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 483 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 484 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 485 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 486 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 487 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 488 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 489 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 490 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇安达路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中 + 消火栓编号 + 492 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 493 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 494 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.21 + 注销日期 + + + + 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 495 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇工业街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 496 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横四路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.11.8 + 变更日期 + 2013.10.21 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 497 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横四路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.21 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 498 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.11.8 + 变更日期 + 2013.10.21 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 499 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 500 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 501 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 502 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 503 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 504 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 505 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 506 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 507 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 508 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 509 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 510 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 511 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 512 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 513 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 514 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 515 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 516 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 517 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 518 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 519 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 520 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 521 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 522 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 523 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 524 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 525 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 526 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 527 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 528 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 + 消火栓编号 + 529 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + 单 位:鄂尔多斯市伊旗中队 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 530 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 531 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 532 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 533 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 534 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 535 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.422 + 变更日期 + 2013.11.16 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 536 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 537 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇瓦窑讫台路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 538 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 539 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.20 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 540 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2015.11.18 + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 541 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇橫十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.10 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 542 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.23 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 543 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 544 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 545 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 546 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 547 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 548 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.3.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 549 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.4 + 变更日期 + 2013.6.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 550 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 551 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.20 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 552 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇柳沟街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.13 + 变更日期 + 2013.6.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 553 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 554 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 555 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 556 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 557 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 558 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 559 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 560 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.15 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 561 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 562 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 563 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 564 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2014.2.12 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 565 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 566 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 567 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 568 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 569 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 570 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 571 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 572 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中 + 消火栓编号 + 573 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 575 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 576 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 577 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 578 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 579 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇苏布尔噶街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.11.6 + 变更日期 + 2014.2.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 580 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 581 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 582 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 583 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 584 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 585 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横四路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 586 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 587 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 588 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 589 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 590 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 591 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 592 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 593 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 594 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 20.14.3.20 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 595 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横四路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 596 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 597 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 598 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 599 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.9.28 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 600 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 601 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.422 + 变更日期 + 2013.11.16 + 注销日期 + + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 602 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 603 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 604 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.15 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 605 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 606 + 形式(地上、地下) + 地乔树成 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 607 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 20.14.3.20 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 608 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 609 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 610 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 611 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.15 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 612 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 613 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 614 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.21 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 615 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇霞光西街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 616 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 617 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.20 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 618 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 619 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 620 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 621 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 622 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 623 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 624 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 625 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 626 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 627 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 628 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 629 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.23 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 630 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 631 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 632 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 633 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 634 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 635 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 636 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 637 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 638 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 639 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇可汗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 640 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 641 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.4 + 变更日期 + 2013.6.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 642 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 643 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 644 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 645 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 646 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 647 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 648 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇札萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 649 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 650 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 651 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 652 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.8 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 653 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 654 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 655 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 656 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 657 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明东街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.14 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 658 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.10.18 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 659 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 660 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 661 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 662 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 663 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 664 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 665 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 666 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 667 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 668 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 669 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 670 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 671 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 672 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.25 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 673 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 674 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 675 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 676 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 677 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 678 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 679 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 680 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 681 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 682 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 683 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 684 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 685 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 686 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 687 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 688 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明东街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.14 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 689 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 690 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 691 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 692 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 693 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.4 + 变更日期 + 2013.6.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 694 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 695 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 696 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 697 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 698 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 699 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 700 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 701 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2014.3.15 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 702 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 703 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 704 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 705 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 705 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 707 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 + 单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 708 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 709 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 710 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 711 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 712 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 713 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 714 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 715 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 716 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 717 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 718 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇兴泰路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 719 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇可汗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 720 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 721 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 722 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 723 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 724 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 725 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 726 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇瓦窑讫台路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 727 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇瓦窑讫台路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 728 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇伊金霍洛旗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 729 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 730 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 731 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 732 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 733 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 734 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇工业街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 735 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) +环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.10.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 736 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 737 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 738 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 739 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 740 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 741 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 742 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 743 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 744 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 745 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 746 + 形式(地上、地下) + 地乔树成 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 747 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 748 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 749 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 750 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 751 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热滨河东路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 752 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热滨安达路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 753 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 754 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 755 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 756 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 757 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山北路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 758 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山北路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 759 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山北路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 760 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 761 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 762 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 763 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 764 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 765 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 766 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 767 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 768 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 769 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 770 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 771 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 772 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 773 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 774 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 775 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 776 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 777 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 779 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 780 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 781 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 782 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 783 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 784 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 785 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 786 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 787 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 788 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 789 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 790 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 791 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 792 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 793 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 794 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 795 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 796 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 797 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 798 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 799 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 800 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 801 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 802 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 803 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 804 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 805 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 806 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 807 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 808 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 809 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 810 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 811 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 812 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 813 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 814 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 815 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 816 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 817 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 818 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 819 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 820 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 821 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 822 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 823 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 824 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 825 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 826 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 827 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 828 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 829 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 830 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 831 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 832 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 833 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 834 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 835 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 836 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 837 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 838 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + \* MERGEFORMAT + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 839 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + \* MERGEFORMAT + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 840 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + \* MERGEFORMAT + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 841 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 842 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 +无 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 843 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇工业街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 844 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 845 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 846 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 847 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 848 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 849 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 850 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 851 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 852 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 736 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 854 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) +环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 855 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 856 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 857 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 858 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 859 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇伊金霍洛旗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 860 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇瓦窑讫台路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 861 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 862 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 863 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 864 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 713 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 866 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 867 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 868 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 869 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 870 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇兴泰路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 871 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇可汗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 872 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 873 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇瓦窑讫台路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 874 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 875 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 876 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 877 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 878 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 879 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 880 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 881 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明东街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 882 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明东街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 883 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明东街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 884 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 885 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 886 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 887 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 888 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 889 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 890 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 891 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 892 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 893 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 894 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 895 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 896 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 897 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 898 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 899 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 900 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + +消火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 901 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 902 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 903 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 904 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 905 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 906 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 907 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 908 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇兴泰路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 909 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇可汗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 910 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 911 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇瓦窑讫台路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市 + 消火栓编号 + 912 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 913 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 914 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 915 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明东街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 916 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 917 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 918 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 919 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 920 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 921 + 形式(地上、地下) + 地下 + 位置 + 益民路西侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 922 + 形式(地上、地下) + 地下 + 位置 + 民生路东侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 923 + 形式(地上、地下) + 地下 + 位置 + 民生路东侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 924 + 形式(地上、地下) + 地下 + 位置 + 民生路西侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 925 + 形式(地上、地下) + 地下 + 位置 + 民生路西侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 926 + 形式(地上、地下) + 地下 + 位置 + 民生路西侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 927 + 形式(地上、地下) + 地下 + 位置 + 益民路东侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 928 + 形式(地上、地下) + 地下 + 位置 + 益民路东侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 929 + 形式(地上、地下) + 地下 + 位置 + 益民路西侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 930 + 形式(地上、地下) + 地下 + 位置 + 益民路西侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 931 + 形式(地上、地下) + 地下 + 位置 + 益民路西侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 932 + 形式(地上、地下) + 地下 + 位置 + 益民路西侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 933 + 形式(地上、地下) + 地下 + 位置 + 益民路西侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 934 + 形式(地上、地下) + 地下 + 位置 + 益民路西侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 935 + 形式(地上、地下) + 地下 + 位置 + 益民路西侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 936 + 形式(地上、地下) + 地下 + 位置 + 益民路西侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 937 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇爱民路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 938 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇爱民路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 939 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇爱民路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 940 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇爱民路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 941 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇爱民路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 942 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纵十八路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 943 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纵十八路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 944 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纵十八路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 945 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纵十八路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 946 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纵十八路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 947 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纵十八路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 948 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纵十八路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 949 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纵十八路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 950 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纵十八路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + 伊旗中队消防水鹤 + 档案卡 + + + + + + + + + 部别:鄂尔多斯市伊旗中队 + 时间: 二 O 一 七 年 + + + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 001 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路西街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 002 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路西街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 003 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达尔扈特街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 004 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇工业北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 005 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇伊金霍洛街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 006 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇兴泰路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 007 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇泰康东街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 008 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 009 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 010 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇可汗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 011 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红庆河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + diff --git a/FireStaionDocuments/Uploaded/鄂尔多斯市伊旗中队水源档案2017年-bac51ccb-f11b-417c-bbd9-8a786eebc406.docx b/FireStaionDocuments/Uploaded/鄂尔多斯市伊旗中队水源档案2017年-bac51ccb-f11b-417c-bbd9-8a786eebc406.docx new file mode 100644 index 0000000..3d94598 --- /dev/null +++ b/FireStaionDocuments/Uploaded/鄂尔多斯市伊旗中队水源档案2017年-bac51ccb-f11b-417c-bbd9-8a786eebc406.docx @@ -0,0 +1,27497 @@ + 伊旗中队消防水源 + 档案卡 + + + + + + + + + + 部别:鄂尔多斯市伊旗中队 + + + + + 伊旗中队消火栓档案卡 + + + + + + + + + + + 部别:鄂尔多斯市伊旗中队 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 001 + 形式(地上、地下) + 地下 + 位置 + 文明路东街国泰商务广场B座 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 002 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 + 消火栓编号 + 003 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.422 + 变更日期 + 2013.11.16 + 注销日期 + + +单 位:鄂尔多斯市伊旗中队 + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 004 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.20 + 注销日期 + + + + \* MERGEFORMAT + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 005 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.20 + 注销日期 + + + + + 消 火 栓 档 案 卡 + 消火栓编号 + 006 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.20 + 注销日期 + + +单 位:鄂尔多斯市伊旗中队 + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 007 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 008 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2014.3.15 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 009 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 20.14.3.20 + 注销日期 + + + + 消火栓编号 + 010 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.9.26 + 注销日期 + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + + + + + + 消 火 栓 档 案 卡 + 消火栓编号 + 011 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.1010 + 注销日期 + + +单 位:鄂尔多斯市伊旗中队 + + + + 消 火 栓 档 案 卡 + 消火栓编号 + 012 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +单 位:鄂尔多斯市伊旗中队 + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 013 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 014 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 + 消火栓编号 + 015 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + +单 位:鄂尔多斯市伊旗中队 + + + 消 火 栓 档 案 卡 + 消火栓编号 + 016 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.10.18 + 注销日期 + + +单 位:鄂尔多斯市伊旗中队 + + + 消 火 栓 档 案 卡 + 消火栓编号 + 017 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) +环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.10.8 + 注销日期 + + +单 位:鄂尔多斯市伊旗中队 + + + 消 火 栓 档 案 卡 + 消火栓编号 + 018 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.9.28 + 注销日期 + + +单 位:鄂尔多斯市伊旗中队 + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 019 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.9.28 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 020 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.9.28 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 021 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.9.28 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 022 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.28 + 注销日期 + + + + + + 消 火 栓 档 案 卡 + 单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 023 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 024 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 025 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 026 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 027 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 028 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 029 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 030 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 031 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.25 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 032 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.25 + 变更日期 + 2014.2.12 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 033 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2014.2.12 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 034 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2014.2.12 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 035 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇瓦窑讫台路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 036 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇瓦窑讫台路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 037 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 038 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 040 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 041 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 042 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 043 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 044 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 045 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 046 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇北环路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.10.16 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 047 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇北环路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.10.16 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 048 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 049 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 050 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 051 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 052 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 053 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 054 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 055 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 056 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 057 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 058 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 059 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 060 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 061 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 062 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 063 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 064 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 065 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 066 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 067 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 068 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 069 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 070 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 071 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 072 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 073 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 074 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 075 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 076 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 077 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 078 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 079 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 080 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 081 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 082 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 083 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 084 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 085 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 086 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 087 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 088 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 089 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 090 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 091 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇安达路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 092 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 093 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中 + 消火栓编号 + 094 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 095 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 096 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇工业街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 097 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.21 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 098 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横四路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.21 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 099 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横四路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.11.8 + 变更日期 + 2013.10.21 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 100 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.11.8 + 变更日期 + 2013.10.21 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 101 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇苏布尔噶街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.11.8 + 变更日期 + 2014.2.21 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 102 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇苏布尔噶街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.11.8 + 变更日期 + 2013.10.21 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 103 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇苏布尔噶街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.11.8 + 变更日期 + 2014.3.9 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 104 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇苏布尔噶街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.11.6 + 变更日期 + 2014.2.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 105 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇苏布尔噶街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.11.6 + 变更日期 + 2014.2.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 106 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.4 + 变更日期 + 2014.2.27 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 107 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.4 + 变更日期 + 2014.1.21 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 108 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.4 + 变更日期 + 2013.6.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 109 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.4 + 变更日期 + 2013.6.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 110 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇柳沟街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.13 + 变更日期 + 2013.6.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 111 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇柳沟街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.13 + 变更日期 + 2013.6.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 112 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇柳沟街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.13 + 变更日期 + 2013.6.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 113 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇柳沟街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.13 + 变更日期 + 2013.6.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 114 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.5.25 + 变更日期 + 2013.6.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 115 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.5.25 + 变更日期 + 2013.6.14 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 116 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇可汗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.5.25 + 变更日期 + 2013.6.14 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 117 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇可汗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.16 + 变更日期 + 2013.6.14 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 118 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇可汗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.16 + 变更日期 + 2013.6.14 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 119 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇可汗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.16 + 变更日期 + 2013.6.14 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 120 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇可汗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.16 + 变更日期 + 2013.6.14 + 注销日期 + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 121 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇可汗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.6.14 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 122 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.6.14 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 123 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.3.5 + 注销日期 + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 124 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.3.5 + 注销日期 + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 125 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.3.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 126 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.3.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 127 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.3.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 128 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.3.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 129 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.3.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 130 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.24 + 变更日期 + 2013.3.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 131 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.3.18 + 变更日期 + 2013.3.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 132 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.15 + 变更日期 + 2013.3.9 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 133 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.20 + 变更日期 + 2013.3.16 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 134 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.15 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 135 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.15 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 136 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.15 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 137 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.15 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 138 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.15 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 139 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.15 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 140 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 141 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 142 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 143 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 144 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 145 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 146 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 147 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 148 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 149 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇橫十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 150 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.10 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 151 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇橫十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.10 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 152 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇橫十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.10 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 153 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇橫十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.10 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 154 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.10 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 155 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.10 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 156 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇橫十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.10 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 157 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.10 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 158 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇橫十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.10 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 159 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 160 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 161 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 162 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 163 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 164 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.23 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 165 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.23 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 166 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.23 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 167 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.23 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 168 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.23 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 169 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 170 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 171 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 172 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 173 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 174 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 175 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 176 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 177 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 178 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 179 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 180 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 181 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 182 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇世纪大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 +2011.4.24 + 变更日期 + 2013.10.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 183 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇世纪大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.13 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 184 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇世纪大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 185 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 186 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 187 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 188 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 189 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 190 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 191 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 192 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 193 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 194 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 195 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.8 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 196 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.8 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 197 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.8 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 198 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.8 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 199 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.8 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 200 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.8 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 201 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.8 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 202 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 203 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 204 + 形式(地上、地下) + 地乔树成 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 205 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇札萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 206 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 207 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 208 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 209 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.14 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 210 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明东街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.14 + 注销日期 + + + + 消 火 栓 档 案 卡 + 消火栓编号 + 211 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明东街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.14 + 注销日期 + + +单 位:鄂尔多斯市伊旗中队 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 212 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明东街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 213 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 214 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 215 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 216 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 217 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 218 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 219 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 220 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 221 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 222 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 223 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 224 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 225 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 226 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 227 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 228 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 229 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 230 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 231 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 232 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 233 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 234 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 235 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 236 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 237 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 238 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 239 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 240 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 241 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.26 + 注销日期 + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 242 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 245 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 246 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 244 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.5 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 247 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 248 + 形式(地上、地下) + 地下 + 位置 + 文明路东街国泰商务广场B座 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 249 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 250 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.422 + 变更日期 + 2013.11.16 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 251 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.20 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 252 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.20 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 253 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.20 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 254 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.8 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 256 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 20.14.3.20 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 255 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2014.3.15 + 注销日期 + + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 257 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.9.26 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 258 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.1010 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 259 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 260 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 261 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 262 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 263 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.10.18 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 264 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) +环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.10.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 265 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.9.28 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 266 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.9.28 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 267 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.9.28 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 268 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 269 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 270 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 271 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 272 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 273 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 274 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 275 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 276 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 277 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 278 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 279 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 280 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 281 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 282 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 283 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 284 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 285 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 286 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 287 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 288 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 289 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 290 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 291 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 292 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 293 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 294 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 295 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 296 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 297 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 298 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 299 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 300 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 301 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 302 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.23 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 303 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.23 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 304 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.23 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 305 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.23 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 306 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.23 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 307 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 308 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 309 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 310 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 311 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 312 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 313 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 314 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 315 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 316 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.422 + 变更日期 + 2013.11.16 + 注销日期 + + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 317 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇霞光西街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 318 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇霞光西街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.422 + 变更日期 + 2013.11.16 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 319 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇霞光西街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.20 + 注销日期 + + + + + 消 火 栓 档 案 卡 + + + 消火栓编号 + 320 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.20 + 注销日期 + + +单 位:鄂尔多斯市伊旗中队 + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 321 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 322 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 323 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.8 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 324 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.9.26 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 325 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 326 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 327 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 328 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 329 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 330 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 331 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 333 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 332 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 334 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 335 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 337 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 338 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 336 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 339 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 340 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 341 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 342 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 343 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 344 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 345 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 346 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 347 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 348 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 349 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 350 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 351 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 352 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 353 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 355 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 356 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 357 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 358 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 359 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 360 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 361 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 362 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 363 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 364 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 365 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 366 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 367 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 368 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 369 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 370 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 371 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 372 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 373 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 374 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 375 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 376 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 377 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 378 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 379 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 380 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 381 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 382 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横四路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 383 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横四路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 384 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横四路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 385 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横四路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 386 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横四路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 387 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横四路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 388 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 389 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 390 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 391 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 392 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 393 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 394 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 395 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 396 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 397 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 398 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 399 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 400 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 402 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 403 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 404 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 405 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 406 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 407 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 408 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 409 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 410 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 411 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 412 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 413 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 414 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 415 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 416 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 417 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 418 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 419 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 420 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 421 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 422 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 423 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 424 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 425 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 426 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 427 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 428 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 429 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 430 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 431 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 432 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 433 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 434 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 435 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 436 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 437 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 438 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 439 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 440 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 441 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 442 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 443 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 444 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇北环路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.10.16 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 445 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.10.16 + 注销日期 + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 446 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇北环路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.10.16 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 447 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 448 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 449 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 450 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 451 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 452 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 453 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 454 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 455 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 456 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 457 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 458 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 459 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 460 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 461 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 462 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 463 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 464 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 465 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 466 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 467 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 468 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 469 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 470 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 471 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 472 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 473 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 474 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 475 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 476 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 477 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 478 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 479 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 480 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 481 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 482 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 483 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 484 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 485 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 486 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 487 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 488 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 489 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 490 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇安达路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中 + 消火栓编号 + 492 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 493 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 494 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.21 + 注销日期 + + + + 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 495 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇工业街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 496 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横四路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.11.8 + 变更日期 + 2013.10.21 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 497 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横四路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.21 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 498 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.11.8 + 变更日期 + 2013.10.21 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 499 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 500 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 501 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 502 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 503 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 504 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 505 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 506 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 507 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 508 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 509 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 510 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 511 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 512 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 513 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 514 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 515 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 516 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 517 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 518 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 519 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 520 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 521 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 522 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 523 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 524 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 525 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 526 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 527 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 528 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 + 消火栓编号 + 529 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + 单 位:鄂尔多斯市伊旗中队 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 530 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 531 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 532 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 533 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 534 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 535 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.422 + 变更日期 + 2013.11.16 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 536 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 537 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇瓦窑讫台路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 538 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 539 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.20 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 540 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2015.11.18 + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 541 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇橫十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.10 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 542 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.23 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 543 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 544 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 545 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 546 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 547 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 548 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.3.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 549 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.4 + 变更日期 + 2013.6.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 550 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 551 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.20 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 552 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇柳沟街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.13 + 变更日期 + 2013.6.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 553 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 554 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 555 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 556 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 557 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 558 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 559 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 560 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.15 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 561 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 562 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 563 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 564 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2014.2.12 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 565 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 566 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 567 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 568 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.21 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 569 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 570 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 571 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 572 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中 + 消火栓编号 + 573 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 575 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 576 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 577 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 578 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 579 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇苏布尔噶街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.11.6 + 变更日期 + 2014.2.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 580 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 581 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 582 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 583 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 584 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 585 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横四路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 586 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 587 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 588 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 589 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 590 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 591 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 592 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 593 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 594 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 20.14.3.20 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 595 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横四路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 596 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 597 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 598 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 599 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.9.28 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 600 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 601 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.422 + 变更日期 + 2013.11.16 + 注销日期 + + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 602 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 603 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 604 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.15 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 605 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 606 + 形式(地上、地下) + 地乔树成 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 607 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 20.14.3.20 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 608 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 609 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 610 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 611 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.15 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 612 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 613 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 614 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.21 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 615 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇霞光西街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 616 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 617 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.20 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 618 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 619 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 620 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 621 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 622 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 623 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.9.15 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 624 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.19 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 625 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 626 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 627 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 628 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 629 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.23 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 630 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 631 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇横十路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 632 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.18 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 633 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.1.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 634 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇西山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 635 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 636 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 637 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 638 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 639 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇可汗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 640 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 641 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.4 + 变更日期 + 2013.6.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 642 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 643 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 644 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 645 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 646 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 647 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.11.5 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 648 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇札萨克街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 649 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 650 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 651 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 652 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.9.8 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 653 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 654 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇扎萨克路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2012.3.4 + 变更日期 + 2013.10.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 655 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 656 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 657 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明东街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.14 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 658 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.10.18 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 659 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 660 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 661 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 662 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 663 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 664 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 665 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 666 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 667 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 668 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 669 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 670 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 671 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 672 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.25 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 673 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 674 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 675 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 676 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 677 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛阿镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.2.19 + 变更日期 + 2013.11.8 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 678 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 679 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 680 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 681 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 682 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 683 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 684 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 685 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 686 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 687 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 688 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明东街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.14 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 689 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 690 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.8.2 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 691 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 692 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.17 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 693 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.8.4 + 变更日期 + 2013.6.26 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 694 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 695 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 696 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 697 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 698 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 699 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 700 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 701 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2014.3.15 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 702 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 703 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 704 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 705 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 705 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 707 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 + 单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 708 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 709 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 710 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 711 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 712 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 713 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 714 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 715 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 716 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 717 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 718 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇兴泰路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 719 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇可汗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 720 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 721 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 722 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 723 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 724 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 725 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 726 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇瓦窑讫台路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 727 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇瓦窑讫台路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 728 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇伊金霍洛旗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 729 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 730 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.14 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 731 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 732 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 733 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 734 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇工业街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 735 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) +环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.23 + 变更日期 + 2013.10.8 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 736 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 737 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 738 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 739 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 740 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 741 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 742 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.9 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 743 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 744 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 745 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 746 + 形式(地上、地下) + 地乔树成 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.7.13 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 747 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 748 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 749 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2013.10.12 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 750 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.10.19 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 751 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热滨河东路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 752 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热滨安达路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 753 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 754 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 755 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 756 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 757 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山北路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 758 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山北路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 759 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山北路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 760 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 761 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 762 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 763 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 764 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 765 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 766 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 767 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 768 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 769 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 770 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 771 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 772 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 773 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 774 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 775 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 776 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 777 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 779 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 780 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 781 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 782 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 783 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 784 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 785 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 786 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 787 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇湖滨路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 788 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 789 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 790 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 791 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 792 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 793 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 794 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 795 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 796 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 797 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 798 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 799 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 800 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 801 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 802 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 803 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 804 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 805 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 806 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 807 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 808 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 809 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 810 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 811 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 812 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 813 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 814 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 815 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 816 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 817 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 818 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 819 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 820 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 821 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 822 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 823 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 824 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 825 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 826 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 827 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 828 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 829 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 830 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 831 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 832 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 833 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 834 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 835 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 836 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 837 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.11 + 变更日期 + 2013.5.17 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 838 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + \* MERGEFORMAT + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 839 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + \* MERGEFORMAT + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 840 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + \* MERGEFORMAT + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 841 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 842 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 +无 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 843 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇工业街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 844 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 845 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 846 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 847 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 848 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 849 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 850 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 851 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 852 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 736 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.6.15 + 变更日期 + 2013.10.16 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 854 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) +环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 855 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇滨河大道 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 856 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 857 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 858 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 859 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇伊金霍洛旗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 860 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇瓦窑讫台路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 861 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 862 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 863 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 864 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 713 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 866 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 867 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 868 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 869 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 870 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇兴泰路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 871 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇可汗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 872 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 873 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇瓦窑讫台路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 874 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 875 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 876 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 877 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 878 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 879 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 880 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 881 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明东街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 882 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明东街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 883 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明东街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 884 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 885 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 886 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 887 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 888 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 889 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 890 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 891 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 892 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 893 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 894 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 895 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 896 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 897 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 898 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 899 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇东山西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 900 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + +消火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 901 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 902 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 903 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纳林河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.2.12 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 904 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 905 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 906 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 907 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 908 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇兴泰路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 909 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇可汗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 910 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇电力街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 911 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇瓦窑讫台路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市 + 消火栓编号 + 912 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 913 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇CBD区 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 914 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红海子路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 915 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明东街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 916 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 917 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 918 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热达尔扈特路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 919 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 920 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇阿勒腾席热路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.7.12 + 变更日期 + 无 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 921 + 形式(地上、地下) + 地下 + 位置 + 益民路西侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 922 + 形式(地上、地下) + 地下 + 位置 + 民生路东侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 923 + 形式(地上、地下) + 地下 + 位置 + 民生路东侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + +消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 924 + 形式(地上、地下) + 地下 + 位置 + 民生路西侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 925 + 形式(地上、地下) + 地下 + 位置 + 民生路西侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 926 + 形式(地上、地下) + 地下 + 位置 + 民生路西侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 927 + 形式(地上、地下) + 地下 + 位置 + 益民路东侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 928 + 形式(地上、地下) + 地下 + 位置 + 益民路东侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 929 + 形式(地上、地下) + 地下 + 位置 + 益民路西侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 930 + 形式(地上、地下) + 地下 + 位置 + 益民路西侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 931 + 形式(地上、地下) + 地下 + 位置 + 益民路西侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 932 + 形式(地上、地下) + 地下 + 位置 + 益民路西侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 933 + 形式(地上、地下) + 地下 + 位置 + 益民路西侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 934 + 形式(地上、地下) + 地下 + 位置 + 益民路西侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 935 + 形式(地上、地下) + 地下 + 位置 + 益民路西侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 936 + 形式(地上、地下) + 地下 + 位置 + 益民路西侧 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2015.2.19 + 变更日期 + + 注销日期 + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 937 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇爱民路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 938 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇爱民路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 939 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇爱民路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 940 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇爱民路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 941 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇爱民路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 942 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纵十八路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 943 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纵十八路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 944 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纵十八路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 945 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纵十八路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 946 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纵十八路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 947 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纵十八路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 948 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纵十八路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 949 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纵十八路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 950 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇纵十八路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.24 + 变更日期 + 2014.3.16 + 注销日期 + + + + + + 伊旗中队消防水鹤 + 档案卡 + + + + + + + + + 部别:鄂尔多斯市伊旗中队 + 时间: 二 O 一 七 年 + + + + + + + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 001 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路西街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 002 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明路西街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 003 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇达尔扈特街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 004 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇工业北街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 005 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇伊金霍洛街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 006 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇兴泰路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 007 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇泰康东街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 008 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇文明西路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 009 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇通格朗路 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 010 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇可汗街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + 消 火 栓 档 案 卡 +单 位:鄂尔多斯市伊旗中队 + 消火栓编号 + 011 + 形式(地上、地下) + 地下 + 位置 + 伊金霍洛旗阿勒腾席热镇红庆河街 + 管网形式(环状、枝状) + 环状 + 管网直径 + 300.mm + 管网压力 + 1.1mpa + 供水单位 + 自来水公司 + 负责人 + 乔树成 + 电话 + 8689316 + 安装日期 + 2011.4.22 + 变更日期 + 2013.11.8 + 注销日期 + + +填卡人:苗境楷 审核人:贾浩 填卡日期:2017.10.28 + + diff --git a/FireStaionDocuments/Uploaded/重点单位组织情况、设施情况-26c17be4-22c1-48b1-b4cd-d0c5e76700fc.docx b/FireStaionDocuments/Uploaded/重点单位组织情况、设施情况-26c17be4-22c1-48b1-b4cd-d0c5e76700fc.docx new file mode 100644 index 0000000..4f1fcf6 --- /dev/null +++ b/FireStaionDocuments/Uploaded/重点单位组织情况、设施情况-26c17be4-22c1-48b1-b4cd-d0c5e76700fc.docx @@ -0,0 +1,140 @@ + 消防安全重点单位微型消防站备案表 + 微型消防站名称:伊旗丽景广场消防站 + 基本情况 + 建设管理 + 单位名称 + 伊金霍洛旗丽景广场 + 建成日期 + 15年12月10日 + + 地址 + 伊旗供电局对面 + 值班电话 + 3851011 + + 站房建设 + 形式 +□与消防控制室合用 +√单独建设 + 站房面积 + (平方米) + 开放式 + 队员情况 + 姓名 + 性别 + 出生年月 + 站内职务 + 兼任职务 + 联系电话 + + 丁熙宸 + 男 + 1984.3 + 站长 + 总经理 + 18947766662 + + 王云 + 男 + + 副站长 + 副总经理 + 13327070119 + + 姜朋朋 + 男 + 1989.7 + 联络员 + 代物业经理 + 15949402741 + + 杜凤山 + 男 + 1988.8 + 消防员 + 电工 + 15047753857 + + 白文华 + 男 + 1963.2 + 消防员 + 保安 + 18047769322 + + 杨春和 + 男 + 1958.3 + 消防员 + 监控室值班 + 15247734840 + + 袁二荣 + 男 + 1964.3 + 消防员 + 监控室值班 + 15247703727 + + 陈谢 + 男 + 1965.7 + 消防员 + 保安 + 15247736579 + + 郝开彪 + 男 + 1968.1 + 消防员 + 保安 + 13848678112 + 消防装备 + 器材配备 + 小型消防车 + (辆) + 消防摩托车(辆) + 灭火器 + (具) + 消防水枪 + (支) + 消防水带 + (盘) + + 0 + 0 + 10具 + 6支 + 6盘 + + 消防头盔(顶) + 灭火防护服(套) + 灭火防护靴 + (双) + 外线电话 + (部) + 手持对讲机 + (台) + + 6顶 + 6套 +6双 + 1部 + 6台 + + 其他消防装备、器材 + + 消防装备 + 器材名称 + 手电 + 安全绳 + 斧子 + + + 配置数量 + 0 + 2 + 0 + +备注: +注:、微型消防站由各市消防部门统一进行编号,编号规则为:Y()□□□, Y()代表几级消防安全重点单位,□□□为微型消防站序号。如,Y()001,。2、微型消防站自建成之日起15个工作日内,报辖区公安消防部门备案。3、微型消防站有关照片要同时备案存档,主要反映微型消防站整体外观、车辆、装备器材、人员等情况,并附简要文字说明。4、此表一式两份,公安消防部门编号盖章后,一份存档备案,一份由微型消防站管理单位保存备查。 diff --git a/FireStaionDocuments/Uploaded/重点单位组织情况、设施情况-413ab052-33b8-48a4-8fc1-100158ffa49e.docx b/FireStaionDocuments/Uploaded/重点单位组织情况、设施情况-413ab052-33b8-48a4-8fc1-100158ffa49e.docx new file mode 100644 index 0000000..4f1fcf6 --- /dev/null +++ b/FireStaionDocuments/Uploaded/重点单位组织情况、设施情况-413ab052-33b8-48a4-8fc1-100158ffa49e.docx @@ -0,0 +1,140 @@ + 消防安全重点单位微型消防站备案表 + 微型消防站名称:伊旗丽景广场消防站 + 基本情况 + 建设管理 + 单位名称 + 伊金霍洛旗丽景广场 + 建成日期 + 15年12月10日 + + 地址 + 伊旗供电局对面 + 值班电话 + 3851011 + + 站房建设 + 形式 +□与消防控制室合用 +√单独建设 + 站房面积 + (平方米) + 开放式 + 队员情况 + 姓名 + 性别 + 出生年月 + 站内职务 + 兼任职务 + 联系电话 + + 丁熙宸 + 男 + 1984.3 + 站长 + 总经理 + 18947766662 + + 王云 + 男 + + 副站长 + 副总经理 + 13327070119 + + 姜朋朋 + 男 + 1989.7 + 联络员 + 代物业经理 + 15949402741 + + 杜凤山 + 男 + 1988.8 + 消防员 + 电工 + 15047753857 + + 白文华 + 男 + 1963.2 + 消防员 + 保安 + 18047769322 + + 杨春和 + 男 + 1958.3 + 消防员 + 监控室值班 + 15247734840 + + 袁二荣 + 男 + 1964.3 + 消防员 + 监控室值班 + 15247703727 + + 陈谢 + 男 + 1965.7 + 消防员 + 保安 + 15247736579 + + 郝开彪 + 男 + 1968.1 + 消防员 + 保安 + 13848678112 + 消防装备 + 器材配备 + 小型消防车 + (辆) + 消防摩托车(辆) + 灭火器 + (具) + 消防水枪 + (支) + 消防水带 + (盘) + + 0 + 0 + 10具 + 6支 + 6盘 + + 消防头盔(顶) + 灭火防护服(套) + 灭火防护靴 + (双) + 外线电话 + (部) + 手持对讲机 + (台) + + 6顶 + 6套 +6双 + 1部 + 6台 + + 其他消防装备、器材 + + 消防装备 + 器材名称 + 手电 + 安全绳 + 斧子 + + + 配置数量 + 0 + 2 + 0 + +备注: +注:、微型消防站由各市消防部门统一进行编号,编号规则为:Y()□□□, Y()代表几级消防安全重点单位,□□□为微型消防站序号。如,Y()001,。2、微型消防站自建成之日起15个工作日内,报辖区公安消防部门备案。3、微型消防站有关照片要同时备案存档,主要反映微型消防站整体外观、车辆、装备器材、人员等情况,并附简要文字说明。4、此表一式两份,公安消防部门编号盖章后,一份存档备案,一份由微型消防站管理单位保存备查。 diff --git a/FireStaionDocuments/Uploaded/重点单位组织情况、设施情况-60388dae-eece-4023-b618-c3ec8bfc5f8c.docx b/FireStaionDocuments/Uploaded/重点单位组织情况、设施情况-60388dae-eece-4023-b618-c3ec8bfc5f8c.docx new file mode 100644 index 0000000..4f1fcf6 --- /dev/null +++ b/FireStaionDocuments/Uploaded/重点单位组织情况、设施情况-60388dae-eece-4023-b618-c3ec8bfc5f8c.docx @@ -0,0 +1,140 @@ + 消防安全重点单位微型消防站备案表 + 微型消防站名称:伊旗丽景广场消防站 + 基本情况 + 建设管理 + 单位名称 + 伊金霍洛旗丽景广场 + 建成日期 + 15年12月10日 + + 地址 + 伊旗供电局对面 + 值班电话 + 3851011 + + 站房建设 + 形式 +□与消防控制室合用 +√单独建设 + 站房面积 + (平方米) + 开放式 + 队员情况 + 姓名 + 性别 + 出生年月 + 站内职务 + 兼任职务 + 联系电话 + + 丁熙宸 + 男 + 1984.3 + 站长 + 总经理 + 18947766662 + + 王云 + 男 + + 副站长 + 副总经理 + 13327070119 + + 姜朋朋 + 男 + 1989.7 + 联络员 + 代物业经理 + 15949402741 + + 杜凤山 + 男 + 1988.8 + 消防员 + 电工 + 15047753857 + + 白文华 + 男 + 1963.2 + 消防员 + 保安 + 18047769322 + + 杨春和 + 男 + 1958.3 + 消防员 + 监控室值班 + 15247734840 + + 袁二荣 + 男 + 1964.3 + 消防员 + 监控室值班 + 15247703727 + + 陈谢 + 男 + 1965.7 + 消防员 + 保安 + 15247736579 + + 郝开彪 + 男 + 1968.1 + 消防员 + 保安 + 13848678112 + 消防装备 + 器材配备 + 小型消防车 + (辆) + 消防摩托车(辆) + 灭火器 + (具) + 消防水枪 + (支) + 消防水带 + (盘) + + 0 + 0 + 10具 + 6支 + 6盘 + + 消防头盔(顶) + 灭火防护服(套) + 灭火防护靴 + (双) + 外线电话 + (部) + 手持对讲机 + (台) + + 6顶 + 6套 +6双 + 1部 + 6台 + + 其他消防装备、器材 + + 消防装备 + 器材名称 + 手电 + 安全绳 + 斧子 + + + 配置数量 + 0 + 2 + 0 + +备注: +注:、微型消防站由各市消防部门统一进行编号,编号规则为:Y()□□□, Y()代表几级消防安全重点单位,□□□为微型消防站序号。如,Y()001,。2、微型消防站自建成之日起15个工作日内,报辖区公安消防部门备案。3、微型消防站有关照片要同时备案存档,主要反映微型消防站整体外观、车辆、装备器材、人员等情况,并附简要文字说明。4、此表一式两份,公安消防部门编号盖章后,一份存档备案,一份由微型消防站管理单位保存备查。 diff --git a/FireStaionDocuments/Uploaded/重点单位组织情况、设施情况-a2c90aa6-defe-4434-af32-020774f24119.docx b/FireStaionDocuments/Uploaded/重点单位组织情况、设施情况-a2c90aa6-defe-4434-af32-020774f24119.docx new file mode 100644 index 0000000..4f1fcf6 --- /dev/null +++ b/FireStaionDocuments/Uploaded/重点单位组织情况、设施情况-a2c90aa6-defe-4434-af32-020774f24119.docx @@ -0,0 +1,140 @@ + 消防安全重点单位微型消防站备案表 + 微型消防站名称:伊旗丽景广场消防站 + 基本情况 + 建设管理 + 单位名称 + 伊金霍洛旗丽景广场 + 建成日期 + 15年12月10日 + + 地址 + 伊旗供电局对面 + 值班电话 + 3851011 + + 站房建设 + 形式 +□与消防控制室合用 +√单独建设 + 站房面积 + (平方米) + 开放式 + 队员情况 + 姓名 + 性别 + 出生年月 + 站内职务 + 兼任职务 + 联系电话 + + 丁熙宸 + 男 + 1984.3 + 站长 + 总经理 + 18947766662 + + 王云 + 男 + + 副站长 + 副总经理 + 13327070119 + + 姜朋朋 + 男 + 1989.7 + 联络员 + 代物业经理 + 15949402741 + + 杜凤山 + 男 + 1988.8 + 消防员 + 电工 + 15047753857 + + 白文华 + 男 + 1963.2 + 消防员 + 保安 + 18047769322 + + 杨春和 + 男 + 1958.3 + 消防员 + 监控室值班 + 15247734840 + + 袁二荣 + 男 + 1964.3 + 消防员 + 监控室值班 + 15247703727 + + 陈谢 + 男 + 1965.7 + 消防员 + 保安 + 15247736579 + + 郝开彪 + 男 + 1968.1 + 消防员 + 保安 + 13848678112 + 消防装备 + 器材配备 + 小型消防车 + (辆) + 消防摩托车(辆) + 灭火器 + (具) + 消防水枪 + (支) + 消防水带 + (盘) + + 0 + 0 + 10具 + 6支 + 6盘 + + 消防头盔(顶) + 灭火防护服(套) + 灭火防护靴 + (双) + 外线电话 + (部) + 手持对讲机 + (台) + + 6顶 + 6套 +6双 + 1部 + 6台 + + 其他消防装备、器材 + + 消防装备 + 器材名称 + 手电 + 安全绳 + 斧子 + + + 配置数量 + 0 + 2 + 0 + +备注: +注:、微型消防站由各市消防部门统一进行编号,编号规则为:Y()□□□, Y()代表几级消防安全重点单位,□□□为微型消防站序号。如,Y()001,。2、微型消防站自建成之日起15个工作日内,报辖区公安消防部门备案。3、微型消防站有关照片要同时备案存档,主要反映微型消防站整体外观、车辆、装备器材、人员等情况,并附简要文字说明。4、此表一式两份,公安消防部门编号盖章后,一份存档备案,一份由微型消防站管理单位保存备查。 diff --git a/FireStaionDocuments/Uploaded/重点单位组织情况、设施情况-d8cefa2b-6777-4a6b-9930-3c10026c43df.docx b/FireStaionDocuments/Uploaded/重点单位组织情况、设施情况-d8cefa2b-6777-4a6b-9930-3c10026c43df.docx new file mode 100644 index 0000000..4f1fcf6 --- /dev/null +++ b/FireStaionDocuments/Uploaded/重点单位组织情况、设施情况-d8cefa2b-6777-4a6b-9930-3c10026c43df.docx @@ -0,0 +1,140 @@ + 消防安全重点单位微型消防站备案表 + 微型消防站名称:伊旗丽景广场消防站 + 基本情况 + 建设管理 + 单位名称 + 伊金霍洛旗丽景广场 + 建成日期 + 15年12月10日 + + 地址 + 伊旗供电局对面 + 值班电话 + 3851011 + + 站房建设 + 形式 +□与消防控制室合用 +√单独建设 + 站房面积 + (平方米) + 开放式 + 队员情况 + 姓名 + 性别 + 出生年月 + 站内职务 + 兼任职务 + 联系电话 + + 丁熙宸 + 男 + 1984.3 + 站长 + 总经理 + 18947766662 + + 王云 + 男 + + 副站长 + 副总经理 + 13327070119 + + 姜朋朋 + 男 + 1989.7 + 联络员 + 代物业经理 + 15949402741 + + 杜凤山 + 男 + 1988.8 + 消防员 + 电工 + 15047753857 + + 白文华 + 男 + 1963.2 + 消防员 + 保安 + 18047769322 + + 杨春和 + 男 + 1958.3 + 消防员 + 监控室值班 + 15247734840 + + 袁二荣 + 男 + 1964.3 + 消防员 + 监控室值班 + 15247703727 + + 陈谢 + 男 + 1965.7 + 消防员 + 保安 + 15247736579 + + 郝开彪 + 男 + 1968.1 + 消防员 + 保安 + 13848678112 + 消防装备 + 器材配备 + 小型消防车 + (辆) + 消防摩托车(辆) + 灭火器 + (具) + 消防水枪 + (支) + 消防水带 + (盘) + + 0 + 0 + 10具 + 6支 + 6盘 + + 消防头盔(顶) + 灭火防护服(套) + 灭火防护靴 + (双) + 外线电话 + (部) + 手持对讲机 + (台) + + 6顶 + 6套 +6双 + 1部 + 6台 + + 其他消防装备、器材 + + 消防装备 + 器材名称 + 手电 + 安全绳 + 斧子 + + + 配置数量 + 0 + 2 + 0 + +备注: +注:、微型消防站由各市消防部门统一进行编号,编号规则为:Y()□□□, Y()代表几级消防安全重点单位,□□□为微型消防站序号。如,Y()001,。2、微型消防站自建成之日起15个工作日内,报辖区公安消防部门备案。3、微型消防站有关照片要同时备案存档,主要反映微型消防站整体外观、车辆、装备器材、人员等情况,并附简要文字说明。4、此表一式两份,公安消防部门编号盖章后,一份存档备案,一份由微型消防站管理单位保存备查。 diff --git a/FireStaionDocuments/Uploaded/重点单位组织情况、设施情况-e75ab382-4e8b-42ae-87dd-501fb7362867.docx b/FireStaionDocuments/Uploaded/重点单位组织情况、设施情况-e75ab382-4e8b-42ae-87dd-501fb7362867.docx new file mode 100644 index 0000000..4f1fcf6 --- /dev/null +++ b/FireStaionDocuments/Uploaded/重点单位组织情况、设施情况-e75ab382-4e8b-42ae-87dd-501fb7362867.docx @@ -0,0 +1,140 @@ + 消防安全重点单位微型消防站备案表 + 微型消防站名称:伊旗丽景广场消防站 + 基本情况 + 建设管理 + 单位名称 + 伊金霍洛旗丽景广场 + 建成日期 + 15年12月10日 + + 地址 + 伊旗供电局对面 + 值班电话 + 3851011 + + 站房建设 + 形式 +□与消防控制室合用 +√单独建设 + 站房面积 + (平方米) + 开放式 + 队员情况 + 姓名 + 性别 + 出生年月 + 站内职务 + 兼任职务 + 联系电话 + + 丁熙宸 + 男 + 1984.3 + 站长 + 总经理 + 18947766662 + + 王云 + 男 + + 副站长 + 副总经理 + 13327070119 + + 姜朋朋 + 男 + 1989.7 + 联络员 + 代物业经理 + 15949402741 + + 杜凤山 + 男 + 1988.8 + 消防员 + 电工 + 15047753857 + + 白文华 + 男 + 1963.2 + 消防员 + 保安 + 18047769322 + + 杨春和 + 男 + 1958.3 + 消防员 + 监控室值班 + 15247734840 + + 袁二荣 + 男 + 1964.3 + 消防员 + 监控室值班 + 15247703727 + + 陈谢 + 男 + 1965.7 + 消防员 + 保安 + 15247736579 + + 郝开彪 + 男 + 1968.1 + 消防员 + 保安 + 13848678112 + 消防装备 + 器材配备 + 小型消防车 + (辆) + 消防摩托车(辆) + 灭火器 + (具) + 消防水枪 + (支) + 消防水带 + (盘) + + 0 + 0 + 10具 + 6支 + 6盘 + + 消防头盔(顶) + 灭火防护服(套) + 灭火防护靴 + (双) + 外线电话 + (部) + 手持对讲机 + (台) + + 6顶 + 6套 +6双 + 1部 + 6台 + + 其他消防装备、器材 + + 消防装备 + 器材名称 + 手电 + 安全绳 + 斧子 + + + 配置数量 + 0 + 2 + 0 + +备注: +注:、微型消防站由各市消防部门统一进行编号,编号规则为:Y()□□□, Y()代表几级消防安全重点单位,□□□为微型消防站序号。如,Y()001,。2、微型消防站自建成之日起15个工作日内,报辖区公安消防部门备案。3、微型消防站有关照片要同时备案存档,主要反映微型消防站整体外观、车辆、装备器材、人员等情况,并附简要文字说明。4、此表一式两份,公安消防部门编号盖章后,一份存档备案,一份由微型消防站管理单位保存备查。 diff --git a/FireStaionDocuments/WeatherForecast.cs b/FireStaionDocuments/WeatherForecast.cs new file mode 100644 index 0000000..21aed0c --- /dev/null +++ b/FireStaionDocuments/WeatherForecast.cs @@ -0,0 +1,15 @@ +using System; + +namespace FireStaionDocuments +{ + public class WeatherForecast + { + public DateTime Date { get; set; } + + public int TemperatureC { get; set; } + + public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); + + public string Summary { get; set; } + } +} diff --git a/FireStaionDocuments/appsettings.Development.json b/FireStaionDocuments/appsettings.Development.json new file mode 100644 index 0000000..8983e0f --- /dev/null +++ b/FireStaionDocuments/appsettings.Development.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } + } +} diff --git a/FireStaionDocuments/appsettings.json b/FireStaionDocuments/appsettings.json new file mode 100644 index 0000000..fe4cdc0 --- /dev/null +++ b/FireStaionDocuments/appsettings.json @@ -0,0 +1,13 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } + }, + "ConnectionStrings": { + "default": "server=182.61.48.243;port=3306;user id=root;password=mysqlroot;database=FireStation_v2;charset=utf8;sslMode=None;Allow User Variables=true" + }, + "AllowedHosts": "*" +} diff --git a/FireStaionDocuments/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/FireStaionDocuments/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs new file mode 100644 index 0000000..ad8dfe1 --- /dev/null +++ b/FireStaionDocuments/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] diff --git a/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.AssemblyInfo.cs b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.AssemblyInfo.cs new file mode 100644 index 0000000..0b40188 --- /dev/null +++ b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("FireStaionDocuments")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("FireStaionDocuments")] +[assembly: System.Reflection.AssemblyTitleAttribute("FireStaionDocuments")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.AssemblyInfoInputs.cache b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.AssemblyInfoInputs.cache new file mode 100644 index 0000000..d71c2b7 --- /dev/null +++ b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +50869f76d123f223d3bb1b8f13fa2c5d69b9cc8d diff --git a/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.GeneratedMSBuildEditorConfig.editorconfig b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..ddb1879 --- /dev/null +++ b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,3 @@ +is_global = true +build_property.RootNamespace = FireStaionDocuments +build_property.ProjectDir = C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\ diff --git a/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.MvcApplicationPartsAssemblyInfo.cache b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.MvcApplicationPartsAssemblyInfo.cs b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..a9a4159 --- /dev/null +++ b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,21 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Application")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Application.Shared")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("BackGround")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Domain.Service")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Infrastructure")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.RazorTargetAssemblyInfo.cache b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.RazorTargetAssemblyInfo.cache new file mode 100644 index 0000000..0c10693 --- /dev/null +++ b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.RazorTargetAssemblyInfo.cache @@ -0,0 +1 @@ +70a05e95fa8734f47290e73fc2c0114c0d0d7abf diff --git a/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.assets.cache b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.assets.cache new file mode 100644 index 0000000..12fd722 Binary files /dev/null and b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.assets.cache differ diff --git a/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.csproj.AssemblyReference.cache b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.csproj.AssemblyReference.cache new file mode 100644 index 0000000..67793f1 Binary files /dev/null and b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.csproj.AssemblyReference.cache differ diff --git a/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.csproj.BuildWithSkipAnalyzers b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.csproj.CopyComplete b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.csproj.CoreCompileInputs.cache b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..14b1cf7 --- /dev/null +++ b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +6ded227369bc7edc74a5d41c3a031bdb711986ed diff --git a/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.csproj.FileListAbsolute.txt b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..78968e1 --- /dev/null +++ b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.csproj.FileListAbsolute.txt @@ -0,0 +1,98 @@ +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\appsettings.Development.json +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\appsettings.json +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\FireStaionDocuments.exe +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\FireStaionDocuments.deps.json +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\FireStaionDocuments.runtimeconfig.json +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\FireStaionDocuments.runtimeconfig.dev.json +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\FireStaionDocuments.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\FireStaionDocuments.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Autofac.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Autofac.Extensions.DependencyInjection.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Autofac.Extras.DynamicProxy.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\AutoMapper.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\AutoMapper.Extensions.Microsoft.DependencyInjection.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Castle.Core.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Dapper.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Hangfire.AspNetCore.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Hangfire.Core.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Hangfire.Dashboard.BasicAuthorization.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Hangfire.MySql.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Humanizer.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Abstractions.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Design.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Relational.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Abstractions.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Memory.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Abstractions.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyModel.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Options.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Primitives.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\MySqlConnector.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\NPOI.OOXML.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\NPOI.OpenXml4Net.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\NPOI.OpenXmlFormats.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\NPOI.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Pomelo.EntityFrameworkCore.MySql.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\BouncyCastle.Crypto.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\ICSharpCode.SharpZipLib.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\System.Collections.Immutable.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\System.ComponentModel.Annotations.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\System.Configuration.ConfigurationManager.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\System.Data.SqlClient.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\System.Diagnostics.DiagnosticSource.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\System.Security.Cryptography.ProtectedData.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\System.Text.Encodings.Web.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\System.Text.Json.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\ca\Hangfire.Core.resources.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\de\Hangfire.Core.resources.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\es\Hangfire.Core.resources.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\fa\Hangfire.Core.resources.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\fr\Hangfire.Core.resources.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\nb\Hangfire.Core.resources.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\nl\Hangfire.Core.resources.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\pt-BR\Hangfire.Core.resources.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\pt-PT\Hangfire.Core.resources.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\pt\Hangfire.Core.resources.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\zh-TW\Hangfire.Core.resources.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\zh\Hangfire.Core.resources.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\runtimes\win-arm64\native\sni.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\runtimes\win-x64\native\sni.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\runtimes\win-x86\native\sni.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\runtimes\unix\lib\netstandard2.0\System.Data.SqlClient.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\runtimes\win\lib\netstandard2.0\System.Data.SqlClient.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Application.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Application.Shared.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\BackGround.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Domain.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Domain.Service.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Domain.Shared.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\EntityFramework.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Infrastructure.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Application.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\BackGround.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Infrastructure.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Application.Shared.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Domain.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Domain.Service.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\Domain.Shared.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\bin\Debug\netcoreapp3.1\EntityFramework.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\obj\Debug\netcoreapp3.1\FireStaionDocuments.csproj.AssemblyReference.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\obj\Debug\netcoreapp3.1\FireStaionDocuments.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\obj\Debug\netcoreapp3.1\FireStaionDocuments.AssemblyInfoInputs.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\obj\Debug\netcoreapp3.1\FireStaionDocuments.AssemblyInfo.cs +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\obj\Debug\netcoreapp3.1\FireStaionDocuments.csproj.CoreCompileInputs.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\obj\Debug\netcoreapp3.1\FireStaionDocuments.MvcApplicationPartsAssemblyInfo.cs +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\obj\Debug\netcoreapp3.1\FireStaionDocuments.MvcApplicationPartsAssemblyInfo.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\obj\Debug\netcoreapp3.1\staticwebassets\FireStaionDocuments.StaticWebAssets.Manifest.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\obj\Debug\netcoreapp3.1\FireStaionDocuments.RazorTargetAssemblyInfo.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\obj\Debug\netcoreapp3.1\FireStaionDocuments.csproj.CopyComplete +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\obj\Debug\netcoreapp3.1\FireStaionDocuments.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\obj\Debug\netcoreapp3.1\FireStaionDocuments.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\FireStaionDocuments\obj\Debug\netcoreapp3.1\FireStaionDocuments.genruntimeconfig.cache diff --git a/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.dll b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.dll new file mode 100644 index 0000000..d0970da Binary files /dev/null and b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.dll differ diff --git a/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.genruntimeconfig.cache b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.genruntimeconfig.cache new file mode 100644 index 0000000..9784ac4 --- /dev/null +++ b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.genruntimeconfig.cache @@ -0,0 +1 @@ +3e3dbc9f9fb494b58ef50e727adf936da30c3130 diff --git a/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.pdb b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.pdb new file mode 100644 index 0000000..822d207 Binary files /dev/null and b/FireStaionDocuments/obj/Debug/netcoreapp3.1/FireStaionDocuments.pdb differ diff --git a/FireStaionDocuments/obj/Debug/netcoreapp3.1/apphost.exe b/FireStaionDocuments/obj/Debug/netcoreapp3.1/apphost.exe new file mode 100644 index 0000000..142948b Binary files /dev/null and b/FireStaionDocuments/obj/Debug/netcoreapp3.1/apphost.exe differ diff --git a/FireStaionDocuments/obj/Debug/netcoreapp3.1/staticwebassets/FireStaionDocuments.StaticWebAssets.Manifest.cache b/FireStaionDocuments/obj/Debug/netcoreapp3.1/staticwebassets/FireStaionDocuments.StaticWebAssets.Manifest.cache new file mode 100644 index 0000000..e69de29 diff --git a/FireStaionDocuments/obj/FireStaionDocuments.csproj.nuget.dgspec.json b/FireStaionDocuments/obj/FireStaionDocuments.csproj.nuget.dgspec.json new file mode 100644 index 0000000..5bc69aa --- /dev/null +++ b/FireStaionDocuments/obj/FireStaionDocuments.csproj.nuget.dgspec.json @@ -0,0 +1,641 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\FireStaionDocuments\\FireStaionDocuments.csproj": {} + }, + "projects": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application.Shared\\Application.Shared.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application.Shared\\Application.Shared.csproj", + "projectName": "Application.Shared", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application.Shared\\Application.Shared.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application.Shared\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application\\Application.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application\\Application.csproj", + "projectName": "Application", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application\\Application.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application.Shared\\Application.Shared.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application.Shared\\Application.Shared.csproj" + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\BackGround\\BackGround.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\BackGround\\BackGround.csproj" + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Service\\Domain.Service.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Service\\Domain.Service.csproj" + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj" + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[10.1.1, )" + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection": { + "target": "Package", + "version": "[8.1.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\BackGround\\BackGround.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\BackGround\\BackGround.csproj", + "projectName": "BackGround", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\BackGround\\BackGround.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\BackGround\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application.Shared\\Application.Shared.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application.Shared\\Application.Shared.csproj" + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj" + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "dependencies": { + "Hangfire.AspNetCore": { + "target": "Package", + "version": "[1.7.24, )" + }, + "Hangfire.Core": { + "target": "Package", + "version": "[1.7.24, )" + }, + "Hangfire.MySqlStorage": { + "target": "Package", + "version": "[2.0.3, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Service\\Domain.Service.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Service\\Domain.Service.csproj", + "projectName": "Domain.Service", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Service\\Domain.Service.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Service\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj" + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj", + "projectName": "Domain.Shared", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj", + "projectName": "Domain", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain.Shared\\Domain.Shared.csproj" + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj", + "projectName": "EntityFramework", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\EntityFramework.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\EntityFramework\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Domain\\Domain.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "dependencies": { + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[5.0.7, )" + }, + "Pomelo.EntityFrameworkCore.MySql": { + "target": "Package", + "version": "[5.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\FireStaionDocuments\\FireStaionDocuments.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\FireStaionDocuments\\FireStaionDocuments.csproj", + "projectName": "FireStaionDocuments", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\FireStaionDocuments\\FireStaionDocuments.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\FireStaionDocuments\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application\\Application.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application\\Application.csproj" + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\BackGround\\BackGround.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\BackGround\\BackGround.csproj" + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "dependencies": { + "Autofac.Extensions.DependencyInjection": { + "target": "Package", + "version": "[7.1.0, )" + }, + "Hangfire.Dashboard.BasicAuthorization": { + "target": "Package", + "version": "[1.0.2, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[5.0.7, )" + }, + "Microsoft.EntityFrameworkCore.Tools": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[5.0.7, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj", + "projectName": "Infrastructure", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "dependencies": { + "Autofac": { + "target": "Package", + "version": "[6.2.0, )" + }, + "Autofac.Extensions.DependencyInjection": { + "target": "Package", + "version": "[7.1.0, )" + }, + "Autofac.Extras.DynamicProxy": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.AspNetCore.Mvc.Core": { + "target": "Package", + "version": "[2.2.5, )" + }, + "Microsoft.Extensions.DependencyModel": { + "target": "Package", + "version": "[5.0.0, )" + }, + "NPOI": { + "target": "Package", + "version": "[2.5.3, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/FireStaionDocuments/obj/FireStaionDocuments.csproj.nuget.g.props b/FireStaionDocuments/obj/FireStaionDocuments.csproj.nuget.g.props new file mode 100644 index 0000000..f8fe350 --- /dev/null +++ b/FireStaionDocuments/obj/FireStaionDocuments.csproj.nuget.g.props @@ -0,0 +1,21 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\NineFishes\.nuget\packages\ + PackageReference + 6.1.0 + + + + + + + + + C:\Users\NineFishes\.nuget\packages\microsoft.entityframeworkcore.tools\5.0.7 + + \ No newline at end of file diff --git a/FireStaionDocuments/obj/FireStaionDocuments.csproj.nuget.g.targets b/FireStaionDocuments/obj/FireStaionDocuments.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/FireStaionDocuments/obj/FireStaionDocuments.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/FireStaionDocuments/obj/project.assets.json b/FireStaionDocuments/obj/project.assets.json new file mode 100644 index 0000000..efbbf0e --- /dev/null +++ b/FireStaionDocuments/obj/project.assets.json @@ -0,0 +1,7992 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": { + "Autofac/6.2.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "4.7.1" + }, + "compile": { + "lib/netstandard2.1/Autofac.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Autofac.dll": {} + } + }, + "Autofac.Extensions.DependencyInjection/7.1.0": { + "type": "package", + "dependencies": { + "Autofac": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {} + } + }, + "Autofac.Extras.DynamicProxy/6.0.0": { + "type": "package", + "dependencies": { + "Autofac": "6.0.0", + "Castle.Core": "4.4.0" + }, + "compile": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {} + } + }, + "AutoMapper/10.1.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "System.Reflection.Emit": "4.7.0" + }, + "compile": { + "lib/netstandard2.0/AutoMapper.dll": {} + }, + "runtime": { + "lib/netstandard2.0/AutoMapper.dll": {} + } + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": { + "type": "package", + "dependencies": { + "AutoMapper": "[10.1.1, 11.0.0)", + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.0.0", + "Microsoft.Extensions.Options": "3.0.0" + }, + "compile": { + "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} + } + }, + "Castle.Core/4.4.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Castle.Core.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": {} + } + }, + "Dapper/1.50.5": { + "type": "package", + "dependencies": { + "System.Data.SqlClient": "4.4.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.TypeExtensions": "4.4.0" + }, + "compile": { + "lib/netstandard2.0/Dapper.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Dapper.dll": {} + } + }, + "Hangfire.AspNetCore/1.7.24": { + "type": "package", + "dependencies": { + "Hangfire.Core": "[1.7.24]" + }, + "compile": { + "lib/netcoreapp3.0/Hangfire.AspNetCore.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/Hangfire.AspNetCore.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Hangfire.Core/1.7.24": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "11.0.1" + }, + "compile": { + "lib/netstandard2.0/Hangfire.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Hangfire.Core.dll": {} + }, + "resource": { + "lib/netstandard2.0/ca/Hangfire.Core.resources.dll": { + "locale": "ca" + }, + "lib/netstandard2.0/de/Hangfire.Core.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/Hangfire.Core.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fa/Hangfire.Core.resources.dll": { + "locale": "fa" + }, + "lib/netstandard2.0/fr/Hangfire.Core.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/nb/Hangfire.Core.resources.dll": { + "locale": "nb" + }, + "lib/netstandard2.0/nl/Hangfire.Core.resources.dll": { + "locale": "nl" + }, + "lib/netstandard2.0/pt-BR/Hangfire.Core.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/pt-PT/Hangfire.Core.resources.dll": { + "locale": "pt-PT" + }, + "lib/netstandard2.0/pt/Hangfire.Core.resources.dll": { + "locale": "pt" + }, + "lib/netstandard2.0/zh-TW/Hangfire.Core.resources.dll": { + "locale": "zh-TW" + }, + "lib/netstandard2.0/zh/Hangfire.Core.resources.dll": { + "locale": "zh" + } + } + }, + "Hangfire.Dashboard.BasicAuthorization/1.0.2": { + "type": "package", + "dependencies": { + "Hangfire.AspNetCore": "1.7.2", + "Microsoft.AspNetCore.Http.Abstractions": "2.1.1" + }, + "compile": { + "lib/netstandard2.0/Hangfire.Dashboard.BasicAuthorization.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Hangfire.Dashboard.BasicAuthorization.dll": {} + } + }, + "Hangfire.MySqlStorage/2.0.3": { + "type": "package", + "dependencies": { + "Dapper": "1.50.5", + "Hangfire.Core": "1.6.21", + "Microsoft.CSharp": "4.4.1", + "MySqlConnector": "1.0.0", + "Newtonsoft.Json": "11.0.2" + }, + "compile": { + "lib/netstandard2.0/Hangfire.MySql.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Hangfire.MySql.dll": {} + } + }, + "Humanizer.Core/2.8.26": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Humanizer.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.Core/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Authorization": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {} + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Core/2.2.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Core": "2.2.0", + "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Mvc.Abstractions": "2.2.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Routing": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.Extensions.DependencyModel": "2.1.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Diagnostics.DiagnosticSource": "4.5.0", + "System.Threading.Tasks.Extensions": "4.5.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {} + } + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {} + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {} + } + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {} + } + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore/5.0.7": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "5.0.7", + "Microsoft.EntityFrameworkCore.Analyzers": "5.0.7", + "Microsoft.Extensions.Caching.Memory": "5.0.0", + "Microsoft.Extensions.DependencyInjection": "5.0.1", + "Microsoft.Extensions.Logging": "5.0.0", + "System.Collections.Immutable": "5.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Diagnostics.DiagnosticSource": "5.0.1" + }, + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Design/5.0.7": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.8.26", + "Microsoft.CSharp": "4.7.0", + "Microsoft.EntityFrameworkCore.Relational": "5.0.7" + }, + "compile": { + "lib/netstandard2.1/_._": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.dll": {} + }, + "build": { + "build/netcoreapp3.0/Microsoft.EntityFrameworkCore.Design.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/5.0.7": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "5.0.7", + "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Tools/5.0.7": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Design": "5.0.7" + }, + "compile": { + "lib/netstandard2.1/_._": {} + }, + "runtime": { + "lib/netstandard2.1/_._": {} + } + }, + "Microsoft.Extensions.Caching.Abstractions/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Caching.Memory/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "5.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0", + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/5.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DependencyModel/5.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "5.0.0", + "System.Text.Json": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "5.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0", + "System.Diagnostics.DiagnosticSource": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {} + } + }, + "Microsoft.Extensions.Options/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Primitives/5.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.4.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Security.AccessControl": "4.4.0", + "System.Security.Principal.Windows": "4.4.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MySqlConnector/1.3.10": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/MySqlConnector.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/MySqlConnector.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "NPOI/2.5.3": { + "type": "package", + "dependencies": { + "Portable.BouncyCastle": "1.8.6", + "SharpZipLib": "[1.2.0]", + "System.Configuration.ConfigurationManager": "4.5.0", + "System.Drawing.Common": "4.5.0" + }, + "compile": { + "lib/netstandard2.1/NPOI.OOXML.dll": {}, + "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {}, + "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {}, + "lib/netstandard2.1/NPOI.dll": {} + }, + "runtime": { + "lib/netstandard2.1/NPOI.OOXML.dll": {}, + "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {}, + "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {}, + "lib/netstandard2.1/NPOI.dll": {} + } + }, + "Pomelo.EntityFrameworkCore.MySql/5.0.1": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "[5.0.7, 6.0.0)", + "Microsoft.Extensions.DependencyInjection": "5.0.1", + "MySqlConnector": "1.3.10" + }, + "compile": { + "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {} + } + }, + "Portable.BouncyCastle/1.8.6": { + "type": "package", + "compile": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + }, + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "assetType": "native", + "rid": "win-arm64" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "assetType": "native", + "rid": "win-x64" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "SharpZipLib/1.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {} + }, + "runtime": { + "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {} + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Configuration.ConfigurationManager/4.5.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.5.0", + "System.Security.Permissions": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Data.SqlClient/4.4.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.4.0", + "System.Security.Principal.Windows": "4.4.0", + "System.Text.Encoding.CodePages": "4.4.0", + "runtime.native.System.Data.SqlClient.sni": "4.4.0" + }, + "compile": { + "ref/netstandard2.0/System.Data.SqlClient.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Data.SqlClient.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/5.0.1": { + "type": "package", + "compile": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Drawing.Common/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.Win32.SystemEvents": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.4.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.AccessControl/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/4.5.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.CodePages/4.4.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.Encodings.Web/5.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Text.Encodings.Web.dll": {} + } + }, + "System.Text.Json/5.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/System.Text.Json.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Text.Json.dll": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "Application/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v3.1", + "dependencies": { + "Application.Shared": "1.0.0", + "AutoMapper": "10.1.1", + "AutoMapper.Extensions.Microsoft.DependencyInjection": "8.1.1", + "BackGround": "1.0.0", + "Domain": "1.0.0", + "Domain.Service": "1.0.0", + "EntityFramework": "1.0.0" + }, + "compile": { + "bin/placeholder/Application.dll": {} + }, + "runtime": { + "bin/placeholder/Application.dll": {} + } + }, + "Application.Shared/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v3.1", + "dependencies": { + "Infrastructure": "1.0.0" + }, + "compile": { + "bin/placeholder/Application.Shared.dll": {} + }, + "runtime": { + "bin/placeholder/Application.Shared.dll": {} + } + }, + "BackGround/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v3.1", + "dependencies": { + "Application.Shared": "1.0.0", + "EntityFramework": "1.0.0", + "Hangfire.AspNetCore": "1.7.24", + "Hangfire.Core": "1.7.24", + "Hangfire.MySqlStorage": "2.0.3", + "Infrastructure": "1.0.0" + }, + "compile": { + "bin/placeholder/BackGround.dll": {} + }, + "runtime": { + "bin/placeholder/BackGround.dll": {} + } + }, + "Domain/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v3.1", + "dependencies": { + "Domain.Shared": "1.0.0", + "Infrastructure": "1.0.0" + }, + "compile": { + "bin/placeholder/Domain.dll": {} + }, + "runtime": { + "bin/placeholder/Domain.dll": {} + } + }, + "Domain.Service/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v3.1", + "dependencies": { + "EntityFramework": "1.0.0", + "Infrastructure": "1.0.0" + }, + "compile": { + "bin/placeholder/Domain.Service.dll": {} + }, + "runtime": { + "bin/placeholder/Domain.Service.dll": {} + } + }, + "Domain.Shared/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v3.1", + "compile": { + "bin/placeholder/Domain.Shared.dll": {} + }, + "runtime": { + "bin/placeholder/Domain.Shared.dll": {} + } + }, + "EntityFramework/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v3.1", + "dependencies": { + "Domain": "1.0.0", + "Microsoft.EntityFrameworkCore": "5.0.7", + "Pomelo.EntityFrameworkCore.MySql": "5.0.1" + }, + "compile": { + "bin/placeholder/EntityFramework.dll": {} + }, + "runtime": { + "bin/placeholder/EntityFramework.dll": {} + } + }, + "Infrastructure/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v3.1", + "dependencies": { + "Autofac": "6.2.0", + "Autofac.Extensions.DependencyInjection": "7.1.0", + "Autofac.Extras.DynamicProxy": "6.0.0", + "Microsoft.AspNetCore.Mvc.Core": "2.2.5", + "Microsoft.Extensions.DependencyModel": "5.0.0", + "NPOI": "2.5.3", + "Newtonsoft.Json": "13.0.1" + }, + "compile": { + "bin/placeholder/Infrastructure.dll": {} + }, + "runtime": { + "bin/placeholder/Infrastructure.dll": {} + } + } + } + }, + "libraries": { + "Autofac/6.2.0": { + "sha512": "BX8IM0GANE38uSr4QwXL4PgA8vWWYt2P5cZzipn/vDnf0fDbPSGKSHEroJ09rB7ANxdyf7MdEgVs+pvL8kwYCg==", + "type": "package", + "path": "autofac/6.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "autofac.6.2.0.nupkg.sha512", + "autofac.nuspec", + "icon.png", + "lib/net5.0/Autofac.dll", + "lib/net5.0/Autofac.pdb", + "lib/net5.0/Autofac.xml", + "lib/netstandard2.0/Autofac.dll", + "lib/netstandard2.0/Autofac.pdb", + "lib/netstandard2.0/Autofac.xml", + "lib/netstandard2.1/Autofac.dll", + "lib/netstandard2.1/Autofac.pdb", + "lib/netstandard2.1/Autofac.xml" + ] + }, + "Autofac.Extensions.DependencyInjection/7.1.0": { + "sha512": "nm6rZREZ9tjdKXu9cmT69zHkZODagjCPlRRCOhiS1VqFFis9LQnMl18L4OYr8yfCW1WAQkFDD2CNaK/kF5Eqeg==", + "type": "package", + "path": "autofac.extensions.dependencyinjection/7.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512", + "autofac.extensions.dependencyinjection.nuspec", + "icon.png", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.pdb", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.pdb", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml" + ] + }, + "Autofac.Extras.DynamicProxy/6.0.0": { + "sha512": "Z86ZX33qYZ09xhdnYEyD/xilGUQBiITSAdHVZw59Qb+bN+tN/WFVDBZGQZZnI3+l8+hdjM2zWdcK4sgUEavRzw==", + "type": "package", + "path": "autofac.extras.dynamicproxy/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "autofac.extras.dynamicproxy.6.0.0.nupkg.sha512", + "autofac.extras.dynamicproxy.nuspec", + "icon.png", + "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll", + "lib/netstandard2.0/Autofac.Extras.DynamicProxy.pdb", + "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml", + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll", + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.pdb", + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml" + ] + }, + "AutoMapper/10.1.1": { + "sha512": "uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==", + "type": "package", + "path": "automapper/10.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "automapper.10.1.1.nupkg.sha512", + "automapper.nuspec", + "icon.png", + "lib/net461/AutoMapper.dll", + "lib/net461/AutoMapper.xml", + "lib/netstandard2.0/AutoMapper.dll", + "lib/netstandard2.0/AutoMapper.xml" + ] + }, + "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": { + "sha512": "xSWoVzOipuDU4PeZcUfaZQ+xqXU8QmGv5jrdlxt3MYm9xaOmrefqcfzGQ3SQ+D+8wfBa/ZwSuL0qKOVj080inA==", + "type": "package", + "path": "automapper.extensions.microsoft.dependencyinjection/8.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "automapper.extensions.microsoft.dependencyinjection.8.1.1.nupkg.sha512", + "automapper.extensions.microsoft.dependencyinjection.nuspec", + "icon.png", + "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll" + ] + }, + "Castle.Core/4.4.0": { + "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "type": "package", + "path": "castle.core/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ASL - Apache Software Foundation License.txt", + "CHANGELOG.md", + "LICENSE", + "castle.core.4.4.0.nupkg.sha512", + "castle.core.nuspec", + "lib/net35/Castle.Core.dll", + "lib/net35/Castle.Core.xml", + "lib/net40/Castle.Core.dll", + "lib/net40/Castle.Core.xml", + "lib/net45/Castle.Core.dll", + "lib/net45/Castle.Core.xml", + "lib/netstandard1.3/Castle.Core.dll", + "lib/netstandard1.3/Castle.Core.xml", + "lib/netstandard1.5/Castle.Core.dll", + "lib/netstandard1.5/Castle.Core.xml", + "readme.txt" + ] + }, + "Dapper/1.50.5": { + "sha512": "1vPpX7WQmQCIb7rwlGOUoVs/yWZhVKvdhuG7WrJV+V+qsP8btnrrCqVWHENAlJxBAnUw5rhWfmuba9/Egei9MA==", + "type": "package", + "path": "dapper/1.50.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dapper.1.50.5.nupkg.sha512", + "dapper.nuspec", + "lib/net451/Dapper.dll", + "lib/net451/Dapper.xml", + "lib/netstandard1.3/Dapper.dll", + "lib/netstandard1.3/Dapper.xml", + "lib/netstandard2.0/Dapper.dll", + "lib/netstandard2.0/Dapper.xml" + ] + }, + "Hangfire.AspNetCore/1.7.24": { + "sha512": "RrX90Pgo+EzwVKpSa2xCokAtVlNfukX2lLUw3skEkRVggxqh8sWR/Krmf1uHFnJ2+rFK6CtrjLtMsZedH8rBFg==", + "type": "package", + "path": "hangfire.aspnetcore/1.7.24", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "COPYING", + "COPYING.LESSER", + "LICENSE.md", + "LICENSE_ROYALTYFREE", + "LICENSE_STANDARD", + "NOTICES", + "hangfire.aspnetcore.1.7.24.nupkg.sha512", + "hangfire.aspnetcore.nuspec", + "lib/net451/Hangfire.AspNetCore.dll", + "lib/net451/Hangfire.AspNetCore.xml", + "lib/net461/Hangfire.AspNetCore.dll", + "lib/net461/Hangfire.AspNetCore.xml", + "lib/netcoreapp3.0/Hangfire.AspNetCore.dll", + "lib/netcoreapp3.0/Hangfire.AspNetCore.xml", + "lib/netstandard1.3/Hangfire.AspNetCore.dll", + "lib/netstandard1.3/Hangfire.AspNetCore.xml", + "lib/netstandard2.0/Hangfire.AspNetCore.dll", + "lib/netstandard2.0/Hangfire.AspNetCore.xml" + ] + }, + "Hangfire.Core/1.7.24": { + "sha512": "3TzxeY8VDEYZR6Fo6EmgPNUBynOnWWiH7zbDB8TUEXZTA2EWnKjQg2p1UyMziRmPSg+qZdizgozKCuQlXPbktw==", + "type": "package", + "path": "hangfire.core/1.7.24", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "COPYING", + "COPYING.LESSER", + "LICENSE.md", + "LICENSE_ROYALTYFREE", + "LICENSE_STANDARD", + "NOTICES", + "hangfire.core.1.7.24.nupkg.sha512", + "hangfire.core.nuspec", + "lib/net45/Hangfire.Core.dll", + "lib/net45/Hangfire.Core.xml", + "lib/net45/ca/Hangfire.Core.resources.dll", + "lib/net45/de/Hangfire.Core.resources.dll", + "lib/net45/es/Hangfire.Core.resources.dll", + "lib/net45/fa/Hangfire.Core.resources.dll", + "lib/net45/fr/Hangfire.Core.resources.dll", + "lib/net45/nb/Hangfire.Core.resources.dll", + "lib/net45/nl/Hangfire.Core.resources.dll", + "lib/net45/pt-BR/Hangfire.Core.resources.dll", + "lib/net45/pt-PT/Hangfire.Core.resources.dll", + "lib/net45/pt/Hangfire.Core.resources.dll", + "lib/net45/zh-TW/Hangfire.Core.resources.dll", + "lib/net45/zh/Hangfire.Core.resources.dll", + "lib/net46/Hangfire.Core.dll", + "lib/net46/Hangfire.Core.xml", + "lib/net46/ca/Hangfire.Core.resources.dll", + "lib/net46/de/Hangfire.Core.resources.dll", + "lib/net46/es/Hangfire.Core.resources.dll", + "lib/net46/fa/Hangfire.Core.resources.dll", + "lib/net46/fr/Hangfire.Core.resources.dll", + "lib/net46/nb/Hangfire.Core.resources.dll", + "lib/net46/nl/Hangfire.Core.resources.dll", + "lib/net46/pt-BR/Hangfire.Core.resources.dll", + "lib/net46/pt-PT/Hangfire.Core.resources.dll", + "lib/net46/pt/Hangfire.Core.resources.dll", + "lib/net46/zh-TW/Hangfire.Core.resources.dll", + "lib/net46/zh/Hangfire.Core.resources.dll", + "lib/netstandard1.3/Hangfire.Core.dll", + "lib/netstandard1.3/Hangfire.Core.xml", + "lib/netstandard1.3/ca/Hangfire.Core.resources.dll", + "lib/netstandard1.3/de/Hangfire.Core.resources.dll", + "lib/netstandard1.3/es/Hangfire.Core.resources.dll", + "lib/netstandard1.3/fa/Hangfire.Core.resources.dll", + "lib/netstandard1.3/fr/Hangfire.Core.resources.dll", + "lib/netstandard1.3/nb/Hangfire.Core.resources.dll", + "lib/netstandard1.3/nl/Hangfire.Core.resources.dll", + "lib/netstandard1.3/pt-BR/Hangfire.Core.resources.dll", + "lib/netstandard1.3/pt-PT/Hangfire.Core.resources.dll", + "lib/netstandard1.3/pt/Hangfire.Core.resources.dll", + "lib/netstandard1.3/zh-TW/Hangfire.Core.resources.dll", + "lib/netstandard1.3/zh/Hangfire.Core.resources.dll", + "lib/netstandard2.0/Hangfire.Core.dll", + "lib/netstandard2.0/Hangfire.Core.xml", + "lib/netstandard2.0/ca/Hangfire.Core.resources.dll", + "lib/netstandard2.0/de/Hangfire.Core.resources.dll", + "lib/netstandard2.0/es/Hangfire.Core.resources.dll", + "lib/netstandard2.0/fa/Hangfire.Core.resources.dll", + "lib/netstandard2.0/fr/Hangfire.Core.resources.dll", + "lib/netstandard2.0/nb/Hangfire.Core.resources.dll", + "lib/netstandard2.0/nl/Hangfire.Core.resources.dll", + "lib/netstandard2.0/pt-BR/Hangfire.Core.resources.dll", + "lib/netstandard2.0/pt-PT/Hangfire.Core.resources.dll", + "lib/netstandard2.0/pt/Hangfire.Core.resources.dll", + "lib/netstandard2.0/zh-TW/Hangfire.Core.resources.dll", + "lib/netstandard2.0/zh/Hangfire.Core.resources.dll" + ] + }, + "Hangfire.Dashboard.BasicAuthorization/1.0.2": { + "sha512": "tlDkF4pGOA7VthYtzpmekqC9Uh5DRhemEFyK1WJhzlkn46LLVmHGtlPjADJn99EFMJH6RHBkZhJBAO9Y3MiWYA==", + "type": "package", + "path": "hangfire.dashboard.basicauthorization/1.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "hangfire.dashboard.basicauthorization.1.0.2.nupkg.sha512", + "hangfire.dashboard.basicauthorization.nuspec", + "lib/netstandard2.0/Hangfire.Dashboard.BasicAuthorization.dll" + ] + }, + "Hangfire.MySqlStorage/2.0.3": { + "sha512": "02hKjRxeEl3UQkfu3tHXZd2qe5FwOErX2j8ezhJooFEzCyrrDhFTuB8sXtJW0Hr+sbAuR6oF4nvAwOp+USU6nw==", + "type": "package", + "path": "hangfire.mysqlstorage/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "hangfire.mysqlstorage.2.0.3.nupkg.sha512", + "hangfire.mysqlstorage.nuspec", + "lib/net452/Hangfire.MySql.dll", + "lib/netstandard2.0/Hangfire.MySql.dll" + ] + }, + "Humanizer.Core/2.8.26": { + "sha512": "OiKusGL20vby4uDEswj2IgkdchC1yQ6rwbIkZDVBPIR6al2b7n3pC91elBul9q33KaBgRKhbZH3+2Ur4fnWx2A==", + "type": "package", + "path": "humanizer.core/2.8.26", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.2.8.26.nupkg.sha512", + "humanizer.core.nuspec", + "lib/netstandard1.0/Humanizer.dll", + "lib/netstandard1.0/Humanizer.xml", + "lib/netstandard2.0/Humanizer.dll", + "lib/netstandard2.0/Humanizer.xml", + "logo.png" + ] + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "sha512": "VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.xml", + "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Authentication.Core/2.2.0": { + "sha512": "XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.core/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.xml", + "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.core.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "sha512": "/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "sha512": "aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", + "type": "package", + "path": "microsoft.aspnetcore.authorization.policy/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.xml", + "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authorization.policy.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml", + "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", + "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.server.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http/2.2.0": { + "sha512": "YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==", + "type": "package", + "path": "microsoft.aspnetcore.http/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml", + "microsoft.aspnetcore.http.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "type": "package", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml", + "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "sha512": "2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", + "type": "package", + "path": "microsoft.aspnetcore.http.extensions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml", + "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "type": "package", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml", + "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.features.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { + "sha512": "ET6uZpfVbGR1NjCuLaLy197cQ3qZUjzl7EG5SL4GfJH/c9KRE89MMBrQegqWsh0w1iRUB/zQaK0anAjxa/pz4g==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.xml", + "microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Core/2.2.5": { + "sha512": "/8sr8ixIUD57UFwUntha9bOwex7/AkZfdk1f9oNJG1Ek7p/uuKVa7fuHmYZpQOf35Oxrt+2Ku4WPwMSbNxOuWg==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.core/2.2.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.xml", + "microsoft.aspnetcore.mvc.core.2.2.5.nupkg.sha512", + "microsoft.aspnetcore.mvc.core.nuspec" + ] + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { + "sha512": "CIHWEKrHzZfFp7t57UXsueiSA/raku56TgRYauV/W1+KAQq6vevz60zjEKaazt3BI76zwMz3B4jGWnCwd8kwQw==", + "type": "package", + "path": "microsoft.aspnetcore.responsecaching.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml", + "microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.responsecaching.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "sha512": "jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", + "type": "package", + "path": "microsoft.aspnetcore.routing/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.xml", + "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.routing.nuspec" + ] + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "sha512": "lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", + "type": "package", + "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml", + "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.routing.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "sha512": "9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", + "type": "package", + "path": "microsoft.aspnetcore.webutilities/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml", + "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.webutilities.nuspec" + ] + }, + "Microsoft.CSharp/4.7.0": { + "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "type": "package", + "path": "microsoft.csharp/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.7.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.EntityFrameworkCore/5.0.7": { + "sha512": "VAvmiQPdw0PUh3X7k9k7haVnCfQuDgyki9rq5XVk0gXJFeh+bwqPzPrY71A08O5TjnIeK9lEggXDnMuhQXUUww==", + "type": "package", + "path": "microsoft.entityframeworkcore/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { + "sha512": "MM5M9vYDLUXCePUGN2WZ0MkNcNj74sIgyVR9v7tW6abRULtBWPcyZf6zLYhZYpRgPXcahcME+Koscz9kP2DxyA==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": { + "sha512": "ZShPEOZaQhBZqDObU3+kigEmlEGug37F8v/jpQgVs1XfHrLeXVyk+p94DBH4f+bUUHUbsEEcIbU6OhUBtWZztg==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "lib/netstandard2.0/_._", + "microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Design/5.0.7": { + "sha512": "r/0Jkp7HCzWSXdC79jwK4JKNw16s88E23U46rCu+I1zYYXg+w4TR/S9zAkQNHiNkaCFyGUod/b5ZoQCI5eqJ2A==", + "type": "package", + "path": "microsoft.entityframeworkcore.design/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "build/netcoreapp3.0/Microsoft.EntityFrameworkCore.Design.props", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.dll", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.xml", + "microsoft.entityframeworkcore.design.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.design.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/5.0.7": { + "sha512": "W3nj58s5GX8KFQwZaytERGy3tTqutjWK6309KCpXaVtVvuYf3GE3R0lrouxONzLynLG8hsODcs2gym5QQoqtSg==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/5.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Tools/5.0.7": { + "sha512": "qVv3yDHMBbRRGlUG4/vJ0N7gmm8XoiovJ9fdiZBYRn1/lpmufwSr7uHOQ/f3T2pvX/wNSDjvJNoKncOTHEs9tw==", + "type": "package", + "path": "microsoft.entityframeworkcore.tools/5.0.7", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.1/_._", + "microsoft.entityframeworkcore.tools.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.tools.nuspec", + "tools/EntityFrameworkCore.PS2.psd1", + "tools/EntityFrameworkCore.PS2.psm1", + "tools/EntityFrameworkCore.psd1", + "tools/EntityFrameworkCore.psm1", + "tools/about_EntityFrameworkCore.help.txt", + "tools/init.ps1", + "tools/net461/any/ef.exe", + "tools/net461/win-x86/ef.exe", + "tools/netcoreapp2.0/any/ef.dll", + "tools/netcoreapp2.0/any/ef.runtimeconfig.json" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/5.0.0": { + "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/5.0.0": { + "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==", + "type": "package", + "path": "microsoft.extensions.caching.memory/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Caching.Memory.dll", + "lib/net461/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { + "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/5.0.1": { + "sha512": "//mDNrYeiJ0eh/awFhDFJQzkRVra/njU5Y4fyK7X29g5HScrzbUkKOKlyTtygthcGFt4zNC8G5CFCjb/oizomA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.DependencyInjection.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.xml", + "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { + "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/5.0.0": { + "sha512": "umBECCoMC+sOUgm083yFr8SxTobUOcPFH4AXigdO2xJiszCHAnmeDl4qPphJt+oaJ/XIfV1wOjIts2nRnki61Q==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net451/Microsoft.Extensions.DependencyModel.dll", + "lib/net451/Microsoft.Extensions.DependencyModel.xml", + "lib/net461/Microsoft.Extensions.DependencyModel.dll", + "lib/net461/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.5.0.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { + "sha512": "EcnaSsPTqx2MGnHrmWOD0ugbuuqVT8iICqSqPzi45V5/MA1LjUNb0kwgcxBGqizV1R+WeBK7/Gw25Jzkyk9bIw==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { + "sha512": "+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/5.0.0": { + "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", + "type": "package", + "path": "microsoft.extensions.logging/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.dll", + "lib/net461/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.5.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0": { + "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "sha512": "gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", + "type": "package", + "path": "microsoft.extensions.objectpool/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml", + "microsoft.extensions.objectpool.2.2.0.nupkg.sha512", + "microsoft.extensions.objectpool.nuspec" + ] + }, + "Microsoft.Extensions.Options/5.0.0": { + "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==", + "type": "package", + "path": "microsoft.extensions.options/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.dll", + "lib/net461/Microsoft.Extensions.Options.xml", + "lib/net5.0/Microsoft.Extensions.Options.dll", + "lib/net5.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.5.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Primitives/5.0.0": { + "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==", + "type": "package", + "path": "microsoft.extensions.primitives/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Primitives.dll", + "lib/net461/Microsoft.Extensions.Primitives.xml", + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll", + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.5.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "sha512": "iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", + "type": "package", + "path": "microsoft.net.http.headers/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml", + "microsoft.net.http.headers.2.2.0.nupkg.sha512", + "microsoft.net.http.headers.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "sha512": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==", + "type": "package", + "path": "microsoft.netcore.platforms/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.2.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Win32.Registry/4.4.0": { + "sha512": "dA36TlNVn/XfrZtmf0fiI/z1nd3Wfp2QVzTdj26pqgP9LFWq0i1hYEUAW50xUjGFYn1+/cP3KGuxT2Yn1OUNBQ==", + "type": "package", + "path": "microsoft.win32.registry/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "microsoft.win32.registry.4.4.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/4.5.0": { + "sha512": "LuI1oG+24TUj1ZRQQjM5Ew73BKnZE5NZ/7eAdh1o8ST5dPhUnJvIkiIn2re3MwnkRy6ELRnvEbBxHP8uALKhJw==", + "type": "package", + "path": "microsoft.win32.systemevents/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "microsoft.win32.systemevents.4.5.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MySqlConnector/1.3.10": { + "sha512": "geL3pNiwbSXzUqQLHLm2/igDHuz5Q4qqp2rKczYoIHtdvvrsd5fnYHN8eFgP81qu77Blv0+0IOn69RJATNQoSQ==", + "type": "package", + "path": "mysqlconnector/1.3.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net45/MySqlConnector.dll", + "lib/net45/MySqlConnector.xml", + "lib/net461/MySqlConnector.dll", + "lib/net461/MySqlConnector.xml", + "lib/net471/MySqlConnector.dll", + "lib/net471/MySqlConnector.xml", + "lib/net5.0/MySqlConnector.dll", + "lib/net5.0/MySqlConnector.xml", + "lib/netcoreapp2.1/MySqlConnector.dll", + "lib/netcoreapp2.1/MySqlConnector.xml", + "lib/netcoreapp3.1/MySqlConnector.dll", + "lib/netcoreapp3.1/MySqlConnector.xml", + "lib/netstandard1.3/MySqlConnector.dll", + "lib/netstandard1.3/MySqlConnector.xml", + "lib/netstandard2.0/MySqlConnector.dll", + "lib/netstandard2.0/MySqlConnector.xml", + "lib/netstandard2.1/MySqlConnector.dll", + "lib/netstandard2.1/MySqlConnector.xml", + "logo.png", + "mysqlconnector.1.3.10.nupkg.sha512", + "mysqlconnector.nuspec" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "NPOI/2.5.3": { + "sha512": "+DDU8JOHNhhiyAHr8Ew1hp85uPTcEw+O93+R2GDRB7sI5KpiQ+1i65DlY2OzfOq43+R3+39MyM7BTvjQi2KbfA==", + "type": "package", + "path": "npoi/2.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "Read Me.txt", + "lib/net45/NPOI.OOXML.XML", + "lib/net45/NPOI.OOXML.dll", + "lib/net45/NPOI.OpenXml4Net.XML", + "lib/net45/NPOI.OpenXml4Net.dll", + "lib/net45/NPOI.OpenXmlFormats.dll", + "lib/net45/NPOI.XML", + "lib/net45/NPOI.dll", + "lib/netstandard2.0/NPOI.OOXML.dll", + "lib/netstandard2.0/NPOI.OOXML.xml", + "lib/netstandard2.0/NPOI.OpenXml4Net.dll", + "lib/netstandard2.0/NPOI.OpenXml4Net.xml", + "lib/netstandard2.0/NPOI.OpenXmlFormats.dll", + "lib/netstandard2.0/NPOI.dll", + "lib/netstandard2.0/NPOI.xml", + "lib/netstandard2.1/NPOI.OOXML.dll", + "lib/netstandard2.1/NPOI.OOXML.xml", + "lib/netstandard2.1/NPOI.OpenXml4Net.dll", + "lib/netstandard2.1/NPOI.OpenXml4Net.xml", + "lib/netstandard2.1/NPOI.OpenXmlFormats.dll", + "lib/netstandard2.1/NPOI.dll", + "lib/netstandard2.1/NPOI.xml", + "logo/120_120.jpg", + "logo/240_240.png", + "logo/32_32.jpg", + "logo/60_60.jpg", + "npoi.2.5.3.nupkg.sha512", + "npoi.nuspec" + ] + }, + "Pomelo.EntityFrameworkCore.MySql/5.0.1": { + "sha512": "15t0Zda7kZFIe3U68komYU18KLGBr5K9lFydWBOycN7Xzb98xopVlyvb07GZb2OKJfX+sInhhD/U+jmHY9ceOg==", + "type": "package", + "path": "pomelo.entityframeworkcore.mysql/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll", + "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.xml", + "pomelo.entityframeworkcore.mysql.5.0.1.nupkg.sha512", + "pomelo.entityframeworkcore.mysql.nuspec" + ] + }, + "Portable.BouncyCastle/1.8.6": { + "sha512": "y+GvZomzhY+Lwu5mMeNmFFYLHiEr2xFDOANhABn/wgg64/QpTzfgpNGPct+pXgQHjmutd363ZCur/91DLaBxOw==", + "type": "package", + "path": "portable.bouncycastle/1.8.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40/BouncyCastle.Crypto.dll", + "lib/net40/BouncyCastle.Crypto.xml", + "lib/netstandard2.0/BouncyCastle.Crypto.dll", + "lib/netstandard2.0/BouncyCastle.Crypto.xml", + "portable.bouncycastle.1.8.6.nupkg.sha512", + "portable.bouncycastle.nuspec" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==", + "type": "package", + "path": "runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.native.system.data.sqlclient.sni.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "type": "package", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-arm64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "type": "package", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "type": "package", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x86/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "SharpZipLib/1.2.0": { + "sha512": "zvWa/L02JHNatdtjya6Swpudb2YEHaOLHL1eRrqpjm71iGRNUNONO5adUF/9CHbSJbzhELW1UoH4NGy7n7+3bQ==", + "type": "package", + "path": "sharpziplib/1.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/ICSharpCode.SharpZipLib.dll", + "lib/net45/ICSharpCode.SharpZipLib.pdb", + "lib/net45/ICSharpCode.SharpZipLib.xml", + "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll", + "lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb", + "lib/netstandard2.0/ICSharpCode.SharpZipLib.xml", + "sharpziplib.1.2.0.nupkg.sha512", + "sharpziplib.nuspec" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.5.0": { + "sha512": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==", + "type": "package", + "path": "system.buffers/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "lib/uap10.0.16299/_._", + "ref/net45/System.Buffers.dll", + "ref/net45/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "ref/uap10.0.16299/_._", + "system.buffers.4.5.0.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Collections.Immutable/5.0.0": { + "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", + "type": "package", + "path": "system.collections.immutable/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Collections.Immutable.dll", + "lib/net461/System.Collections.Immutable.xml", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/netstandard1.3/System.Collections.Immutable.dll", + "lib/netstandard1.3/System.Collections.Immutable.xml", + "lib/netstandard2.0/System.Collections.Immutable.dll", + "lib/netstandard2.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.5.0.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections.NonGeneric/4.3.0": { + "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "type": "package", + "path": "system.collections.nongeneric/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.3.0.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.3.0": { + "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "type": "package", + "path": "system.collections.specialized/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/netstandard1.3/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.xml", + "ref/netstandard1.3/de/System.Collections.Specialized.xml", + "ref/netstandard1.3/es/System.Collections.Specialized.xml", + "ref/netstandard1.3/fr/System.Collections.Specialized.xml", + "ref/netstandard1.3/it/System.Collections.Specialized.xml", + "ref/netstandard1.3/ja/System.Collections.Specialized.xml", + "ref/netstandard1.3/ko/System.Collections.Specialized.xml", + "ref/netstandard1.3/ru/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.specialized.4.3.0.nupkg.sha512", + "system.collections.specialized.nuspec" + ] + }, + "System.ComponentModel/4.3.0": { + "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "type": "package", + "path": "system.componentmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.3.0.nupkg.sha512", + "system.componentmodel.nuspec" + ] + }, + "System.ComponentModel.Annotations/5.0.0": { + "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "type": "package", + "path": "system.componentmodel.annotations/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/netstandard2.0/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.xml", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/net461/System.ComponentModel.Annotations.xml", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard2.0/System.ComponentModel.Annotations.dll", + "ref/netstandard2.0/System.ComponentModel.Annotations.xml", + "ref/netstandard2.1/System.ComponentModel.Annotations.dll", + "ref/netstandard2.1/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.5.0.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ComponentModel.Primitives/4.3.0": { + "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "type": "package", + "path": "system.componentmodel.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.Primitives.dll", + "lib/netstandard1.0/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.primitives.4.3.0.nupkg.sha512", + "system.componentmodel.primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "type": "package", + "path": "system.componentmodel.typeconverter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/net462/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/net462/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "system.componentmodel.typeconverter.nuspec" + ] + }, + "System.Configuration.ConfigurationManager/4.5.0": { + "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==", + "type": "package", + "path": "system.configuration.configurationmanager/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.xml", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.4.5.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Console/4.3.0": { + "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "type": "package", + "path": "system.console/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.3.0.nupkg.sha512", + "system.console.nuspec" + ] + }, + "System.Data.SqlClient/4.4.0": { + "sha512": "fxb9ghn1k1Ua7FFdlvtiBOD4/PsQvD/fk2KnhS+FK7VC6OggEx6P+lP1P0+KMb5V2dqS1+FbR7HCenoqzJMNIA==", + "type": "package", + "path": "system.data.sqlclient/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.SqlClient.dll", + "lib/net46/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.dll", + "lib/netstandard1.2/System.Data.SqlClient.dll", + "lib/netstandard1.3/System.Data.SqlClient.dll", + "lib/netstandard2.0/System.Data.SqlClient.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.SqlClient.dll", + "ref/net46/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.xml", + "ref/netstandard1.2/System.Data.SqlClient.dll", + "ref/netstandard1.2/System.Data.SqlClient.xml", + "ref/netstandard1.2/de/System.Data.SqlClient.xml", + "ref/netstandard1.2/es/System.Data.SqlClient.xml", + "ref/netstandard1.2/fr/System.Data.SqlClient.xml", + "ref/netstandard1.2/it/System.Data.SqlClient.xml", + "ref/netstandard1.2/ja/System.Data.SqlClient.xml", + "ref/netstandard1.2/ko/System.Data.SqlClient.xml", + "ref/netstandard1.2/ru/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard1.3/System.Data.SqlClient.dll", + "ref/netstandard1.3/System.Data.SqlClient.xml", + "ref/netstandard1.3/de/System.Data.SqlClient.xml", + "ref/netstandard1.3/es/System.Data.SqlClient.xml", + "ref/netstandard1.3/fr/System.Data.SqlClient.xml", + "ref/netstandard1.3/it/System.Data.SqlClient.xml", + "ref/netstandard1.3/ja/System.Data.SqlClient.xml", + "ref/netstandard1.3/ko/System.Data.SqlClient.xml", + "ref/netstandard1.3/ru/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard2.0/System.Data.SqlClient.dll", + "ref/netstandard2.0/System.Data.SqlClient.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/win/lib/net451/System.Data.SqlClient.dll", + "runtimes/win/lib/net46/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", + "system.data.sqlclient.4.4.0.nupkg.sha512", + "system.data.sqlclient.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/5.0.1": { + "sha512": "uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/System.Diagnostics.DiagnosticSource.dll", + "lib/net45/System.Diagnostics.DiagnosticSource.xml", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.3.0": { + "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "type": "package", + "path": "system.diagnostics.tracesource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.TraceSource.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "system.diagnostics.tracesource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Drawing.Common/4.5.0": { + "sha512": "AiJFxxVPdeITstiRS5aAu8+8Dpf5NawTMoapZ53Gfirml24p7HIfhjmCRxdXnmmf3IUA3AX3CcW7G73CjWxW/Q==", + "type": "package", + "path": "system.drawing.common/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "system.drawing.common.4.5.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Dynamic.Runtime/4.3.0": { + "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "type": "package", + "path": "system.dynamic.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.3.0.nupkg.sha512", + "system.dynamic.runtime.nuspec" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.7.0": { + "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==", + "type": "package", + "path": "system.reflection.emit/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Reflection.Emit.dll", + "lib/netstandard1.1/System.Reflection.Emit.xml", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/netstandard2.0/System.Reflection.Emit.dll", + "lib/netstandard2.0/System.Reflection.Emit.xml", + "lib/netstandard2.1/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/netstandard2.0/System.Reflection.Emit.dll", + "ref/netstandard2.0/System.Reflection.Emit.xml", + "ref/netstandard2.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll", + "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml", + "system.reflection.emit.4.7.0.nupkg.sha512", + "system.reflection.emit.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.4.0": { + "sha512": "dkmh/ySlwnXJp/1qYP9uyKkCK1CXR/REFzl7abHcArxBcV91mY2CgrrzSRA5Z/X4MevJWwXsklGRdR3A7K9zbg==", + "type": "package", + "path": "system.reflection.typeextensions/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net461/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netcoreapp1.0/System.Reflection.TypeExtensions.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/netstandard2.0/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net461/System.Reflection.TypeExtensions.dll", + "ref/net461/System.Reflection.TypeExtensions.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/System.Reflection.TypeExtensions.dll", + "ref/netstandard2.0/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.4.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Security.AccessControl/4.5.0": { + "sha512": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==", + "type": "package", + "path": "system.security.accesscontrol/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.5.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.3.0": { + "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "type": "package", + "path": "system.security.cryptography.cng/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "system.security.cryptography.cng.4.3.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==", + "type": "package", + "path": "system.security.cryptography.protecteddata/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Permissions/4.5.0": { + "sha512": "9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", + "type": "package", + "path": "system.security.permissions/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.4.5.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.5.0": { + "sha512": "U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==", + "type": "package", + "path": "system.security.principal.windows/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.5.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/4.4.0": { + "sha512": "6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==", + "type": "package", + "path": "system.text.encoding.codepages/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Text.Encoding.CodePages.dll", + "ref/netstandard1.3/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml", + "ref/netstandard2.0/System.Text.Encoding.CodePages.dll", + "ref/netstandard2.0/System.Text.Encoding.CodePages.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "system.text.encoding.codepages.4.4.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Encodings.Web/5.0.0": { + "sha512": "EEslUvHKll1ftizbn20mX3Ix/l4Ygk/bdJ2LY6/X6FlGaP0RIhKMo9nS6JIGnKKT6KBP2PGj6JC3B9/ZF6ErqQ==", + "type": "package", + "path": "system.text.encodings.web/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.0/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.0/System.Text.Encodings.Web.xml", + "lib/netstandard1.0/System.Text.Encodings.Web.dll", + "lib/netstandard1.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.1/System.Text.Encodings.Web.dll", + "lib/netstandard2.1/System.Text.Encodings.Web.xml", + "system.text.encodings.web.5.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Json/5.0.0": { + "sha512": "+luxMQNZ2WqeffBU7Ml6njIvxc8169NW2oU+ygNudXQGZiarjE7DOtN7bILiQjTZjkmwwRZGTtLzmdrSI/Ustw==", + "type": "package", + "path": "system.text.json/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/netcoreapp3.0/System.Text.Json.dll", + "lib/netcoreapp3.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.5.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.5.1": { + "sha512": "WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "ref/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "ref/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "ref/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.1.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.3.0": { + "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "type": "package", + "path": "system.xml.xmldocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.3.0.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + }, + "Application/1.0.0": { + "type": "project", + "path": "../Application/Application.csproj", + "msbuildProject": "../Application/Application.csproj" + }, + "Application.Shared/1.0.0": { + "type": "project", + "path": "../Application.Shared/Application.Shared.csproj", + "msbuildProject": "../Application.Shared/Application.Shared.csproj" + }, + "BackGround/1.0.0": { + "type": "project", + "path": "../BackGround/BackGround.csproj", + "msbuildProject": "../BackGround/BackGround.csproj" + }, + "Domain/1.0.0": { + "type": "project", + "path": "../Domain/Domain.csproj", + "msbuildProject": "../Domain/Domain.csproj" + }, + "Domain.Service/1.0.0": { + "type": "project", + "path": "../Domain.Service/Domain.Service.csproj", + "msbuildProject": "../Domain.Service/Domain.Service.csproj" + }, + "Domain.Shared/1.0.0": { + "type": "project", + "path": "../Domain.Shared/Domain.Shared.csproj", + "msbuildProject": "../Domain.Shared/Domain.Shared.csproj" + }, + "EntityFramework/1.0.0": { + "type": "project", + "path": "../EntityFramework/EntityFramework.csproj", + "msbuildProject": "../EntityFramework/EntityFramework.csproj" + }, + "Infrastructure/1.0.0": { + "type": "project", + "path": "../Infrastructure/Infrastructure.csproj", + "msbuildProject": "../Infrastructure/Infrastructure.csproj" + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [ + "Application >= 1.0.0", + "Autofac.Extensions.DependencyInjection >= 7.1.0", + "BackGround >= 1.0.0", + "Hangfire.Dashboard.BasicAuthorization >= 1.0.2", + "Infrastructure >= 1.0.0", + "Microsoft.EntityFrameworkCore.Design >= 5.0.7", + "Microsoft.EntityFrameworkCore.Tools >= 5.0.7" + ] + }, + "packageFolders": { + "C:\\Users\\NineFishes\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\FireStaionDocuments\\FireStaionDocuments.csproj", + "projectName": "FireStaionDocuments", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\FireStaionDocuments\\FireStaionDocuments.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\FireStaionDocuments\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application\\Application.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Application\\Application.csproj" + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\BackGround\\BackGround.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\BackGround\\BackGround.csproj" + }, + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": { + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "dependencies": { + "Autofac.Extensions.DependencyInjection": { + "target": "Package", + "version": "[7.1.0, )" + }, + "Hangfire.Dashboard.BasicAuthorization": { + "target": "Package", + "version": "[1.0.2, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[5.0.7, )" + }, + "Microsoft.EntityFrameworkCore.Tools": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[5.0.7, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/FireStaionDocuments/obj/project.nuget.cache b/FireStaionDocuments/obj/project.nuget.cache new file mode 100644 index 0000000..e404052 --- /dev/null +++ b/FireStaionDocuments/obj/project.nuget.cache @@ -0,0 +1,163 @@ +{ + "version": 2, + "dgSpecHash": "mfnG4k21w6bgd1ihlKdqdIf0B35f/ztCce+XBkJs9o6TQBBFfjPq4dy3XiowIF7pswCTPx/kI2rFwzy3TQAUFQ==", + "success": true, + "projectFilePath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\FireStaionDocuments\\FireStaionDocuments.csproj", + "expectedPackageFiles": [ + "C:\\Users\\NineFishes\\.nuget\\packages\\autofac\\6.2.0\\autofac.6.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\autofac.extensions.dependencyinjection\\7.1.0\\autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\autofac.extras.dynamicproxy\\6.0.0\\autofac.extras.dynamicproxy.6.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\automapper\\10.1.1\\automapper.10.1.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\automapper.extensions.microsoft.dependencyinjection\\8.1.1\\automapper.extensions.microsoft.dependencyinjection.8.1.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\castle.core\\4.4.0\\castle.core.4.4.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\dapper\\1.50.5\\dapper.1.50.5.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\hangfire.aspnetcore\\1.7.24\\hangfire.aspnetcore.1.7.24.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\hangfire.core\\1.7.24\\hangfire.core.1.7.24.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\hangfire.dashboard.basicauthorization\\1.0.2\\hangfire.dashboard.basicauthorization.1.0.2.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\hangfire.mysqlstorage\\2.0.3\\hangfire.mysqlstorage.2.0.3.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\humanizer.core\\2.8.26\\humanizer.core.2.8.26.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authentication.abstractions\\2.2.0\\microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authentication.core\\2.2.0\\microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authorization\\2.2.0\\microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authorization.policy\\2.2.0\\microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.hosting.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.hosting.server.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http\\2.2.0\\microsoft.aspnetcore.http.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http.abstractions\\2.2.0\\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http.extensions\\2.2.0\\microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.mvc.abstractions\\2.2.0\\microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.mvc.core\\2.2.5\\microsoft.aspnetcore.mvc.core.2.2.5.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.responsecaching.abstractions\\2.2.0\\microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.routing\\2.2.0\\microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.routing.abstractions\\2.2.0\\microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.webutilities\\2.2.0\\microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.entityframeworkcore\\5.0.7\\microsoft.entityframeworkcore.5.0.7.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.7\\microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.7\\microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.entityframeworkcore.design\\5.0.7\\microsoft.entityframeworkcore.design.5.0.7.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\5.0.7\\microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\5.0.7\\microsoft.entityframeworkcore.tools.5.0.7.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\5.0.0\\microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.caching.memory\\5.0.0\\microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.1\\microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.dependencymodel\\5.0.0\\microsoft.extensions.dependencymodel.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\2.2.0\\microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\2.2.0\\microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.objectpool\\2.2.0\\microsoft.extensions.objectpool.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.net.http.headers\\2.2.0\\microsoft.net.http.headers.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.netcore.platforms\\2.0.0\\microsoft.netcore.platforms.2.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.win32.registry\\4.4.0\\microsoft.win32.registry.4.4.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.win32.systemevents\\4.5.0\\microsoft.win32.systemevents.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\mysqlconnector\\1.3.10\\mysqlconnector.1.3.10.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\npoi\\2.5.3\\npoi.2.5.3.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\pomelo.entityframeworkcore.mysql\\5.0.1\\pomelo.entityframeworkcore.mysql.5.0.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\portable.bouncycastle\\1.8.6\\portable.bouncycastle.1.8.6.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\sharpziplib\\1.2.0\\sharpziplib.1.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.buffers\\4.5.0\\system.buffers.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.configuration.configurationmanager\\4.5.0\\system.configuration.configurationmanager.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.data.sqlclient\\4.4.0\\system.data.sqlclient.4.4.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.1\\system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.tracesource\\4.3.0\\system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.drawing.common\\4.5.0\\system.drawing.common.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.emit\\4.7.0\\system.reflection.emit.4.7.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.typeextensions\\4.4.0\\system.reflection.typeextensions.4.4.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.accesscontrol\\4.5.0\\system.security.accesscontrol.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.5.0\\system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.permissions\\4.5.0\\system.security.permissions.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.principal.windows\\4.5.0\\system.security.principal.windows.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.encoding.codepages\\4.4.0\\system.text.encoding.codepages.4.4.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.encodings.web\\5.0.0\\system.text.encodings.web.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.json\\5.0.0\\system.text.json.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.1\\system.threading.tasks.extensions.4.5.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/Infrastructure/Abstructions/IScopedDependency.cs b/Infrastructure/Abstructions/IScopedDependency.cs new file mode 100644 index 0000000..357b63b --- /dev/null +++ b/Infrastructure/Abstructions/IScopedDependency.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Infrastructure.Abstructions +{ + public interface IScopedDependency + { + } +} diff --git a/Infrastructure/Abstructions/ISingletonDependency.cs b/Infrastructure/Abstructions/ISingletonDependency.cs new file mode 100644 index 0000000..c6388a9 --- /dev/null +++ b/Infrastructure/Abstructions/ISingletonDependency.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Infrastructure.Abstructions +{ + public interface ISingletonDependency + { + } +} diff --git a/Infrastructure/Abstructions/ITransientDependency.cs b/Infrastructure/Abstructions/ITransientDependency.cs new file mode 100644 index 0000000..38f0e83 --- /dev/null +++ b/Infrastructure/Abstructions/ITransientDependency.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Infrastructure.Abstructions +{ + public interface ITransientDependency + { + } +} diff --git a/Infrastructure/Api/CommonResponse.cs b/Infrastructure/Api/CommonResponse.cs new file mode 100644 index 0000000..d2b34bb --- /dev/null +++ b/Infrastructure/Api/CommonResponse.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Infrastructure.Api +{ + public class CommonResponseWithData : CommonResponse where T:new() + { + public T Data { get; set; } + } + + public class CommonResponse + { + public string Code { get; set; } + public bool Success { get; set; } + public string Message { get; set; } + } +} diff --git a/Infrastructure/Api/Filters/ApiResponseFilter.cs b/Infrastructure/Api/Filters/ApiResponseFilter.cs new file mode 100644 index 0000000..7282ea6 --- /dev/null +++ b/Infrastructure/Api/Filters/ApiResponseFilter.cs @@ -0,0 +1,42 @@ +using Infrastructure.Api; +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.Filters; +using System; +using System.Collections.Generic; +using System.Text; +using System.Threading; +using System.Threading.Tasks; + +namespace Infrastructure.Api.Filters +{ + public class ApiResponseFilter: ActionFilterAttribute + { + public override void OnActionExecuted(ActionExecutedContext context) + { + if (context.Result is ObjectResult) + { + var objectResult = context.Result as ObjectResult; + if (objectResult.Value == null) + { + context.Result = new ObjectResult(new CommonResponseWithData { Success = true, Data = null }); + } + else + { + context.Result = new ObjectResult(new CommonResponseWithData { Success = true, Data = objectResult.Value }); + } + } + else if (context.Result is EmptyResult) + { + context.Result = new ObjectResult(new CommonResponse { Success = true }); + } + else if (context.Result is ContentResult) + { + context.Result = new ObjectResult(new CommonResponseWithData { Success = true, Data = (context.Result as ContentResult).Content }); + } + else if (context.Result is StatusCodeResult) + { + context.Result = new ObjectResult(new CommonResponse { Success = true, Code = (context.Result as StatusCodeResult).StatusCode.ToString() }); + } + } + } +} diff --git a/Infrastructure/Api/Filters/ServiceExtension.cs b/Infrastructure/Api/Filters/ServiceExtension.cs new file mode 100644 index 0000000..62bb7c8 --- /dev/null +++ b/Infrastructure/Api/Filters/ServiceExtension.cs @@ -0,0 +1,20 @@ +using Microsoft.Extensions.DependencyInjection; +using System; +using System.Collections.Generic; +using System.Text; + +namespace Infrastructure.Api.Filters +{ + public static class ServiceExtension + { + public static IServiceCollection AddCommonResponse(this IServiceCollection services) + { + services.AddMvcCore(options => + { + options.Filters.Add(typeof(ApiResponseFilter)); + options.RespectBrowserAcceptHeader = true; + }); + return services; + } + } +} diff --git a/Infrastructure/Api/Middwares/ExceptionMiddleware.cs b/Infrastructure/Api/Middwares/ExceptionMiddleware.cs new file mode 100644 index 0000000..37bb263 --- /dev/null +++ b/Infrastructure/Api/Middwares/ExceptionMiddleware.cs @@ -0,0 +1,42 @@ +using Microsoft.AspNetCore.Http; +using Microsoft.Extensions.Logging; +using Newtonsoft.Json; +using System; +using System.Collections.Generic; +using System.Text; +using System.Threading.Tasks; + +namespace Infrastructure.Api.Middwares +{ + public class ExceptionMiddleware + { + private readonly RequestDelegate _next; + private readonly ILogger _logger; + public ExceptionMiddleware(RequestDelegate next, ILogger logger) + { + _next = next; + _logger = logger; + } + + public async Task Invoke(HttpContext context) + { + try + { + await _next(context); + } + catch (Exception e) + { + await ExceptionHandlerAsync(context, e); + } + } + + private async Task ExceptionHandlerAsync(HttpContext context, Exception ex) + { + context.Response.ContentType = "application/json"; + context.Response.StatusCode = StatusCodes.Status200OK; + _logger?.LogError($"系统出现错误:{ex.Message}--{ex.StackTrace}"); + var result = new CommonResponse { Code = context.Response.StatusCode.ToString(), Success = false, Message = ex.Message }; + await context.Response.WriteAsync(JsonConvert.SerializeObject(result)); + } + } +} diff --git a/Infrastructure/Application/ApplicationService.cs b/Infrastructure/Application/ApplicationService.cs new file mode 100644 index 0000000..37a62b6 --- /dev/null +++ b/Infrastructure/Application/ApplicationService.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Infrastructure.Application +{ + public class ApplicationService:IApplicationService + { + } +} diff --git a/Infrastructure/Application/IApplicationService.cs b/Infrastructure/Application/IApplicationService.cs new file mode 100644 index 0000000..8103619 --- /dev/null +++ b/Infrastructure/Application/IApplicationService.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Infrastructure.Application +{ + public interface IApplicationService + { + } +} diff --git a/Infrastructure/AutofacInjection/AutofacModule.cs b/Infrastructure/AutofacInjection/AutofacModule.cs new file mode 100644 index 0000000..bca293d --- /dev/null +++ b/Infrastructure/AutofacInjection/AutofacModule.cs @@ -0,0 +1,103 @@ +using Autofac; +using Autofac.Extras.DynamicProxy; +using Infrastructure.Abstructions; +using Infrastructure.Application; +using Infrastructure.Domain; +using Microsoft.Extensions.DependencyModel; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Reflection; +using System.Runtime.Loader; +using System.Text; + +namespace Infrastructure.AutofacInjection +{ + public class AutofacModule: Autofac.Module + { + protected override void Load(ContainerBuilder builder) + { + var assemblies = GetCompilationLibraries(builder); + InjectDomainService(builder, assemblies); + InjectApplicationService(builder, assemblies); + InjectServices(builder, assemblies); + } + + private void InjectServices(ContainerBuilder builder, List assemblyList) + { + builder.RegisterAssemblyTypes(assemblyList.ToArray()) + .Where(type => typeof(ITransientDependency).IsAssignableFrom(type) && !type.IsAbstract) + .AsImplementedInterfaces() + .AsSelf() + .InstancePerDependency(); + + builder.RegisterAssemblyTypes(assemblyList.ToArray()) + .Where(type => typeof(IScopedDependency).IsAssignableFrom(type) && !type.IsAbstract) + .AsImplementedInterfaces() + .AsSelf() + .InstancePerLifetimeScope(); + + builder.RegisterAssemblyTypes(assemblyList.ToArray()) + .Where(type => typeof(ISingletonDependency).IsAssignableFrom(type) && !type.IsAbstract) + .AsImplementedInterfaces() + .AsSelf() + .SingleInstance(); + } + private void InjectApplicationService(ContainerBuilder builder, List assemblyList) + { + //单独注册appservice是为了启用属性注入 + builder.RegisterAssemblyTypes(assemblyList.ToArray()) + .Where(type => typeof(IApplicationService).IsAssignableFrom(type) && !type.IsAbstract) + .AsImplementedInterfaces() + .EnableInterfaceInterceptors() + .PropertiesAutowired() + .InstancePerDependency(); + + builder.RegisterAssemblyTypes(assemblyList.ToArray()) + .Where(type => typeof(ApplicationService).IsAssignableFrom(type) && !type.IsAbstract) + .AsSelf() + .EnableClassInterceptors() + .PropertiesAutowired() + .InstancePerDependency(); + } + private void InjectDomainService(ContainerBuilder builder, List assemblyList) + { + //单独注册领域服务是为了开启领域服务的业务编织和属性注入 + builder.RegisterAssemblyTypes(assemblyList.ToArray()) + .Where(type => typeof(IDomainService).IsAssignableFrom(type) && !type.IsAbstract) + .AsImplementedInterfaces() + .EnableInterfaceInterceptors() + .PropertiesAutowired() + .InstancePerDependency(); + builder.RegisterAssemblyTypes(assemblyList.ToArray()) + .Where(type => typeof(DomainService).IsAssignableFrom(type) && !type.IsAbstract) + .AsSelf() + .EnableClassInterceptors() + .PropertiesAutowired() + .InstancePerDependency(); + } + private List GetCompilationLibraries(ContainerBuilder builder) + { + var compilationLibrary = DependencyContext.Default + .CompileLibraries + .Where(x => !x.Serviceable + && x.Type == "project") + .ToList(); + List assemblyList = new List(); + + foreach (var _compilation in compilationLibrary) + { + try + { + assemblyList.Add(AssemblyLoadContext.Default.LoadFromAssemblyName(new AssemblyName(_compilation.Name))); + } + catch (Exception ex) + { + Console.WriteLine(_compilation.Name + ex.Message); + } + } + + return assemblyList; + } + } +} diff --git a/Infrastructure/Class1.cs b/Infrastructure/Class1.cs new file mode 100644 index 0000000..a88e887 --- /dev/null +++ b/Infrastructure/Class1.cs @@ -0,0 +1,8 @@ +using System; + +namespace Infrastructure +{ + public class Class1 + { + } +} diff --git a/Infrastructure/Converts/Converter.cs b/Infrastructure/Converts/Converter.cs new file mode 100644 index 0000000..7d386fd --- /dev/null +++ b/Infrastructure/Converts/Converter.cs @@ -0,0 +1,200 @@ +using Infrastructure.Abstructions; +using System; +using System.Collections.Generic; +using System.Text; +using System.Text.RegularExpressions; + +namespace Infrastructure.Converts +{ + public class Converter : ITransientDependency, IConverter + { + /// + /// 阿拉伯数字转换成中文数字 + /// + /// + /// + public string NumToChinese(string x) + { + string[] pArrayNum = { "零", "一", "二", "三", "四", "五", "六", "七", "八", "九" }; + //为数字位数建立一个位数组 + string[] pArrayDigit = { "", "十", "百", "千" }; + //为数字单位建立一个单位数组 + string[] pArrayUnits = { "", "万", "亿", "万亿" }; + var pStrReturnValue = ""; //返回值 + var finger = 0; //字符位置指针 + var pIntM = x.Length % 4; //取模 + int pIntK; + if (pIntM > 0) + pIntK = x.Length / 4 + 1; + else + pIntK = x.Length / 4; + //外层循环,四位一组,每组最后加上单位: ",万亿,",",亿,",",万," + for (var i = pIntK; i > 0; i--) + { + var pIntL = 4; + if (i == pIntK && pIntM != 0) + pIntL = pIntM; + //得到一组四位数 + var four = x.Substring(finger, pIntL); + var P_int_l = four.Length; + //内层循环在该组中的每一位数上循环 + for (int j = 0; j < P_int_l; j++) + { + //处理组中的每一位数加上所在的位 + int n = Convert.ToInt32(four.Substring(j, 1)); + if (n == 0) + { + if (j < P_int_l - 1 && Convert.ToInt32(four.Substring(j + 1, 1)) > 0 && !pStrReturnValue.EndsWith(pArrayNum[n])) + pStrReturnValue += pArrayNum[n]; + } + else + { + if (!(n == 1 && (pStrReturnValue.EndsWith(pArrayNum[0]) | pStrReturnValue.Length == 0) && j == P_int_l - 2)) + pStrReturnValue += pArrayNum[n]; + pStrReturnValue += pArrayDigit[P_int_l - j - 1]; + } + } + finger += pIntL; + //每组最后加上一个单位:",万,",",亿," 等 + if (i < pIntK) //如果不是最高位的一组 + { + if (Convert.ToInt32(four) != 0) + //如果所有4位不全是0则加上单位",万,",",亿,"等 + pStrReturnValue += pArrayUnits[i - 1]; + } + else + { + //处理最高位的一组,最后必须加上单位 + pStrReturnValue += pArrayUnits[i - 1]; + } + } + return pStrReturnValue; + } + + /// + /// 转换数字 + /// + private static long CharToNumber(char c) + { + switch (c) + { + case '一': return 1; + case '二': return 2; + case '三': return 3; + case '四': return 4; + case '五': return 5; + case '六': return 6; + case '七': return 7; + case '八': return 8; + case '九': return 9; + case '零': return 0; + default: return -1; + } + } + + /// + /// 转换单位 + /// + private static long CharToUnit(char c) + { + switch (c) + { + case '十': return 10; + case '百': return 100; + case '千': return 1000; + case '万': return 10000; + case '亿': return 100000000; + default: return 1; + } + } + /// + /// 将中文数字转换阿拉伯数字 + /// + /// 汉字数字 + /// 长整型阿拉伯数字 + public long ParseCnToInt(string cnum) + { + cnum = Regex.Replace(cnum, "\\s+", ""); + long firstUnit = 1;//一级单位 + long secondUnit = 1;//二级单位 + long result = 0;//结果 + for (var i = cnum.Length - 1; i > -1; --i)//从低到高位依次处理 + { + var tmpUnit = CharToUnit(cnum[i]);//临时单位变量 + if (tmpUnit > firstUnit)//判断此位是数字还是单位 + { + firstUnit = tmpUnit;//是的话就赋值,以备下次循环使用 + secondUnit = 1; + if (i == 0)//处理如果是"十","十一"这样的开头的 + { + result += firstUnit * secondUnit; + } + continue;//结束本次循环 + } + if (tmpUnit > secondUnit) + { + secondUnit = tmpUnit; + continue; + } + result += firstUnit * secondUnit * CharToNumber(cnum[i]);//如果是数字,则和单位想乘然后存到结果里 + } + return result; + } + + /// + /// 面积转换 + /// + /// + /// + /// + /// + public double ConvertArea(double value, AreaUnits sourceUnit, AreaUnits targetUnit) + { + var rates = new Dictionary { { AreaUnits.m2, 1 }, { AreaUnits.km2, 1000000 }, { AreaUnits.分, 66.67 }, { AreaUnits.亩, 666.67 }, { AreaUnits.公顷, 10000 } }; + var baseValue = rates[sourceUnit] * value; + return Math.Round(baseValue / rates[targetUnit], 2); + } + + public double ConvertPresure(double value,PresureUnits source,PresureUnits target) + { + var rates = new Dictionary { { PresureUnits.pa, 1 }, { PresureUnits.hpa, 100 }, { PresureUnits.kpa, 1000 }, { PresureUnits.mpa, 10000 } }; + var baseValue= rates[source] * value; + return Math.Round(baseValue / rates[target], 2); + } + + public double ConvertLength(double value,LengthUnits source, LengthUnits target) + { + var rates = new Dictionary { { LengthUnits.mm, 1 }, { LengthUnits.cm, 10 }, { LengthUnits.dm, 100 }, { LengthUnits.m, 1000 }, { LengthUnits.km, 1000000 } }; + var baseValue = rates[source] * value; + return Math.Round(baseValue / rates[target], 2); + } + public enum LengthUnits + { + mm, + cm, + dm, + m, + km + } + public enum AreaUnits + { + m2, + km2, + 分, + 亩, + 公亩, + 公顷 + } + + public enum PresureUnits + { + pa, + hpa, + kpa, + mpa + } + } + + + +} diff --git a/Infrastructure/Converts/IConvertChineseToInt.cs b/Infrastructure/Converts/IConvertChineseToInt.cs new file mode 100644 index 0000000..446b05b --- /dev/null +++ b/Infrastructure/Converts/IConvertChineseToInt.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Text; +using static Infrastructure.Converts.Converter; + +namespace Infrastructure.Converts +{ + public interface IConverter + { + string NumToChinese(string x); + long ParseCnToInt(string cnum); + double ConvertArea(double value, AreaUnits sourceUnit, AreaUnits targetUnit); + double ConvertPresure(double value, PresureUnits source, PresureUnits target); + double ConvertLength(double value, LengthUnits source, LengthUnits target); + + } +} diff --git a/Infrastructure/Domain/DomainService.cs b/Infrastructure/Domain/DomainService.cs new file mode 100644 index 0000000..240f3ea --- /dev/null +++ b/Infrastructure/Domain/DomainService.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Infrastructure.Domain +{ + public class DomainService:IDomainService + { + } +} diff --git a/Infrastructure/Domain/IDomainService.cs b/Infrastructure/Domain/IDomainService.cs new file mode 100644 index 0000000..d2a62df --- /dev/null +++ b/Infrastructure/Domain/IDomainService.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Infrastructure.Domain +{ + public interface IDomainService + { + } +} diff --git a/Infrastructure/EntityFramework/Repository.cs b/Infrastructure/EntityFramework/Repository.cs new file mode 100644 index 0000000..613c00b --- /dev/null +++ b/Infrastructure/EntityFramework/Repository.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Infrastructure.EntityFramework +{ + public class Repository + { + } +} diff --git a/Infrastructure/Excel/Attributes/ChildImportDtoAttribute.cs b/Infrastructure/Excel/Attributes/ChildImportDtoAttribute.cs new file mode 100644 index 0000000..9f59efc --- /dev/null +++ b/Infrastructure/Excel/Attributes/ChildImportDtoAttribute.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Infrastructure.Excel.Attributes +{ + public class ChildImportDtoAttribute : Attribute + { + public Type DtoType { get; set; } + } +} diff --git a/Infrastructure/Excel/Attributes/ExcelColumnAttribute.cs b/Infrastructure/Excel/Attributes/ExcelColumnAttribute.cs new file mode 100644 index 0000000..e9122e7 --- /dev/null +++ b/Infrastructure/Excel/Attributes/ExcelColumnAttribute.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Infrastructure.Excel.Attributes +{ + [AttributeUsage(AttributeTargets.Property,Inherited =false)] + public class ExcelColumnAttribute : Attribute + { + public string Name { get; set; } + public bool Required { get; set; } + public string Regex { get; set; } + public string EnumKey { get; set; } + public string[] Enums { get; set; } + public string[] ParentHeaderNameList { get; set; } + public int Sort { get; set; } + } +} diff --git a/Infrastructure/Excel/Attributes/TableColumnDtoAttribute.cs b/Infrastructure/Excel/Attributes/TableColumnDtoAttribute.cs new file mode 100644 index 0000000..0627747 --- /dev/null +++ b/Infrastructure/Excel/Attributes/TableColumnDtoAttribute.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Infrastructure.Excel.Attributes +{ + [AttributeUsage(AttributeTargets.Class)] + public class TableColumnDtoAttribute:Attribute + { + } +} diff --git a/Infrastructure/Excel/Attributes/TableDtoAttribute.cs b/Infrastructure/Excel/Attributes/TableDtoAttribute.cs new file mode 100644 index 0000000..1844211 --- /dev/null +++ b/Infrastructure/Excel/Attributes/TableDtoAttribute.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Drawing; +using System.Text; +using NPOI.SS.Formula.Functions; + +namespace Infrastructure.Excel.Attributes +{ + [AttributeUsage(AttributeTargets.Class,Inherited = false)] + public class TableDtoAttribute : Attribute + { + public string Name { get; set; } + } +} diff --git a/Infrastructure/Excel/Attributes/TableHeaderAttribute.cs b/Infrastructure/Excel/Attributes/TableHeaderAttribute.cs new file mode 100644 index 0000000..8f64fbb --- /dev/null +++ b/Infrastructure/Excel/Attributes/TableHeaderAttribute.cs @@ -0,0 +1,26 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Infrastructure.Excel.Attributes +{ + [AttributeUsage(AttributeTargets.Class,AllowMultiple = true)] + public class TableHeaderAttribute : Attribute + { + public string Title { get; set; } + public int StartRowIndex { get; set; } + public int StartCellIndex { get; set; } + public int EndRowIndex { get; set; } + public int EndCellIndex { get; set; } + public bool Auto { get; set; } + public float FontSize { get; set; } + public HeaderHorizontalAlignment HorizontalAlignment { get; set; } + } + + public enum HeaderHorizontalAlignment + { + Left, + Center, + Right + } +} diff --git a/Infrastructure/Excel/HeaderColumnInfo.cs b/Infrastructure/Excel/HeaderColumnInfo.cs new file mode 100644 index 0000000..38d3561 --- /dev/null +++ b/Infrastructure/Excel/HeaderColumnInfo.cs @@ -0,0 +1,14 @@ +using Infrastructure.Excel.Attributes; +using System; +using System.Collections.Generic; +using System.Reflection; +using System.Text; + +namespace Infrastructure.Excel +{ + public class HeaderColumnInfo + { + public PropertyInfo Property { get; set; } + public ExcelColumnAttribute Attribute { get; set; } + } +} diff --git a/Infrastructure/Excel/IParser.cs b/Infrastructure/Excel/IParser.cs new file mode 100644 index 0000000..7485a29 --- /dev/null +++ b/Infrastructure/Excel/IParser.cs @@ -0,0 +1,14 @@ +using NPOI.SS.UserModel; +using System; +using System.Collections.Generic; +using System.Text; + +namespace Infrastructure.Excel +{ + public interface IParser + { + IWorkbook ReadExcel(string path); + List ParseExcel(IWorkbook workbook) where T : class, new(); + string GetSheetName(Type type); + } +} diff --git a/Infrastructure/Excel/ImportDtoInfo.cs b/Infrastructure/Excel/ImportDtoInfo.cs new file mode 100644 index 0000000..3645906 --- /dev/null +++ b/Infrastructure/Excel/ImportDtoInfo.cs @@ -0,0 +1,15 @@ +using Infrastructure.Excel.Attributes; +using System; +using System.Collections.Generic; +using System.Reflection; +using System.Text; + +namespace Infrastructure.Excel +{ + public class ImportDtoInfo + { + public Type Type { get; set; } + public PropertyInfo Property { get; set; } + public TableDtoAttribute Attribute { get; set; } + } +} diff --git a/Infrastructure/Excel/Parser.cs b/Infrastructure/Excel/Parser.cs new file mode 100644 index 0000000..8373b99 --- /dev/null +++ b/Infrastructure/Excel/Parser.cs @@ -0,0 +1,340 @@ +using Infrastructure.Abstructions; +using Infrastructure.Excel.Attributes; +using Microsoft.Extensions.Logging; +using NPOI.HSSF.UserModel; +using NPOI.SS.UserModel; +using NPOI.XSSF.UserModel; +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; + +namespace Infrastructure.Excel +{ + public class Parser:ITransientDependency,IParser + { + public IWorkbook ReadExcel(string path) + { + if (!File.Exists(path)) + { + throw new Exception("该文件不存在"); + } + IWorkbook workBook = null; + using (var stream = new FileStream(path, FileMode.Open, FileAccess.Read)) + { + try + { + var fileType = Path.GetExtension(path); + if (fileType == ".xlsx") + { + //2007以上版本 + workBook = new XSSFWorkbook(stream); + } + else if (fileType == ".xls") + { + //2007一下版本 + workBook = new HSSFWorkbook(stream); + } + else + { + throw new Exception("非Excel文件不可解析"); + } + } + catch (Exception e) + { + throw e; + } + + } + + return workBook; + } + + public List ParseExcel(IWorkbook workbook) where T : class, new() + { + var type = typeof(T); + var sheetName = GetSheetName(type); + var sheet = workbook.GetSheet(sheetName); + if (sheet == null) + { + throw new Exception($"该Excel表格没有名为{sheetName}的sheet"); + } + + var result = ParseSheet(workbook, sheet); + return result; + } + + public IWorkbook BuildWorkbook(Type type) + { + var workbook = new XSSFWorkbook(); + BuildSheet(type, workbook); + return workbook; + } + public ISheet BuildSheet(Type type, IWorkbook book) + { + var sheetName = GetSheetName(type); + var tableColumns = GetTableColumns(type); + var sheet = book.CreateSheet(sheetName); + var depth = tableColumns.Max(c => c.Depth); + var firstRow = sheet.CreateRow(0); + var cellIndex = 0; + foreach (var columnInfo in tableColumns) + { + SetTableColumns(sheet, firstRow, columnInfo, ref cellIndex); + } + + return sheet; + + } + + private void SetTableColumns(ISheet sheet, IRow row, TableColumnInfo columnInfo, ref int cellIndex) + { + var cell = row.CreateCell(cellIndex++); + cell.SetCellValue(columnInfo.Attribute.Name); + if (columnInfo.ChildHeaderInfos != null && columnInfo.ChildHeaderInfos.Any()) + { + var nextRow = sheet.CreateRow(row.RowNum++); + foreach (var childColumnInfo in columnInfo.ChildHeaderInfos) + { + SetTableColumns(sheet, nextRow, childColumnInfo, ref cellIndex); + } + } + } + private List ParseSheet(IWorkbook workBook, ISheet sheet) + { + var type = typeof(TType); + var result = new List(); + var tableHeaders = GetTableHeaders(type); + var tableColumns = GetTableColumns(type); + var depth = tableHeaders.Count + tableColumns.Max(c => c.Depth); + var columnInfos = GetColumnInfos(tableColumns); + var rowCount = sheet.LastRowNum; + var cellCount = sheet.GetRow(depth)?.LastCellNum; + if (!cellCount.HasValue) + { + throw new Exception("该Excel文档没有数据"); + } + for (var i = depth; i <= rowCount; i++) + { + var rootInstance = System.Activator.CreateInstance(type); + var row = sheet.GetRow(i); + var instanceDict = new Dictionary { { type, rootInstance } }; + bool allBlank = true; + for (int j = 0; j < cellCount; j++) + { + var cell = row.GetCell(j); + if (cell == null || cell.CellType == CellType.Blank) + { + continue; + } + + allBlank = false; + var columnInfo = columnInfos[j]; + object instance = null; + if (!instanceDict.ContainsKey(columnInfo.Property.ReflectedType)) + { + instance = System.Activator.CreateInstance(columnInfo.Property.ReflectedType); + instanceDict.Add(columnInfo.Property.ReflectedType, instance); + } + else + { + instance = instanceDict[columnInfo.Property.ReflectedType]; + } + var baseType = Nullable.GetUnderlyingType(columnInfo.Property.PropertyType); + baseType = baseType == null ? columnInfo.Property.PropertyType : baseType; + try + { + if (cell.CellType == CellType.Numeric && DateUtil.IsValidExcelDate(cell.NumericCellValue) && DateUtil.IsCellDateFormatted(cell))//日期类型 + { + var value = cell.DateCellValue; + columnInfo.Property.SetValue(instance, + Convert.ChangeType(value, baseType), null); + } + else + { + if (!string.IsNullOrEmpty(cell.ToString())) + { + switch (cell.CellType) + { + case CellType.String: + columnInfo.Property.SetValue(instance, Convert.ChangeType(cell.StringCellValue, baseType), null); + break; + case CellType.Boolean: + columnInfo.Property.SetValue(instance, Convert.ChangeType(cell.BooleanCellValue, baseType), null); + break; + case CellType.Numeric: + { + columnInfo.Property.SetValue(instance, + DateUtil.IsCellDateFormatted(cell) + ? Convert.ChangeType(cell.DateCellValue, baseType) + : Convert.ChangeType(cell.NumericCellValue, baseType), null); + break; + } + case CellType.Blank: + columnInfo.Property.SetValue(instance, Convert.ChangeType(cell.ToString().Trim(), baseType), null); + break; + default: + throw new Exception("不支持的单元格式"); + } + } + } + + } + catch (Exception e) + { + throw e; + } + } + + if (allBlank) + { + continue; + } + var baseTypePropertites = type.GetProperties(System.Reflection.BindingFlags.Instance | + System.Reflection.BindingFlags.Public).ToList(); + foreach (var property in baseTypePropertites) + { + if (instanceDict.ContainsKey(property.PropertyType)) + { + var subInstance = instanceDict[property.PropertyType]; + property.SetValue(rootInstance, subInstance); + } + } + result.Add(rootInstance); + } + return result.OfType().ToList(); + } + + public string GetSheetName(Type type) + { + var importAttr = type.GetCustomAttributes(typeof(TableDtoAttribute), false).FirstOrDefault(); + if (importAttr == null) + { + throw new Exception("非法类型,请检查该类型是否有Importable特性"); + } + + var sheetName = ((TableDtoAttribute)importAttr).Name; + return sheetName; + } + private List GetColumnInfos(List tableColumnInfos) + { + var result = new List(); + tableColumnInfos.ForEach(c => + { + var columnInfos = GetColumnInfos(c, 0); + result.AddRange(columnInfos); + }); + return result; + } + + private List GetColumnInfos(TableColumnInfo tableColumnInfo, int baseSort) + { + var result = new List(); + if (tableColumnInfo.ChildHeaderInfos != null && tableColumnInfo.ChildHeaderInfos.Any()) + { + var children = tableColumnInfo.ChildHeaderInfos.OrderBy(info => info.Attribute.Sort).ToList(); + children.ForEach(child => + { + var childColumnInfos = GetColumnInfos(child, tableColumnInfo.Attribute.Sort); + result.AddRange(childColumnInfos); + }); + } + else + { + var columnInfo = new HeaderColumnInfo { Attribute = tableColumnInfo.Attribute, Property = tableColumnInfo.Property }; + result.Add(columnInfo); + } + return result; + } + private List GetTableHeaders(Type type) + { + var headerAttrObjs = type.GetCustomAttributes(typeof(TableHeaderAttribute), true).ToList(); + var headerAttrs = from obj in headerAttrObjs + select (TableHeaderAttribute)obj; + return headerAttrs.ToList(); + } + private List GetTableColumns(Type type) + { + var result = new List(); + var properties = type.GetProperties(System.Reflection.BindingFlags.Instance | + System.Reflection.BindingFlags.Public).ToList(); + if (properties == null || !properties.Any()) + { + throw new Exception("该类型没有公共属性供生成Excel"); + } + foreach (var property in properties) + { + var columnAttrObj = property.GetCustomAttributes(typeof(ExcelColumnAttribute), true).FirstOrDefault(); + if (columnAttrObj != null) + { + var header = new TableColumnInfo + { Attribute = (ExcelColumnAttribute)columnAttrObj, Property = property, ChildHeaderInfos = new List() }; + var propertyType = property.PropertyType; + var columnDtoAttr = propertyType.GetCustomAttributes(typeof(TableColumnDtoAttribute), true).FirstOrDefault(); + if (columnDtoAttr != null) + { + var childHeaders = GetTableColumns(propertyType); + header.ChildHeaderInfos.AddRange(childHeaders); + } + result.Add(header); + } + else + { + var childImportDtoAttrObj = property.GetCustomAttributes(typeof(ChildImportDtoAttribute), true).FirstOrDefault(); + if (childImportDtoAttrObj != null) + { + var childType = ((ChildImportDtoAttribute)childImportDtoAttrObj).DtoType; + var childImportAttr = childType.GetCustomAttributes(typeof(TableDtoAttribute), false).FirstOrDefault(); + if (childImportAttr == null) + { + throw new Exception("非法类型,请检查该类型是否有Importable特性"); + } + + } + } + } + + return result.OrderBy(r => r.Attribute.Sort).ToList(); + } + + private Tuple, List> GetImportPropertiesAndDtos(Type importType) + { + var properties = importType.GetProperties(System.Reflection.BindingFlags.Instance | + System.Reflection.BindingFlags.Public).ToList(); + if (properties == null || !properties.Any()) + { + throw new Exception("该类型没有公共属性供生成Excel"); + } + var columnProperties = new List(); + var childDtoAttrs = new List(); + foreach (var property in properties) + { + var columnAttrObj = property.GetCustomAttributes(typeof(ExcelColumnAttribute), true).FirstOrDefault(); + if (columnAttrObj != null) + { + var headerInfo = new HeaderColumnInfo + { Attribute = (ExcelColumnAttribute)columnAttrObj, Property = property }; + columnProperties.Add(headerInfo); + } + else + { + var childImportDtoAttrObj = property.GetCustomAttributes(typeof(ChildImportDtoAttribute), true).FirstOrDefault(); + if (childImportDtoAttrObj != null) + { + var childType = ((ChildImportDtoAttribute)childImportDtoAttrObj).DtoType; + var childImportAttr = childType.GetCustomAttributes(typeof(TableDtoAttribute), false).FirstOrDefault(); + if (childImportAttr == null) + { + throw new Exception("非法类型,请检查该类型是否有Importable特性"); + } + + childDtoAttrs.Add(new ImportDtoInfo + { Attribute = (TableDtoAttribute)childImportAttr, Type = childType, Property = property }); + } + } + } + return new Tuple, List>(columnProperties, childDtoAttrs); + } + } +} diff --git a/Infrastructure/Excel/TableColumnInfo.cs b/Infrastructure/Excel/TableColumnInfo.cs new file mode 100644 index 0000000..c39eac5 --- /dev/null +++ b/Infrastructure/Excel/TableColumnInfo.cs @@ -0,0 +1,30 @@ +using Infrastructure.Excel.Attributes; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Reflection; +using System.Text; + +namespace Infrastructure.Excel +{ + public class TableColumnInfo + { + public PropertyInfo Property { get; set; } + public ExcelColumnAttribute Attribute { get; set; } + public List ChildHeaderInfos { get; set; } + + public int Depth + { + get + { + var depth = 1; + if (ChildHeaderInfos != null && ChildHeaderInfos.Any()) + { + depth += ChildHeaderInfos.Max(c => c.Depth); + } + + return depth; + } + } + } +} diff --git a/Infrastructure/Infrastructure.csproj b/Infrastructure/Infrastructure.csproj new file mode 100644 index 0000000..b37f7ff --- /dev/null +++ b/Infrastructure/Infrastructure.csproj @@ -0,0 +1,17 @@ + + + + netcoreapp3.1 + + + + + + + + + + + + + diff --git a/Infrastructure/Word/IWordParser.cs b/Infrastructure/Word/IWordParser.cs new file mode 100644 index 0000000..7037d0a --- /dev/null +++ b/Infrastructure/Word/IWordParser.cs @@ -0,0 +1,13 @@ +using NPOI.XWPF.UserModel; +using System; +using System.Collections.Generic; +using System.Text; + +namespace Infrastructure.Word +{ + public interface IWordParser + { + XWPFDocument ReadDocument(string path); + List> Parse(XWPFDocument document, IWordTableResolver resolver); + } +} diff --git a/Infrastructure/Word/IWordTableResolver.cs b/Infrastructure/Word/IWordTableResolver.cs new file mode 100644 index 0000000..20f97c1 --- /dev/null +++ b/Infrastructure/Word/IWordTableResolver.cs @@ -0,0 +1,12 @@ +using NPOI.XWPF.UserModel; +using System; +using System.Collections.Generic; +using System.Text; + +namespace Infrastructure.Word +{ + public interface IWordTableResolver + { + Dictionary Resolve(XWPFTable table); + } +} diff --git a/Infrastructure/Word/Parser.cs b/Infrastructure/Word/Parser.cs new file mode 100644 index 0000000..7ad02eb --- /dev/null +++ b/Infrastructure/Word/Parser.cs @@ -0,0 +1,38 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Text; +using Infrastructure.Abstructions; +using NPOI.XWPF.UserModel; + +namespace Infrastructure.Word +{ + public class Parser: IWordParser,ITransientDependency + { + public XWPFDocument ReadDocument(string path) + { + XWPFDocument document = null; + if (!File.Exists(path)) + { + throw new Exception("文件不存在"); + } + using (FileStream file = new FileStream(path, FileMode.Open, FileAccess.Read)) + { + document = new XWPFDocument(file); + } + + return document; + } + + public List> Parse(XWPFDocument document, IWordTableResolver resolver) + { + var result = new List>(); + foreach (XWPFTable table in document.Tables) + { + var parseResult= resolver.Resolve(table); + result.Add(parseResult); + } + return result; + } + } +} diff --git a/Infrastructure/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/Infrastructure/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs new file mode 100644 index 0000000..ad8dfe1 --- /dev/null +++ b/Infrastructure/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] diff --git a/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.AssemblyInfo.cs b/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.AssemblyInfo.cs new file mode 100644 index 0000000..8c0aeb1 --- /dev/null +++ b/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Infrastructure")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Infrastructure")] +[assembly: System.Reflection.AssemblyTitleAttribute("Infrastructure")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.AssemblyInfoInputs.cache b/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.AssemblyInfoInputs.cache new file mode 100644 index 0000000..bf52a9b --- /dev/null +++ b/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +6c5ef6ba66678613c83f030c363be944a7631b94 diff --git a/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.GeneratedMSBuildEditorConfig.editorconfig b/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b241db0 --- /dev/null +++ b/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,3 @@ +is_global = true +build_property.RootNamespace = Infrastructure +build_property.ProjectDir = C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Infrastructure\ diff --git a/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.assets.cache b/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.assets.cache new file mode 100644 index 0000000..88c6854 Binary files /dev/null and b/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.assets.cache differ diff --git a/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.csproj.AssemblyReference.cache b/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.csproj.AssemblyReference.cache new file mode 100644 index 0000000..f8b2c32 Binary files /dev/null and b/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.csproj.AssemblyReference.cache differ diff --git a/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.csproj.BuildWithSkipAnalyzers b/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.csproj.CoreCompileInputs.cache b/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..7cdcf30 --- /dev/null +++ b/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +efaee41e6a8064115e383a722b9597646fc2d4bc diff --git a/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.csproj.FileListAbsolute.txt b/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..9b10ade --- /dev/null +++ b/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.csproj.FileListAbsolute.txt @@ -0,0 +1,10 @@ +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Infrastructure\bin\Debug\netcoreapp3.1\Infrastructure.deps.json +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Infrastructure\bin\Debug\netcoreapp3.1\Infrastructure.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Infrastructure\bin\Debug\netcoreapp3.1\Infrastructure.pdb +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Infrastructure\obj\Debug\netcoreapp3.1\Infrastructure.csproj.AssemblyReference.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Infrastructure\obj\Debug\netcoreapp3.1\Infrastructure.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Infrastructure\obj\Debug\netcoreapp3.1\Infrastructure.AssemblyInfoInputs.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Infrastructure\obj\Debug\netcoreapp3.1\Infrastructure.AssemblyInfo.cs +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Infrastructure\obj\Debug\netcoreapp3.1\Infrastructure.csproj.CoreCompileInputs.cache +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Infrastructure\obj\Debug\netcoreapp3.1\Infrastructure.dll +C:\Users\NineFishes\Desktop\FireStaionDocuments-master\Infrastructure\obj\Debug\netcoreapp3.1\Infrastructure.pdb diff --git a/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.dll b/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.dll new file mode 100644 index 0000000..ff1007e Binary files /dev/null and b/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.dll differ diff --git a/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.pdb b/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.pdb new file mode 100644 index 0000000..d79f216 Binary files /dev/null and b/Infrastructure/obj/Debug/netcoreapp3.1/Infrastructure.pdb differ diff --git a/Infrastructure/obj/Infrastructure.csproj.nuget.dgspec.json b/Infrastructure/obj/Infrastructure.csproj.nuget.dgspec.json new file mode 100644 index 0000000..a93a1d5 --- /dev/null +++ b/Infrastructure/obj/Infrastructure.csproj.nuget.dgspec.json @@ -0,0 +1,92 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": {} + }, + "projects": { + "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj", + "projectName": "Infrastructure", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "dependencies": { + "Autofac": { + "target": "Package", + "version": "[6.2.0, )" + }, + "Autofac.Extensions.DependencyInjection": { + "target": "Package", + "version": "[7.1.0, )" + }, + "Autofac.Extras.DynamicProxy": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.AspNetCore.Mvc.Core": { + "target": "Package", + "version": "[2.2.5, )" + }, + "Microsoft.Extensions.DependencyModel": { + "target": "Package", + "version": "[5.0.0, )" + }, + "NPOI": { + "target": "Package", + "version": "[2.5.3, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Infrastructure/obj/Infrastructure.csproj.nuget.g.props b/Infrastructure/obj/Infrastructure.csproj.nuget.g.props new file mode 100644 index 0000000..1168ab9 --- /dev/null +++ b/Infrastructure/obj/Infrastructure.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\NineFishes\.nuget\packages\ + PackageReference + 6.1.0 + + + + + \ No newline at end of file diff --git a/Infrastructure/obj/Infrastructure.csproj.nuget.g.targets b/Infrastructure/obj/Infrastructure.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/Infrastructure/obj/Infrastructure.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Infrastructure/obj/project.assets.json b/Infrastructure/obj/project.assets.json new file mode 100644 index 0000000..839e6a2 --- /dev/null +++ b/Infrastructure/obj/project.assets.json @@ -0,0 +1,6719 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": { + "Autofac/6.2.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "4.7.1" + }, + "compile": { + "lib/netstandard2.1/Autofac.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Autofac.dll": {} + } + }, + "Autofac.Extensions.DependencyInjection/7.1.0": { + "type": "package", + "dependencies": { + "Autofac": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll": {} + } + }, + "Autofac.Extras.DynamicProxy/6.0.0": { + "type": "package", + "dependencies": { + "Autofac": "6.0.0", + "Castle.Core": "4.4.0" + }, + "compile": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {} + } + }, + "Castle.Core/4.4.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Castle.Core.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.Core/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Authorization": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {} + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Core/2.2.5": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authentication.Core": "2.2.0", + "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Mvc.Abstractions": "2.2.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Routing": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.DependencyInjection": "2.2.0", + "Microsoft.Extensions.DependencyModel": "2.1.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "System.Diagnostics.DiagnosticSource": "4.5.0", + "System.Threading.Tasks.Extensions": "4.5.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {} + } + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "2.2.0" + }, + "compile": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {} + }, + "runtime": { + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {} + } + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0" + }, + "compile": { + "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DependencyModel/5.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "5.0.0", + "System.Text.Json": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "2.2.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "2.2.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {} + } + }, + "Microsoft.Extensions.Options/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0", + "Microsoft.Extensions.Primitives": "2.2.0", + "System.ComponentModel.Annotations": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Primitives/2.2.0": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.1", + "System.Runtime.CompilerServices.Unsafe": "4.5.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "2.2.0", + "System.Buffers": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.SystemEvents/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "NPOI/2.5.3": { + "type": "package", + "dependencies": { + "Portable.BouncyCastle": "1.8.6", + "SharpZipLib": "[1.2.0]", + "System.Configuration.ConfigurationManager": "4.5.0", + "System.Drawing.Common": "4.5.0" + }, + "compile": { + "lib/netstandard2.1/NPOI.OOXML.dll": {}, + "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {}, + "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {}, + "lib/netstandard2.1/NPOI.dll": {} + }, + "runtime": { + "lib/netstandard2.1/NPOI.OOXML.dll": {}, + "lib/netstandard2.1/NPOI.OpenXml4Net.dll": {}, + "lib/netstandard2.1/NPOI.OpenXmlFormats.dll": {}, + "lib/netstandard2.1/NPOI.dll": {} + } + }, + "Portable.BouncyCastle/1.8.6": { + "type": "package", + "compile": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + }, + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "SharpZipLib/1.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {} + }, + "runtime": { + "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {} + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Configuration.ConfigurationManager/4.5.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.5.0", + "System.Security.Permissions": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.7.1": { + "type": "package", + "compile": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Drawing.Common/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "Microsoft.Win32.SystemEvents": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Memory/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/4.5.1": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.AccessControl/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/4.5.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.Encodings.Web/5.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Text.Encodings.Web.dll": {} + } + }, + "System.Text.Json/5.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/System.Text.Json.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Text.Json.dll": {} + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + } + } + }, + "libraries": { + "Autofac/6.2.0": { + "sha512": "BX8IM0GANE38uSr4QwXL4PgA8vWWYt2P5cZzipn/vDnf0fDbPSGKSHEroJ09rB7ANxdyf7MdEgVs+pvL8kwYCg==", + "type": "package", + "path": "autofac/6.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "autofac.6.2.0.nupkg.sha512", + "autofac.nuspec", + "icon.png", + "lib/net5.0/Autofac.dll", + "lib/net5.0/Autofac.pdb", + "lib/net5.0/Autofac.xml", + "lib/netstandard2.0/Autofac.dll", + "lib/netstandard2.0/Autofac.pdb", + "lib/netstandard2.0/Autofac.xml", + "lib/netstandard2.1/Autofac.dll", + "lib/netstandard2.1/Autofac.pdb", + "lib/netstandard2.1/Autofac.xml" + ] + }, + "Autofac.Extensions.DependencyInjection/7.1.0": { + "sha512": "nm6rZREZ9tjdKXu9cmT69zHkZODagjCPlRRCOhiS1VqFFis9LQnMl18L4OYr8yfCW1WAQkFDD2CNaK/kF5Eqeg==", + "type": "package", + "path": "autofac.extensions.dependencyinjection/7.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512", + "autofac.extensions.dependencyinjection.nuspec", + "icon.png", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.pdb", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.pdb", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml" + ] + }, + "Autofac.Extras.DynamicProxy/6.0.0": { + "sha512": "Z86ZX33qYZ09xhdnYEyD/xilGUQBiITSAdHVZw59Qb+bN+tN/WFVDBZGQZZnI3+l8+hdjM2zWdcK4sgUEavRzw==", + "type": "package", + "path": "autofac.extras.dynamicproxy/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "autofac.extras.dynamicproxy.6.0.0.nupkg.sha512", + "autofac.extras.dynamicproxy.nuspec", + "icon.png", + "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll", + "lib/netstandard2.0/Autofac.Extras.DynamicProxy.pdb", + "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml", + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll", + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.pdb", + "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml" + ] + }, + "Castle.Core/4.4.0": { + "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "type": "package", + "path": "castle.core/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ASL - Apache Software Foundation License.txt", + "CHANGELOG.md", + "LICENSE", + "castle.core.4.4.0.nupkg.sha512", + "castle.core.nuspec", + "lib/net35/Castle.Core.dll", + "lib/net35/Castle.Core.xml", + "lib/net40/Castle.Core.dll", + "lib/net40/Castle.Core.xml", + "lib/net45/Castle.Core.dll", + "lib/net45/Castle.Core.xml", + "lib/netstandard1.3/Castle.Core.dll", + "lib/netstandard1.3/Castle.Core.xml", + "lib/netstandard1.5/Castle.Core.dll", + "lib/netstandard1.5/Castle.Core.xml", + "readme.txt" + ] + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "sha512": "VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.xml", + "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Authentication.Core/2.2.0": { + "sha512": "XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.core/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.xml", + "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.core.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "sha512": "/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "sha512": "aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", + "type": "package", + "path": "microsoft.aspnetcore.authorization.policy/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.xml", + "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.authorization.policy.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml", + "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", + "type": "package", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", + "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.hosting.server.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http/2.2.0": { + "sha512": "YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==", + "type": "package", + "path": "microsoft.aspnetcore.http/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml", + "microsoft.aspnetcore.http.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "type": "package", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml", + "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "sha512": "2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", + "type": "package", + "path": "microsoft.aspnetcore.http.extensions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml", + "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "type": "package", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml", + "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.http.features.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { + "sha512": "ET6uZpfVbGR1NjCuLaLy197cQ3qZUjzl7EG5SL4GfJH/c9KRE89MMBrQegqWsh0w1iRUB/zQaK0anAjxa/pz4g==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.xml", + "microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Core/2.2.5": { + "sha512": "/8sr8ixIUD57UFwUntha9bOwex7/AkZfdk1f9oNJG1Ek7p/uuKVa7fuHmYZpQOf35Oxrt+2Ku4WPwMSbNxOuWg==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.core/2.2.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.xml", + "microsoft.aspnetcore.mvc.core.2.2.5.nupkg.sha512", + "microsoft.aspnetcore.mvc.core.nuspec" + ] + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { + "sha512": "CIHWEKrHzZfFp7t57UXsueiSA/raku56TgRYauV/W1+KAQq6vevz60zjEKaazt3BI76zwMz3B4jGWnCwd8kwQw==", + "type": "package", + "path": "microsoft.aspnetcore.responsecaching.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml", + "microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.responsecaching.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "sha512": "jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", + "type": "package", + "path": "microsoft.aspnetcore.routing/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll", + "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.xml", + "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.routing.nuspec" + ] + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "sha512": "lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", + "type": "package", + "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml", + "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.routing.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "sha512": "9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", + "type": "package", + "path": "microsoft.aspnetcore.webutilities/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml", + "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", + "microsoft.aspnetcore.webutilities.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/2.2.0": { + "sha512": "65MrmXCziWaQFrI0UHkQbesrX5wTwf9XPjY5yFm/VkgJKFJ5gqvXRoXjIZcf2wLi5ZlwGz/oMYfyURVCWbM5iw==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection/2.2.0": { + "sha512": "MZtBIwfDFork5vfjpJdG5g8wuJFt7d/y3LOSVVtDK/76wlbtz6cjltfKHqLx2TKVqTj5/c41t77m1+h20zqtPA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Microsoft.Extensions.DependencyInjection.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.xml", + "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.2.2.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": { + "sha512": "f9hstgjVmr6rmrfGSpfsVOl2irKAgr1QjrSi3FgnS7kulxband50f2brRLwySAQTADPZeTdow0mpSMcoAdadCw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.DependencyModel/5.0.0": { + "sha512": "umBECCoMC+sOUgm083yFr8SxTobUOcPFH4AXigdO2xJiszCHAnmeDl4qPphJt+oaJ/XIfV1wOjIts2nRnki61Q==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net451/Microsoft.Extensions.DependencyModel.dll", + "lib/net451/Microsoft.Extensions.DependencyModel.xml", + "lib/net461/Microsoft.Extensions.DependencyModel.dll", + "lib/net461/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.5.0.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { + "sha512": "EcnaSsPTqx2MGnHrmWOD0ugbuuqVT8iICqSqPzi45V5/MA1LjUNb0kwgcxBGqizV1R+WeBK7/Gw25Jzkyk9bIw==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { + "sha512": "+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/2.2.0": { + "sha512": "B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "sha512": "gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", + "type": "package", + "path": "microsoft.extensions.objectpool/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml", + "microsoft.extensions.objectpool.2.2.0.nupkg.sha512", + "microsoft.extensions.objectpool.nuspec" + ] + }, + "Microsoft.Extensions.Options/2.2.0": { + "sha512": "UpZLNLBpIZ0GTebShui7xXYh6DmBHjWM8NxGxZbdQh/bPZ5e6YswqI+bru6BnEL5eWiOdodsXtEz3FROcgi/qg==", + "type": "package", + "path": "microsoft.extensions.options/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.2.2.0.nupkg.sha512", + "microsoft.extensions.options.nuspec" + ] + }, + "Microsoft.Extensions.Primitives/2.2.0": { + "sha512": "azyQtqbm4fSaDzZHD/J+V6oWMFaf2tWP4WEGIYePLCMw3+b2RQdj9ybgbQyjCshcitQKQ4lEDOZjmSlTTrHxUg==", + "type": "package", + "path": "microsoft.extensions.primitives/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.2.2.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec" + ] + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "sha512": "iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", + "type": "package", + "path": "microsoft.net.http.headers/2.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll", + "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml", + "microsoft.net.http.headers.2.2.0.nupkg.sha512", + "microsoft.net.http.headers.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/2.0.0": { + "sha512": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==", + "type": "package", + "path": "microsoft.netcore.platforms/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.2.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Win32.SystemEvents/4.5.0": { + "sha512": "LuI1oG+24TUj1ZRQQjM5Ew73BKnZE5NZ/7eAdh1o8ST5dPhUnJvIkiIn2re3MwnkRy6ELRnvEbBxHP8uALKhJw==", + "type": "package", + "path": "microsoft.win32.systemevents/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "microsoft.win32.systemevents.4.5.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "NPOI/2.5.3": { + "sha512": "+DDU8JOHNhhiyAHr8Ew1hp85uPTcEw+O93+R2GDRB7sI5KpiQ+1i65DlY2OzfOq43+R3+39MyM7BTvjQi2KbfA==", + "type": "package", + "path": "npoi/2.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "Read Me.txt", + "lib/net45/NPOI.OOXML.XML", + "lib/net45/NPOI.OOXML.dll", + "lib/net45/NPOI.OpenXml4Net.XML", + "lib/net45/NPOI.OpenXml4Net.dll", + "lib/net45/NPOI.OpenXmlFormats.dll", + "lib/net45/NPOI.XML", + "lib/net45/NPOI.dll", + "lib/netstandard2.0/NPOI.OOXML.dll", + "lib/netstandard2.0/NPOI.OOXML.xml", + "lib/netstandard2.0/NPOI.OpenXml4Net.dll", + "lib/netstandard2.0/NPOI.OpenXml4Net.xml", + "lib/netstandard2.0/NPOI.OpenXmlFormats.dll", + "lib/netstandard2.0/NPOI.dll", + "lib/netstandard2.0/NPOI.xml", + "lib/netstandard2.1/NPOI.OOXML.dll", + "lib/netstandard2.1/NPOI.OOXML.xml", + "lib/netstandard2.1/NPOI.OpenXml4Net.dll", + "lib/netstandard2.1/NPOI.OpenXml4Net.xml", + "lib/netstandard2.1/NPOI.OpenXmlFormats.dll", + "lib/netstandard2.1/NPOI.dll", + "lib/netstandard2.1/NPOI.xml", + "logo/120_120.jpg", + "logo/240_240.png", + "logo/32_32.jpg", + "logo/60_60.jpg", + "npoi.2.5.3.nupkg.sha512", + "npoi.nuspec" + ] + }, + "Portable.BouncyCastle/1.8.6": { + "sha512": "y+GvZomzhY+Lwu5mMeNmFFYLHiEr2xFDOANhABn/wgg64/QpTzfgpNGPct+pXgQHjmutd363ZCur/91DLaBxOw==", + "type": "package", + "path": "portable.bouncycastle/1.8.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40/BouncyCastle.Crypto.dll", + "lib/net40/BouncyCastle.Crypto.xml", + "lib/netstandard2.0/BouncyCastle.Crypto.dll", + "lib/netstandard2.0/BouncyCastle.Crypto.xml", + "portable.bouncycastle.1.8.6.nupkg.sha512", + "portable.bouncycastle.nuspec" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "SharpZipLib/1.2.0": { + "sha512": "zvWa/L02JHNatdtjya6Swpudb2YEHaOLHL1eRrqpjm71iGRNUNONO5adUF/9CHbSJbzhELW1UoH4NGy7n7+3bQ==", + "type": "package", + "path": "sharpziplib/1.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/ICSharpCode.SharpZipLib.dll", + "lib/net45/ICSharpCode.SharpZipLib.pdb", + "lib/net45/ICSharpCode.SharpZipLib.xml", + "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll", + "lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb", + "lib/netstandard2.0/ICSharpCode.SharpZipLib.xml", + "sharpziplib.1.2.0.nupkg.sha512", + "sharpziplib.nuspec" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.5.0": { + "sha512": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==", + "type": "package", + "path": "system.buffers/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "lib/uap10.0.16299/_._", + "ref/net45/System.Buffers.dll", + "ref/net45/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "ref/uap10.0.16299/_._", + "system.buffers.4.5.0.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Collections.NonGeneric/4.3.0": { + "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "type": "package", + "path": "system.collections.nongeneric/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.3.0.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.3.0": { + "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "type": "package", + "path": "system.collections.specialized/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/netstandard1.3/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.xml", + "ref/netstandard1.3/de/System.Collections.Specialized.xml", + "ref/netstandard1.3/es/System.Collections.Specialized.xml", + "ref/netstandard1.3/fr/System.Collections.Specialized.xml", + "ref/netstandard1.3/it/System.Collections.Specialized.xml", + "ref/netstandard1.3/ja/System.Collections.Specialized.xml", + "ref/netstandard1.3/ko/System.Collections.Specialized.xml", + "ref/netstandard1.3/ru/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.specialized.4.3.0.nupkg.sha512", + "system.collections.specialized.nuspec" + ] + }, + "System.ComponentModel/4.3.0": { + "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "type": "package", + "path": "system.componentmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.3.0.nupkg.sha512", + "system.componentmodel.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.5.0": { + "sha512": "UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==", + "type": "package", + "path": "system.componentmodel.annotations/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/netstandard2.0/System.ComponentModel.Annotations.dll", + "lib/portable-net45+win8/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/net461/System.ComponentModel.Annotations.xml", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard2.0/System.ComponentModel.Annotations.dll", + "ref/netstandard2.0/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.4.5.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ComponentModel.Primitives/4.3.0": { + "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "type": "package", + "path": "system.componentmodel.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.Primitives.dll", + "lib/netstandard1.0/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.primitives.4.3.0.nupkg.sha512", + "system.componentmodel.primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "type": "package", + "path": "system.componentmodel.typeconverter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/net462/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/net462/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "system.componentmodel.typeconverter.nuspec" + ] + }, + "System.Configuration.ConfigurationManager/4.5.0": { + "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==", + "type": "package", + "path": "system.configuration.configurationmanager/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.xml", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.4.5.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Console/4.3.0": { + "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "type": "package", + "path": "system.console/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.3.0.nupkg.sha512", + "system.console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/4.7.1": { + "sha512": "j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.7.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/System.Diagnostics.DiagnosticSource.dll", + "lib/net45/System.Diagnostics.DiagnosticSource.xml", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.3.0": { + "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "type": "package", + "path": "system.diagnostics.tracesource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.TraceSource.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "system.diagnostics.tracesource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Drawing.Common/4.5.0": { + "sha512": "AiJFxxVPdeITstiRS5aAu8+8Dpf5NawTMoapZ53Gfirml24p7HIfhjmCRxdXnmmf3IUA3AX3CcW7G73CjWxW/Q==", + "type": "package", + "path": "system.drawing.common/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "system.drawing.common.4.5.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Dynamic.Runtime/4.3.0": { + "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "type": "package", + "path": "system.dynamic.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.3.0.nupkg.sha512", + "system.dynamic.runtime.nuspec" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Memory/4.5.1": { + "sha512": "sDJYJpGtTgx+23Ayu5euxG5mAXWdkDb4+b0rD0Cab0M1oQS9H0HXGPriKcqpXuiJDTV7fTp/d+fMDJmnr6sNvA==", + "type": "package", + "path": "system.memory/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "ref/netstandard1.1/System.Memory.dll", + "ref/netstandard1.1/System.Memory.xml", + "ref/netstandard2.0/System.Memory.dll", + "ref/netstandard2.0/System.Memory.xml", + "system.memory.4.5.1.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.CompilerServices.Unsafe/4.5.1": { + "sha512": "Zh8t8oqolRaFa9vmOZfdQm/qKejdqz0J9kr7o2Fu0vPeoH3BL1EOXipKWwkWtLT1JPzjByrF19fGuFlNbmPpiw==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.4.5.1.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Security.AccessControl/4.5.0": { + "sha512": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==", + "type": "package", + "path": "system.security.accesscontrol/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.5.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.3.0": { + "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "type": "package", + "path": "system.security.cryptography.cng/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "system.security.cryptography.cng.4.3.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.ProtectedData/4.5.0": { + "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==", + "type": "package", + "path": "system.security.cryptography.protecteddata/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Permissions/4.5.0": { + "sha512": "9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", + "type": "package", + "path": "system.security.permissions/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.4.5.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.5.0": { + "sha512": "U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==", + "type": "package", + "path": "system.security.principal.windows/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.5.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Encodings.Web/5.0.0": { + "sha512": "EEslUvHKll1ftizbn20mX3Ix/l4Ygk/bdJ2LY6/X6FlGaP0RIhKMo9nS6JIGnKKT6KBP2PGj6JC3B9/ZF6ErqQ==", + "type": "package", + "path": "system.text.encodings.web/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.0/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.0/System.Text.Encodings.Web.xml", + "lib/netstandard1.0/System.Text.Encodings.Web.dll", + "lib/netstandard1.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.1/System.Text.Encodings.Web.dll", + "lib/netstandard2.1/System.Text.Encodings.Web.xml", + "system.text.encodings.web.5.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Json/5.0.0": { + "sha512": "+luxMQNZ2WqeffBU7Ml6njIvxc8169NW2oU+ygNudXQGZiarjE7DOtN7bILiQjTZjkmwwRZGTtLzmdrSI/Ustw==", + "type": "package", + "path": "system.text.json/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/netcoreapp3.0/System.Text.Json.dll", + "lib/netcoreapp3.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.5.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.5.1": { + "sha512": "WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "ref/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "ref/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "ref/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.1.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.3.0": { + "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "type": "package", + "path": "system.xml.xmldocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.3.0.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [ + "Autofac >= 6.2.0", + "Autofac.Extensions.DependencyInjection >= 7.1.0", + "Autofac.Extras.DynamicProxy >= 6.0.0", + "Microsoft.AspNetCore.Mvc.Core >= 2.2.5", + "Microsoft.Extensions.DependencyModel >= 5.0.0", + "NPOI >= 2.5.3", + "Newtonsoft.Json >= 13.0.1" + ] + }, + "packageFolders": { + "C:\\Users\\NineFishes\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj", + "projectName": "Infrastructure", + "projectPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj", + "packagesPath": "C:\\Users\\NineFishes\\.nuget\\packages\\", + "outputPath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\NineFishes\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://www.nuget.org/api/v2/": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "dependencies": { + "Autofac": { + "target": "Package", + "version": "[6.2.0, )" + }, + "Autofac.Extensions.DependencyInjection": { + "target": "Package", + "version": "[7.1.0, )" + }, + "Autofac.Extras.DynamicProxy": { + "target": "Package", + "version": "[6.0.0, )" + }, + "Microsoft.AspNetCore.Mvc.Core": { + "target": "Package", + "version": "[2.2.5, )" + }, + "Microsoft.Extensions.DependencyModel": { + "target": "Package", + "version": "[5.0.0, )" + }, + "NPOI": { + "target": "Package", + "version": "[2.5.3, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Infrastructure/obj/project.nuget.cache b/Infrastructure/obj/project.nuget.cache new file mode 100644 index 0000000..9912acc --- /dev/null +++ b/Infrastructure/obj/project.nuget.cache @@ -0,0 +1,137 @@ +{ + "version": 2, + "dgSpecHash": "a+cKAbDiLAF6ITmyg4xi2MfWVkyjw2eFEBerWFpwnQzh430Y8mRIqzrKMHZo+VTvQIW6/52VJ3cPaU6t25/IjA==", + "success": true, + "projectFilePath": "C:\\Users\\NineFishes\\Desktop\\FireStaionDocuments-master\\Infrastructure\\Infrastructure.csproj", + "expectedPackageFiles": [ + "C:\\Users\\NineFishes\\.nuget\\packages\\autofac\\6.2.0\\autofac.6.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\autofac.extensions.dependencyinjection\\7.1.0\\autofac.extensions.dependencyinjection.7.1.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\autofac.extras.dynamicproxy\\6.0.0\\autofac.extras.dynamicproxy.6.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\castle.core\\4.4.0\\castle.core.4.4.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authentication.abstractions\\2.2.0\\microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authentication.core\\2.2.0\\microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authorization\\2.2.0\\microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.authorization.policy\\2.2.0\\microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.hosting.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.hosting.server.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http\\2.2.0\\microsoft.aspnetcore.http.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http.abstractions\\2.2.0\\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http.extensions\\2.2.0\\microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.mvc.abstractions\\2.2.0\\microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.mvc.core\\2.2.5\\microsoft.aspnetcore.mvc.core.2.2.5.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.responsecaching.abstractions\\2.2.0\\microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.routing\\2.2.0\\microsoft.aspnetcore.routing.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.routing.abstractions\\2.2.0\\microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.aspnetcore.webutilities\\2.2.0\\microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\2.2.0\\microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\2.2.0\\microsoft.extensions.dependencyinjection.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\2.2.0\\microsoft.extensions.dependencyinjection.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.dependencymodel\\5.0.0\\microsoft.extensions.dependencymodel.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\2.2.0\\microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\2.2.0\\microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\2.2.0\\microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.objectpool\\2.2.0\\microsoft.extensions.objectpool.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.options\\2.2.0\\microsoft.extensions.options.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.extensions.primitives\\2.2.0\\microsoft.extensions.primitives.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.net.http.headers\\2.2.0\\microsoft.net.http.headers.2.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.netcore.platforms\\2.0.0\\microsoft.netcore.platforms.2.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\microsoft.win32.systemevents\\4.5.0\\microsoft.win32.systemevents.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\npoi\\2.5.3\\npoi.2.5.3.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\portable.bouncycastle\\1.8.6\\portable.bouncycastle.1.8.6.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\sharpziplib\\1.2.0\\sharpziplib.1.2.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.buffers\\4.5.0\\system.buffers.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel.annotations\\4.5.0\\system.componentmodel.annotations.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.configuration.configurationmanager\\4.5.0\\system.configuration.configurationmanager.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.7.1\\system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.tracesource\\4.3.0\\system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.drawing.common\\4.5.0\\system.drawing.common.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.memory\\4.5.1\\system.memory.4.5.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.5.1\\system.runtime.compilerservices.unsafe.4.5.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.accesscontrol\\4.5.0\\system.security.accesscontrol.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.5.0\\system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.permissions\\4.5.0\\system.security.permissions.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.security.principal.windows\\4.5.0\\system.security.principal.windows.4.5.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.encodings.web\\5.0.0\\system.text.encodings.web.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.json\\5.0.0\\system.text.json.5.0.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.1\\system.threading.tasks.extensions.4.5.1.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", + "C:\\Users\\NineFishes\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file